-- MySQL dump 10.13 Distrib 5.1.48, for Win32 (ia32) -- -- Host: localhost Database: -- ------------------------------------------------------ -- Server version 5.1.48-community /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; /*!40101 SET NAMES utf8 */; /*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */; /*!40103 SET TIME_ZONE='+00:00' */; /*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */; /*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */; /*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */; /*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */; -- -- Current Database: `4images_4mam` -- CREATE DATABASE /*!32312 IF NOT EXISTS*/ `4images_4mam` /*!40100 DEFAULT CHARACTER SET latin1 */; USE `4images_4mam`; -- -- Table structure for table `4mam_categories` -- DROP TABLE IF EXISTS `4mam_categories`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `4mam_categories` ( `cat_id` int(10) unsigned NOT NULL AUTO_INCREMENT, `cat_name` varchar(255) NOT NULL DEFAULT '', `cat_description` text NOT NULL, `cat_parent_id` int(10) unsigned NOT NULL DEFAULT '0', `cat_hits` int(10) unsigned NOT NULL DEFAULT '0', `cat_order` int(10) unsigned NOT NULL DEFAULT '0', `auth_viewcat` tinyint(2) NOT NULL DEFAULT '0', `auth_viewimage` tinyint(2) NOT NULL DEFAULT '0', `auth_download` tinyint(2) NOT NULL DEFAULT '0', `auth_upload` tinyint(2) NOT NULL DEFAULT '0', `auth_directupload` tinyint(2) NOT NULL DEFAULT '0', `auth_vote` tinyint(2) NOT NULL DEFAULT '0', `auth_sendpostcard` tinyint(2) NOT NULL DEFAULT '0', `auth_readcomment` tinyint(2) NOT NULL DEFAULT '0', `auth_postcomment` tinyint(2) NOT NULL DEFAULT '0', PRIMARY KEY (`cat_id`), KEY `cat_parent_id` (`cat_parent_id`), KEY `cat_order` (`cat_order`) ) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `4mam_categories` -- LOCK TABLES `4mam_categories` WRITE; /*!40000 ALTER TABLE `4mam_categories` DISABLE KEYS */; INSERT INTO `4mam_categories` VALUES (1,'Feiern','',0,3,10,0,0,2,2,9,0,0,0,2),(2,'Klassentreffen 2006-04-08','',1,9,10,0,0,2,2,9,0,0,0,2); /*!40000 ALTER TABLE `4mam_categories` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `4mam_comments` -- DROP TABLE IF EXISTS `4mam_comments`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `4mam_comments` ( `comment_id` int(10) unsigned NOT NULL AUTO_INCREMENT, `image_id` int(10) unsigned NOT NULL DEFAULT '0', `user_id` int(11) NOT NULL DEFAULT '0', `user_name` varchar(100) NOT NULL DEFAULT '', `comment_headline` varchar(255) NOT NULL DEFAULT '', `comment_text` text NOT NULL, `comment_ip` varchar(20) NOT NULL DEFAULT '', `comment_date` int(11) unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`comment_id`), KEY `image_id` (`image_id`), KEY `user_id` (`user_id`), KEY `comment_date` (`comment_date`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `4mam_comments` -- LOCK TABLES `4mam_comments` WRITE; /*!40000 ALTER TABLE `4mam_comments` DISABLE KEYS */; /*!40000 ALTER TABLE `4mam_comments` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `4mam_groupaccess` -- DROP TABLE IF EXISTS `4mam_groupaccess`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `4mam_groupaccess` ( `group_id` int(10) unsigned NOT NULL DEFAULT '0', `cat_id` int(10) unsigned NOT NULL DEFAULT '0', `auth_viewcat` tinyint(1) NOT NULL DEFAULT '0', `auth_viewimage` tinyint(1) NOT NULL DEFAULT '0', `auth_download` tinyint(1) NOT NULL DEFAULT '0', `auth_upload` tinyint(1) NOT NULL DEFAULT '0', `auth_directupload` tinyint(1) NOT NULL DEFAULT '0', `auth_vote` tinyint(1) NOT NULL DEFAULT '0', `auth_sendpostcard` tinyint(1) NOT NULL DEFAULT '0', `auth_readcomment` tinyint(1) NOT NULL DEFAULT '0', `auth_postcomment` tinyint(1) NOT NULL DEFAULT '0', KEY `group_id` (`group_id`), KEY `cat_id` (`cat_id`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `4mam_groupaccess` -- LOCK TABLES `4mam_groupaccess` WRITE; /*!40000 ALTER TABLE `4mam_groupaccess` DISABLE KEYS */; /*!40000 ALTER TABLE `4mam_groupaccess` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `4mam_groupmatch` -- DROP TABLE IF EXISTS `4mam_groupmatch`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `4mam_groupmatch` ( `group_id` int(10) unsigned NOT NULL DEFAULT '0', `user_id` int(11) NOT NULL DEFAULT '0', `groupmatch_startdate` int(11) unsigned NOT NULL DEFAULT '0', `groupmatch_enddate` int(11) unsigned NOT NULL DEFAULT '0', KEY `group_id` (`group_id`), KEY `user_id` (`user_id`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `4mam_groupmatch` -- LOCK TABLES `4mam_groupmatch` WRITE; /*!40000 ALTER TABLE `4mam_groupmatch` DISABLE KEYS */; /*!40000 ALTER TABLE `4mam_groupmatch` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `4mam_groups` -- DROP TABLE IF EXISTS `4mam_groups`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `4mam_groups` ( `group_id` int(10) unsigned NOT NULL AUTO_INCREMENT, `group_name` varchar(100) NOT NULL DEFAULT '', `group_type` tinyint(2) NOT NULL DEFAULT '1', PRIMARY KEY (`group_id`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `4mam_groups` -- LOCK TABLES `4mam_groups` WRITE; /*!40000 ALTER TABLE `4mam_groups` DISABLE KEYS */; /*!40000 ALTER TABLE `4mam_groups` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `4mam_images` -- DROP TABLE IF EXISTS `4mam_images`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `4mam_images` ( `image_id` int(10) unsigned NOT NULL AUTO_INCREMENT, `cat_id` int(10) unsigned NOT NULL DEFAULT '0', `user_id` int(11) NOT NULL DEFAULT '0', `image_name` varchar(255) NOT NULL DEFAULT '', `image_description` text NOT NULL, `image_keywords` text NOT NULL, `image_date` int(11) unsigned NOT NULL DEFAULT '0', `image_active` tinyint(1) NOT NULL DEFAULT '1', `image_media_file` varchar(255) NOT NULL DEFAULT '', `image_thumb_file` varchar(255) NOT NULL DEFAULT '', `image_download_url` varchar(255) NOT NULL DEFAULT '', `image_allow_comments` tinyint(1) NOT NULL DEFAULT '1', `image_comments` int(10) unsigned NOT NULL DEFAULT '0', `image_downloads` int(10) unsigned NOT NULL DEFAULT '0', `image_votes` int(10) unsigned NOT NULL DEFAULT '0', `image_rating` decimal(4,2) NOT NULL DEFAULT '0.00', `image_hits` int(10) unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`image_id`), KEY `cat_id` (`cat_id`), KEY `user_id` (`user_id`), KEY `image_date` (`image_date`), KEY `image_active` (`image_active`) ) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `4mam_images` -- LOCK TABLES `4mam_images` WRITE; /*!40000 ALTER TABLE `4mam_images` DISABLE KEYS */; /*!40000 ALTER TABLE `4mam_images` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `4mam_images_temp` -- DROP TABLE IF EXISTS `4mam_images_temp`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `4mam_images_temp` ( `image_id` int(10) unsigned NOT NULL AUTO_INCREMENT, `cat_id` int(10) unsigned NOT NULL DEFAULT '0', `user_id` int(11) NOT NULL DEFAULT '0', `image_name` varchar(255) NOT NULL DEFAULT '', `image_description` text NOT NULL, `image_keywords` text NOT NULL, `image_date` int(11) unsigned NOT NULL DEFAULT '0', `image_media_file` varchar(255) NOT NULL DEFAULT '', `image_thumb_file` varchar(255) NOT NULL DEFAULT '', `image_download_url` varchar(255) NOT NULL DEFAULT '', PRIMARY KEY (`image_id`), KEY `cat_id` (`cat_id`), KEY `user_id` (`user_id`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `4mam_images_temp` -- LOCK TABLES `4mam_images_temp` WRITE; /*!40000 ALTER TABLE `4mam_images_temp` DISABLE KEYS */; /*!40000 ALTER TABLE `4mam_images_temp` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `4mam_lightboxes` -- DROP TABLE IF EXISTS `4mam_lightboxes`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `4mam_lightboxes` ( `lightbox_id` varchar(32) NOT NULL DEFAULT '', `user_id` int(11) NOT NULL DEFAULT '0', `lightbox_lastaction` int(11) unsigned NOT NULL DEFAULT '0', `lightbox_image_ids` text, KEY `lightbox_id` (`lightbox_id`), KEY `user_id` (`user_id`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `4mam_lightboxes` -- LOCK TABLES `4mam_lightboxes` WRITE; /*!40000 ALTER TABLE `4mam_lightboxes` DISABLE KEYS */; INSERT INTO `4mam_lightboxes` VALUES ('42068f200be33a8086ad23def2cac6f1',1,1149531781,''); /*!40000 ALTER TABLE `4mam_lightboxes` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `4mam_postcards` -- DROP TABLE IF EXISTS `4mam_postcards`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `4mam_postcards` ( `postcard_id` varchar(32) NOT NULL DEFAULT '', `image_id` int(10) unsigned NOT NULL DEFAULT '0', `postcard_date` int(11) unsigned NOT NULL DEFAULT '0', `postcard_bg_color` varchar(100) NOT NULL DEFAULT '', `postcard_border_color` varchar(100) NOT NULL DEFAULT '', `postcard_font_color` varchar(100) NOT NULL DEFAULT '', `postcard_font_face` varchar(100) NOT NULL DEFAULT '', `postcard_sender_name` varchar(255) NOT NULL DEFAULT '', `postcard_sender_email` varchar(255) NOT NULL DEFAULT '', `postcard_recipient_name` varchar(255) NOT NULL DEFAULT '', `postcard_recipient_email` varchar(255) NOT NULL DEFAULT '', `postcard_headline` varchar(255) NOT NULL DEFAULT '', `postcard_message` text NOT NULL, PRIMARY KEY (`postcard_id`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `4mam_postcards` -- LOCK TABLES `4mam_postcards` WRITE; /*!40000 ALTER TABLE `4mam_postcards` DISABLE KEYS */; /*!40000 ALTER TABLE `4mam_postcards` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `4mam_sessions` -- DROP TABLE IF EXISTS `4mam_sessions`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `4mam_sessions` ( `session_id` varchar(32) NOT NULL DEFAULT '', `session_user_id` int(11) NOT NULL DEFAULT '0', `session_lastaction` int(11) unsigned NOT NULL DEFAULT '0', `session_location` varchar(255) NOT NULL DEFAULT '', `session_ip` varchar(15) NOT NULL DEFAULT '', PRIMARY KEY (`session_id`), KEY `session_user_id` (`session_user_id`), KEY `session_id_ip_user_id` (`session_id`,`session_ip`,`session_user_id`) ) ENGINE=MEMORY DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `4mam_sessions` -- LOCK TABLES `4mam_sessions` WRITE; /*!40000 ALTER TABLE `4mam_sessions` DISABLE KEYS */; /*!40000 ALTER TABLE `4mam_sessions` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `4mam_sessionvars` -- DROP TABLE IF EXISTS `4mam_sessionvars`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `4mam_sessionvars` ( `session_id` varchar(32) NOT NULL DEFAULT '', `sessionvars_name` varchar(30) NOT NULL DEFAULT '', `sessionvars_value` text, KEY `session_id` (`session_id`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `4mam_sessionvars` -- LOCK TABLES `4mam_sessionvars` WRITE; /*!40000 ALTER TABLE `4mam_sessionvars` DISABLE KEYS */; /*!40000 ALTER TABLE `4mam_sessionvars` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `4mam_settings` -- DROP TABLE IF EXISTS `4mam_settings`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `4mam_settings` ( `setting_name` varchar(255) NOT NULL DEFAULT '', `setting_value` mediumtext NOT NULL, PRIMARY KEY (`setting_name`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `4mam_settings` -- LOCK TABLES `4mam_settings` WRITE; /*!40000 ALTER TABLE `4mam_settings` DISABLE KEYS */; INSERT INTO `4mam_settings` VALUES ('site_name','4images - Image Gallery Management System'),('site_email','admin@yourdomain.com'),('use_smtp','0'),('smtp_host',''),('smtp_username',''),('smtp_password',''),('template_dir','default'),('language_dir','deutsch'),('date_format','d.m.Y'),('time_format','H:i'),('convert_tool','none'),('convert_tool_path',''),('gz_compress','0'),('gz_compress_level','9'),('cat_cells','2'),('cat_table_width','100%'),('cat_table_cellspacing','1'),('cat_table_cellpadding','3'),('num_subcats','3'),('image_order','image_name'),('image_sort','ASC'),('new_cutoff','10'),('image_border','1'),('image_cells','3'),('default_image_rows','3'),('custom_row_steps','10'),('image_table_width','100%'),('image_table_cellspacing','1'),('image_table_cellpadding','3'),('upload_mode','2'),('allowed_mediatypes','jpg,gif,png,aif,au,avi,mid,mov,mp3,mpg,swf,wav,ra,rm,zip,pdf'),('max_thumb_width','300'),('max_thumb_height','300'),('max_thumb_size','100'),('max_image_width','1024'),('max_image_height','1024'),('max_media_size','2000'),('upload_notify','0'),('upload_emails',''),('auto_thumbnail','0'),('auto_thumbnail_dimension','100'),('auto_thumbnail_resize_type','1'),('auto_thumbnail_quality','75'),('badword_list','fuck {fuck}'),('badword_replace_char','*'),('wordwrap_comments','50'),('html_comments','0'),('bb_comments','1'),('bb_img_comments','0'),('category_separator',' / '),('paging_range','5'),('user_edit_image','1'),('user_delete_image','1'),('user_edit_comments','1'),('user_delete_comments','1'),('account_activation','1'),('activation_time','14'),('session_timeout','15'),('display_whosonline','1'),('highlight_admin','1'); /*!40000 ALTER TABLE `4mam_settings` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `4mam_users` -- DROP TABLE IF EXISTS `4mam_users`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `4mam_users` ( `user_id` int(11) NOT NULL AUTO_INCREMENT, `user_level` int(11) NOT NULL DEFAULT '1', `user_name` varchar(255) NOT NULL DEFAULT '', `user_password` varchar(255) NOT NULL DEFAULT '', `user_email` varchar(255) NOT NULL DEFAULT '', `user_showemail` tinyint(1) NOT NULL DEFAULT '0', `user_allowemails` tinyint(1) NOT NULL DEFAULT '1', `user_invisible` tinyint(1) NOT NULL DEFAULT '0', `user_joindate` int(11) unsigned NOT NULL DEFAULT '0', `user_activationkey` varchar(32) NOT NULL DEFAULT '', `user_lastaction` int(11) unsigned NOT NULL DEFAULT '0', `user_location` varchar(255) NOT NULL DEFAULT '', `user_lastvisit` int(11) unsigned NOT NULL DEFAULT '0', `user_comments` int(10) unsigned NOT NULL DEFAULT '0', `user_homepage` varchar(255) NOT NULL DEFAULT '', `user_icq` varchar(20) NOT NULL DEFAULT '', PRIMARY KEY (`user_id`), KEY `user_lastaction` (`user_lastaction`), KEY `user_name` (`user_name`) ) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `4mam_users` -- LOCK TABLES `4mam_users` WRITE; /*!40000 ALTER TABLE `4mam_users` DISABLE KEYS */; INSERT INTO `4mam_users` VALUES (-1,-1,'Guest','0493984f537120be0b8d96bc9b69cdd2','',0,0,0,0,'',0,'',0,0,'',''),(1,9,'admin','5a9361b28ee51795f1e82d9054919034','admin@yourdomain.com',1,1,0,1016023608,'1e3457c0b2052a9633b886fd75ef91e0',1378994851,'login.php',1310589558,0,'',''); /*!40000 ALTER TABLE `4mam_users` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `4mam_wordlist` -- DROP TABLE IF EXISTS `4mam_wordlist`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `4mam_wordlist` ( `word_text` varchar(50) NOT NULL DEFAULT '', `word_id` int(10) unsigned NOT NULL AUTO_INCREMENT, PRIMARY KEY (`word_id`), UNIQUE KEY `word_text` (`word_text`) ) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `4mam_wordlist` -- LOCK TABLES `4mam_wordlist` WRITE; /*!40000 ALTER TABLE `4mam_wordlist` DISABLE KEYS */; /*!40000 ALTER TABLE `4mam_wordlist` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `4mam_wordmatch` -- DROP TABLE IF EXISTS `4mam_wordmatch`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `4mam_wordmatch` ( `image_id` int(10) unsigned NOT NULL DEFAULT '0', `word_id` int(10) unsigned NOT NULL DEFAULT '0', `name_match` tinyint(1) NOT NULL DEFAULT '0', `desc_match` tinyint(1) NOT NULL DEFAULT '0', `keys_match` tinyint(1) NOT NULL DEFAULT '0', UNIQUE KEY `image_word_id` (`image_id`,`word_id`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `4mam_wordmatch` -- LOCK TABLES `4mam_wordmatch` WRITE; /*!40000 ALTER TABLE `4mam_wordmatch` DISABLE KEYS */; /*!40000 ALTER TABLE `4mam_wordmatch` ENABLE KEYS */; UNLOCK TABLES; -- -- Current Database: `atmail` -- CREATE DATABASE /*!32312 IF NOT EXISTS*/ `atmail` /*!40100 DEFAULT CHARACTER SET latin1 */; USE `atmail`; -- -- Table structure for table `abook_a` -- DROP TABLE IF EXISTS `abook_a`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `abook_a` ( `UserEmail` varchar(255) DEFAULT NULL, `UserEmail2` varchar(255) DEFAULT NULL, `UserEmail3` varchar(255) DEFAULT NULL, `UserEmail4` varchar(255) DEFAULT NULL, `UserEmail5` varchar(255) DEFAULT NULL, `UserFirstName` varchar(128) DEFAULT NULL, `UserMiddleName` varchar(128) DEFAULT NULL, `UserLastName` varchar(128) DEFAULT NULL, `UserTitle` varchar(128) DEFAULT NULL, `UserGender` char(1) DEFAULT NULL, `UserDOB` datetime DEFAULT NULL, `UserHomeAddress` varchar(128) DEFAULT NULL, `UserHomeCity` varchar(128) DEFAULT NULL, `UserHomeState` varchar(128) DEFAULT NULL, `UserHomeZip` varchar(128) DEFAULT NULL, `UserHomeCountry` varchar(128) DEFAULT NULL, `UserHomePhone` varchar(128) DEFAULT NULL, `UserHomeMobile` varchar(128) DEFAULT NULL, `UserHomeFax` varchar(128) DEFAULT NULL, `UserURL` varchar(128) DEFAULT NULL, `UserWorkCompany` varchar(128) DEFAULT NULL, `UserWorkTitle` varchar(128) DEFAULT NULL, `UserWorkDept` varchar(128) DEFAULT NULL, `UserWorkOffice` varchar(128) DEFAULT NULL, `UserWorkAddress` varchar(128) DEFAULT NULL, `UserWorkCity` varchar(128) DEFAULT NULL, `UserWorkState` varchar(128) DEFAULT NULL, `UserWorkZip` varchar(128) DEFAULT NULL, `UserWorkCountry` varchar(128) DEFAULT NULL, `UserWorkPhone` varchar(128) DEFAULT NULL, `UserWorkMobile` varchar(128) DEFAULT NULL, `UserWorkFax` varchar(128) DEFAULT NULL, `UserType` varchar(16) DEFAULT NULL, `UserInfo` text, `UserPgpKey` text, `Account` varchar(128) NOT NULL DEFAULT '', `id` bigint(10) unsigned NOT NULL AUTO_INCREMENT, `DateAdded` datetime DEFAULT NULL, `DateModified` varchar(12) DEFAULT NULL, `EntryID` varchar(64) DEFAULT NULL, PRIMARY KEY (`id`), KEY `iAccount` (`Account`), KEY `UserEmail` (`UserEmail`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `abook_a` -- LOCK TABLES `abook_a` WRITE; /*!40000 ALTER TABLE `abook_a` DISABLE KEYS */; /*!40000 ALTER TABLE `abook_a` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `abook_b` -- DROP TABLE IF EXISTS `abook_b`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `abook_b` ( `UserEmail` varchar(255) DEFAULT NULL, `UserEmail2` varchar(255) DEFAULT NULL, `UserEmail3` varchar(255) DEFAULT NULL, `UserEmail4` varchar(255) DEFAULT NULL, `UserEmail5` varchar(255) DEFAULT NULL, `UserFirstName` varchar(128) DEFAULT NULL, `UserMiddleName` varchar(128) DEFAULT NULL, `UserLastName` varchar(128) DEFAULT NULL, `UserTitle` varchar(128) DEFAULT NULL, `UserGender` char(1) DEFAULT NULL, `UserDOB` datetime DEFAULT NULL, `UserHomeAddress` varchar(128) DEFAULT NULL, `UserHomeCity` varchar(128) DEFAULT NULL, `UserHomeState` varchar(128) DEFAULT NULL, `UserHomeZip` varchar(128) DEFAULT NULL, `UserHomeCountry` varchar(128) DEFAULT NULL, `UserHomePhone` varchar(128) DEFAULT NULL, `UserHomeMobile` varchar(128) DEFAULT NULL, `UserHomeFax` varchar(128) DEFAULT NULL, `UserURL` varchar(128) DEFAULT NULL, `UserWorkCompany` varchar(128) DEFAULT NULL, `UserWorkTitle` varchar(128) DEFAULT NULL, `UserWorkDept` varchar(128) DEFAULT NULL, `UserWorkOffice` varchar(128) DEFAULT NULL, `UserWorkAddress` varchar(128) DEFAULT NULL, `UserWorkCity` varchar(128) DEFAULT NULL, `UserWorkState` varchar(128) DEFAULT NULL, `UserWorkZip` varchar(128) DEFAULT NULL, `UserWorkCountry` varchar(128) DEFAULT NULL, `UserWorkPhone` varchar(128) DEFAULT NULL, `UserWorkMobile` varchar(128) DEFAULT NULL, `UserWorkFax` varchar(128) DEFAULT NULL, `UserType` varchar(16) DEFAULT NULL, `UserInfo` text, `UserPgpKey` text, `Account` varchar(128) NOT NULL DEFAULT '', `id` bigint(10) unsigned NOT NULL AUTO_INCREMENT, `DateAdded` datetime DEFAULT NULL, `DateModified` varchar(12) DEFAULT NULL, `EntryID` varchar(64) DEFAULT NULL, PRIMARY KEY (`id`), KEY `iAccount` (`Account`), KEY `UserEmail` (`UserEmail`), KEY `UserEmail_2` (`UserEmail`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `abook_b` -- LOCK TABLES `abook_b` WRITE; /*!40000 ALTER TABLE `abook_b` DISABLE KEYS */; /*!40000 ALTER TABLE `abook_b` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `abook_c` -- DROP TABLE IF EXISTS `abook_c`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `abook_c` ( `UserEmail` varchar(255) DEFAULT NULL, `UserEmail2` varchar(255) DEFAULT NULL, `UserEmail3` varchar(255) DEFAULT NULL, `UserEmail4` varchar(255) DEFAULT NULL, `UserEmail5` varchar(255) DEFAULT NULL, `UserFirstName` varchar(128) DEFAULT NULL, `UserMiddleName` varchar(128) DEFAULT NULL, `UserLastName` varchar(128) DEFAULT NULL, `UserTitle` varchar(128) DEFAULT NULL, `UserGender` char(1) DEFAULT NULL, `UserDOB` datetime DEFAULT NULL, `UserHomeAddress` varchar(128) DEFAULT NULL, `UserHomeCity` varchar(128) DEFAULT NULL, `UserHomeState` varchar(128) DEFAULT NULL, `UserHomeZip` varchar(128) DEFAULT NULL, `UserHomeCountry` varchar(128) DEFAULT NULL, `UserHomePhone` varchar(128) DEFAULT NULL, `UserHomeMobile` varchar(128) DEFAULT NULL, `UserHomeFax` varchar(128) DEFAULT NULL, `UserURL` varchar(128) DEFAULT NULL, `UserWorkCompany` varchar(128) DEFAULT NULL, `UserWorkTitle` varchar(128) DEFAULT NULL, `UserWorkDept` varchar(128) DEFAULT NULL, `UserWorkOffice` varchar(128) DEFAULT NULL, `UserWorkAddress` varchar(128) DEFAULT NULL, `UserWorkCity` varchar(128) DEFAULT NULL, `UserWorkState` varchar(128) DEFAULT NULL, `UserWorkZip` varchar(128) DEFAULT NULL, `UserWorkCountry` varchar(128) DEFAULT NULL, `UserWorkPhone` varchar(128) DEFAULT NULL, `UserWorkMobile` varchar(128) DEFAULT NULL, `UserWorkFax` varchar(128) DEFAULT NULL, `UserType` varchar(16) DEFAULT NULL, `UserInfo` text, `UserPgpKey` text, `Account` varchar(128) NOT NULL DEFAULT '', `id` bigint(10) unsigned NOT NULL AUTO_INCREMENT, `DateAdded` datetime DEFAULT NULL, `DateModified` varchar(12) DEFAULT NULL, `EntryID` varchar(64) DEFAULT NULL, PRIMARY KEY (`id`), KEY `iAccount` (`Account`), KEY `UserEmail` (`UserEmail`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `abook_c` -- LOCK TABLES `abook_c` WRITE; /*!40000 ALTER TABLE `abook_c` DISABLE KEYS */; /*!40000 ALTER TABLE `abook_c` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `abook_d` -- DROP TABLE IF EXISTS `abook_d`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `abook_d` ( `UserEmail` varchar(255) DEFAULT NULL, `UserEmail2` varchar(255) DEFAULT NULL, `UserEmail3` varchar(255) DEFAULT NULL, `UserEmail4` varchar(255) DEFAULT NULL, `UserEmail5` varchar(255) DEFAULT NULL, `UserFirstName` varchar(128) DEFAULT NULL, `UserMiddleName` varchar(128) DEFAULT NULL, `UserLastName` varchar(128) DEFAULT NULL, `UserTitle` varchar(128) DEFAULT NULL, `UserGender` char(1) DEFAULT NULL, `UserDOB` datetime DEFAULT NULL, `UserHomeAddress` varchar(128) DEFAULT NULL, `UserHomeCity` varchar(128) DEFAULT NULL, `UserHomeState` varchar(128) DEFAULT NULL, `UserHomeZip` varchar(128) DEFAULT NULL, `UserHomeCountry` varchar(128) DEFAULT NULL, `UserHomePhone` varchar(128) DEFAULT NULL, `UserHomeMobile` varchar(128) DEFAULT NULL, `UserHomeFax` varchar(128) DEFAULT NULL, `UserURL` varchar(128) DEFAULT NULL, `UserWorkCompany` varchar(128) DEFAULT NULL, `UserWorkTitle` varchar(128) DEFAULT NULL, `UserWorkDept` varchar(128) DEFAULT NULL, `UserWorkOffice` varchar(128) DEFAULT NULL, `UserWorkAddress` varchar(128) DEFAULT NULL, `UserWorkCity` varchar(128) DEFAULT NULL, `UserWorkState` varchar(128) DEFAULT NULL, `UserWorkZip` varchar(128) DEFAULT NULL, `UserWorkCountry` varchar(128) DEFAULT NULL, `UserWorkPhone` varchar(128) DEFAULT NULL, `UserWorkMobile` varchar(128) DEFAULT NULL, `UserWorkFax` varchar(128) DEFAULT NULL, `UserType` varchar(16) DEFAULT NULL, `UserInfo` text, `UserPgpKey` text, `Account` varchar(128) NOT NULL DEFAULT '', `id` bigint(10) unsigned NOT NULL AUTO_INCREMENT, `DateAdded` datetime DEFAULT NULL, `DateModified` varchar(12) DEFAULT NULL, `EntryID` varchar(64) DEFAULT NULL, PRIMARY KEY (`id`), KEY `iAccount` (`Account`), KEY `UserEmail` (`UserEmail`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `abook_d` -- LOCK TABLES `abook_d` WRITE; /*!40000 ALTER TABLE `abook_d` DISABLE KEYS */; /*!40000 ALTER TABLE `abook_d` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `abook_e` -- DROP TABLE IF EXISTS `abook_e`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `abook_e` ( `UserEmail` varchar(255) DEFAULT NULL, `UserEmail2` varchar(255) DEFAULT NULL, `UserEmail3` varchar(255) DEFAULT NULL, `UserEmail4` varchar(255) DEFAULT NULL, `UserEmail5` varchar(255) DEFAULT NULL, `UserFirstName` varchar(128) DEFAULT NULL, `UserMiddleName` varchar(128) DEFAULT NULL, `UserLastName` varchar(128) DEFAULT NULL, `UserTitle` varchar(128) DEFAULT NULL, `UserGender` char(1) DEFAULT NULL, `UserDOB` datetime DEFAULT NULL, `UserHomeAddress` varchar(128) DEFAULT NULL, `UserHomeCity` varchar(128) DEFAULT NULL, `UserHomeState` varchar(128) DEFAULT NULL, `UserHomeZip` varchar(128) DEFAULT NULL, `UserHomeCountry` varchar(128) DEFAULT NULL, `UserHomePhone` varchar(128) DEFAULT NULL, `UserHomeMobile` varchar(128) DEFAULT NULL, `UserHomeFax` varchar(128) DEFAULT NULL, `UserURL` varchar(128) DEFAULT NULL, `UserWorkCompany` varchar(128) DEFAULT NULL, `UserWorkTitle` varchar(128) DEFAULT NULL, `UserWorkDept` varchar(128) DEFAULT NULL, `UserWorkOffice` varchar(128) DEFAULT NULL, `UserWorkAddress` varchar(128) DEFAULT NULL, `UserWorkCity` varchar(128) DEFAULT NULL, `UserWorkState` varchar(128) DEFAULT NULL, `UserWorkZip` varchar(128) DEFAULT NULL, `UserWorkCountry` varchar(128) DEFAULT NULL, `UserWorkPhone` varchar(128) DEFAULT NULL, `UserWorkMobile` varchar(128) DEFAULT NULL, `UserWorkFax` varchar(128) DEFAULT NULL, `UserType` varchar(16) DEFAULT NULL, `UserInfo` text, `UserPgpKey` text, `Account` varchar(128) NOT NULL DEFAULT '', `id` bigint(10) unsigned NOT NULL AUTO_INCREMENT, `DateAdded` datetime DEFAULT NULL, `DateModified` varchar(12) DEFAULT NULL, `EntryID` varchar(64) DEFAULT NULL, PRIMARY KEY (`id`), KEY `iAccount` (`Account`), KEY `UserEmail` (`UserEmail`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `abook_e` -- LOCK TABLES `abook_e` WRITE; /*!40000 ALTER TABLE `abook_e` DISABLE KEYS */; /*!40000 ALTER TABLE `abook_e` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `abook_f` -- DROP TABLE IF EXISTS `abook_f`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `abook_f` ( `UserEmail` varchar(255) DEFAULT NULL, `UserEmail2` varchar(255) DEFAULT NULL, `UserEmail3` varchar(255) DEFAULT NULL, `UserEmail4` varchar(255) DEFAULT NULL, `UserEmail5` varchar(255) DEFAULT NULL, `UserFirstName` varchar(128) DEFAULT NULL, `UserMiddleName` varchar(128) DEFAULT NULL, `UserLastName` varchar(128) DEFAULT NULL, `UserTitle` varchar(128) DEFAULT NULL, `UserGender` char(1) DEFAULT NULL, `UserDOB` datetime DEFAULT NULL, `UserHomeAddress` varchar(128) DEFAULT NULL, `UserHomeCity` varchar(128) DEFAULT NULL, `UserHomeState` varchar(128) DEFAULT NULL, `UserHomeZip` varchar(128) DEFAULT NULL, `UserHomeCountry` varchar(128) DEFAULT NULL, `UserHomePhone` varchar(128) DEFAULT NULL, `UserHomeMobile` varchar(128) DEFAULT NULL, `UserHomeFax` varchar(128) DEFAULT NULL, `UserURL` varchar(128) DEFAULT NULL, `UserWorkCompany` varchar(128) DEFAULT NULL, `UserWorkTitle` varchar(128) DEFAULT NULL, `UserWorkDept` varchar(128) DEFAULT NULL, `UserWorkOffice` varchar(128) DEFAULT NULL, `UserWorkAddress` varchar(128) DEFAULT NULL, `UserWorkCity` varchar(128) DEFAULT NULL, `UserWorkState` varchar(128) DEFAULT NULL, `UserWorkZip` varchar(128) DEFAULT NULL, `UserWorkCountry` varchar(128) DEFAULT NULL, `UserWorkPhone` varchar(128) DEFAULT NULL, `UserWorkMobile` varchar(128) DEFAULT NULL, `UserWorkFax` varchar(128) DEFAULT NULL, `UserType` varchar(16) DEFAULT NULL, `UserInfo` text, `UserPgpKey` text, `Account` varchar(128) NOT NULL DEFAULT '', `id` bigint(10) unsigned NOT NULL AUTO_INCREMENT, `DateAdded` datetime DEFAULT NULL, `DateModified` varchar(12) DEFAULT NULL, `EntryID` varchar(64) DEFAULT NULL, PRIMARY KEY (`id`), KEY `iAccount` (`Account`), KEY `UserEmail` (`UserEmail`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `abook_f` -- LOCK TABLES `abook_f` WRITE; /*!40000 ALTER TABLE `abook_f` DISABLE KEYS */; /*!40000 ALTER TABLE `abook_f` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `abook_g` -- DROP TABLE IF EXISTS `abook_g`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `abook_g` ( `UserEmail` varchar(255) DEFAULT NULL, `UserEmail2` varchar(255) DEFAULT NULL, `UserEmail3` varchar(255) DEFAULT NULL, `UserEmail4` varchar(255) DEFAULT NULL, `UserEmail5` varchar(255) DEFAULT NULL, `UserFirstName` varchar(128) DEFAULT NULL, `UserMiddleName` varchar(128) DEFAULT NULL, `UserLastName` varchar(128) DEFAULT NULL, `UserTitle` varchar(128) DEFAULT NULL, `UserGender` char(1) DEFAULT NULL, `UserDOB` datetime DEFAULT NULL, `UserHomeAddress` varchar(128) DEFAULT NULL, `UserHomeCity` varchar(128) DEFAULT NULL, `UserHomeState` varchar(128) DEFAULT NULL, `UserHomeZip` varchar(128) DEFAULT NULL, `UserHomeCountry` varchar(128) DEFAULT NULL, `UserHomePhone` varchar(128) DEFAULT NULL, `UserHomeMobile` varchar(128) DEFAULT NULL, `UserHomeFax` varchar(128) DEFAULT NULL, `UserURL` varchar(128) DEFAULT NULL, `UserWorkCompany` varchar(128) DEFAULT NULL, `UserWorkTitle` varchar(128) DEFAULT NULL, `UserWorkDept` varchar(128) DEFAULT NULL, `UserWorkOffice` varchar(128) DEFAULT NULL, `UserWorkAddress` varchar(128) DEFAULT NULL, `UserWorkCity` varchar(128) DEFAULT NULL, `UserWorkState` varchar(128) DEFAULT NULL, `UserWorkZip` varchar(128) DEFAULT NULL, `UserWorkCountry` varchar(128) DEFAULT NULL, `UserWorkPhone` varchar(128) DEFAULT NULL, `UserWorkMobile` varchar(128) DEFAULT NULL, `UserWorkFax` varchar(128) DEFAULT NULL, `UserType` varchar(16) DEFAULT NULL, `UserInfo` text, `UserPgpKey` text, `Account` varchar(128) NOT NULL DEFAULT '', `id` bigint(10) unsigned NOT NULL AUTO_INCREMENT, `DateAdded` datetime DEFAULT NULL, `DateModified` varchar(12) DEFAULT NULL, `EntryID` varchar(64) DEFAULT NULL, PRIMARY KEY (`id`), KEY `iAccount` (`Account`), KEY `UserEmail` (`UserEmail`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `abook_g` -- LOCK TABLES `abook_g` WRITE; /*!40000 ALTER TABLE `abook_g` DISABLE KEYS */; /*!40000 ALTER TABLE `abook_g` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `abook_h` -- DROP TABLE IF EXISTS `abook_h`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `abook_h` ( `UserEmail` varchar(255) DEFAULT NULL, `UserEmail2` varchar(255) DEFAULT NULL, `UserEmail3` varchar(255) DEFAULT NULL, `UserEmail4` varchar(255) DEFAULT NULL, `UserEmail5` varchar(255) DEFAULT NULL, `UserFirstName` varchar(128) DEFAULT NULL, `UserMiddleName` varchar(128) DEFAULT NULL, `UserLastName` varchar(128) DEFAULT NULL, `UserTitle` varchar(128) DEFAULT NULL, `UserGender` char(1) DEFAULT NULL, `UserDOB` datetime DEFAULT NULL, `UserHomeAddress` varchar(128) DEFAULT NULL, `UserHomeCity` varchar(128) DEFAULT NULL, `UserHomeState` varchar(128) DEFAULT NULL, `UserHomeZip` varchar(128) DEFAULT NULL, `UserHomeCountry` varchar(128) DEFAULT NULL, `UserHomePhone` varchar(128) DEFAULT NULL, `UserHomeMobile` varchar(128) DEFAULT NULL, `UserHomeFax` varchar(128) DEFAULT NULL, `UserURL` varchar(128) DEFAULT NULL, `UserWorkCompany` varchar(128) DEFAULT NULL, `UserWorkTitle` varchar(128) DEFAULT NULL, `UserWorkDept` varchar(128) DEFAULT NULL, `UserWorkOffice` varchar(128) DEFAULT NULL, `UserWorkAddress` varchar(128) DEFAULT NULL, `UserWorkCity` varchar(128) DEFAULT NULL, `UserWorkState` varchar(128) DEFAULT NULL, `UserWorkZip` varchar(128) DEFAULT NULL, `UserWorkCountry` varchar(128) DEFAULT NULL, `UserWorkPhone` varchar(128) DEFAULT NULL, `UserWorkMobile` varchar(128) DEFAULT NULL, `UserWorkFax` varchar(128) DEFAULT NULL, `UserType` varchar(16) DEFAULT NULL, `UserInfo` text, `UserPgpKey` text, `Account` varchar(128) NOT NULL DEFAULT '', `id` bigint(10) unsigned NOT NULL AUTO_INCREMENT, `DateAdded` datetime DEFAULT NULL, `DateModified` varchar(12) DEFAULT NULL, `EntryID` varchar(64) DEFAULT NULL, PRIMARY KEY (`id`), KEY `iAccount` (`Account`), KEY `UserEmail` (`UserEmail`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `abook_h` -- LOCK TABLES `abook_h` WRITE; /*!40000 ALTER TABLE `abook_h` DISABLE KEYS */; /*!40000 ALTER TABLE `abook_h` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `abook_i` -- DROP TABLE IF EXISTS `abook_i`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `abook_i` ( `UserEmail` varchar(255) DEFAULT NULL, `UserEmail2` varchar(255) DEFAULT NULL, `UserEmail3` varchar(255) DEFAULT NULL, `UserEmail4` varchar(255) DEFAULT NULL, `UserEmail5` varchar(255) DEFAULT NULL, `UserFirstName` varchar(128) DEFAULT NULL, `UserMiddleName` varchar(128) DEFAULT NULL, `UserLastName` varchar(128) DEFAULT NULL, `UserTitle` varchar(128) DEFAULT NULL, `UserGender` char(1) DEFAULT NULL, `UserDOB` datetime DEFAULT NULL, `UserHomeAddress` varchar(128) DEFAULT NULL, `UserHomeCity` varchar(128) DEFAULT NULL, `UserHomeState` varchar(128) DEFAULT NULL, `UserHomeZip` varchar(128) DEFAULT NULL, `UserHomeCountry` varchar(128) DEFAULT NULL, `UserHomePhone` varchar(128) DEFAULT NULL, `UserHomeMobile` varchar(128) DEFAULT NULL, `UserHomeFax` varchar(128) DEFAULT NULL, `UserURL` varchar(128) DEFAULT NULL, `UserWorkCompany` varchar(128) DEFAULT NULL, `UserWorkTitle` varchar(128) DEFAULT NULL, `UserWorkDept` varchar(128) DEFAULT NULL, `UserWorkOffice` varchar(128) DEFAULT NULL, `UserWorkAddress` varchar(128) DEFAULT NULL, `UserWorkCity` varchar(128) DEFAULT NULL, `UserWorkState` varchar(128) DEFAULT NULL, `UserWorkZip` varchar(128) DEFAULT NULL, `UserWorkCountry` varchar(128) DEFAULT NULL, `UserWorkPhone` varchar(128) DEFAULT NULL, `UserWorkMobile` varchar(128) DEFAULT NULL, `UserWorkFax` varchar(128) DEFAULT NULL, `UserType` varchar(16) DEFAULT NULL, `UserInfo` text, `UserPgpKey` text, `Account` varchar(128) NOT NULL DEFAULT '', `id` bigint(10) unsigned NOT NULL AUTO_INCREMENT, `DateAdded` datetime DEFAULT NULL, `DateModified` varchar(12) DEFAULT NULL, `EntryID` varchar(64) DEFAULT NULL, PRIMARY KEY (`id`), KEY `iAccount` (`Account`), KEY `UserEmail` (`UserEmail`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `abook_i` -- LOCK TABLES `abook_i` WRITE; /*!40000 ALTER TABLE `abook_i` DISABLE KEYS */; /*!40000 ALTER TABLE `abook_i` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `abook_j` -- DROP TABLE IF EXISTS `abook_j`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `abook_j` ( `UserEmail` varchar(255) DEFAULT NULL, `UserEmail2` varchar(255) DEFAULT NULL, `UserEmail3` varchar(255) DEFAULT NULL, `UserEmail4` varchar(255) DEFAULT NULL, `UserEmail5` varchar(255) DEFAULT NULL, `UserFirstName` varchar(128) DEFAULT NULL, `UserMiddleName` varchar(128) DEFAULT NULL, `UserLastName` varchar(128) DEFAULT NULL, `UserTitle` varchar(128) DEFAULT NULL, `UserGender` char(1) DEFAULT NULL, `UserDOB` datetime DEFAULT NULL, `UserHomeAddress` varchar(128) DEFAULT NULL, `UserHomeCity` varchar(128) DEFAULT NULL, `UserHomeState` varchar(128) DEFAULT NULL, `UserHomeZip` varchar(128) DEFAULT NULL, `UserHomeCountry` varchar(128) DEFAULT NULL, `UserHomePhone` varchar(128) DEFAULT NULL, `UserHomeMobile` varchar(128) DEFAULT NULL, `UserHomeFax` varchar(128) DEFAULT NULL, `UserURL` varchar(128) DEFAULT NULL, `UserWorkCompany` varchar(128) DEFAULT NULL, `UserWorkTitle` varchar(128) DEFAULT NULL, `UserWorkDept` varchar(128) DEFAULT NULL, `UserWorkOffice` varchar(128) DEFAULT NULL, `UserWorkAddress` varchar(128) DEFAULT NULL, `UserWorkCity` varchar(128) DEFAULT NULL, `UserWorkState` varchar(128) DEFAULT NULL, `UserWorkZip` varchar(128) DEFAULT NULL, `UserWorkCountry` varchar(128) DEFAULT NULL, `UserWorkPhone` varchar(128) DEFAULT NULL, `UserWorkMobile` varchar(128) DEFAULT NULL, `UserWorkFax` varchar(128) DEFAULT NULL, `UserType` varchar(16) DEFAULT NULL, `UserInfo` text, `UserPgpKey` text, `Account` varchar(128) NOT NULL DEFAULT '', `id` bigint(10) unsigned NOT NULL AUTO_INCREMENT, `DateAdded` datetime DEFAULT NULL, `DateModified` varchar(12) DEFAULT NULL, `EntryID` varchar(64) DEFAULT NULL, PRIMARY KEY (`id`), KEY `iAccount` (`Account`), KEY `UserEmail` (`UserEmail`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `abook_j` -- LOCK TABLES `abook_j` WRITE; /*!40000 ALTER TABLE `abook_j` DISABLE KEYS */; /*!40000 ALTER TABLE `abook_j` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `abook_k` -- DROP TABLE IF EXISTS `abook_k`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `abook_k` ( `UserEmail` varchar(255) DEFAULT NULL, `UserEmail2` varchar(255) DEFAULT NULL, `UserEmail3` varchar(255) DEFAULT NULL, `UserEmail4` varchar(255) DEFAULT NULL, `UserEmail5` varchar(255) DEFAULT NULL, `UserFirstName` varchar(128) DEFAULT NULL, `UserMiddleName` varchar(128) DEFAULT NULL, `UserLastName` varchar(128) DEFAULT NULL, `UserTitle` varchar(128) DEFAULT NULL, `UserGender` char(1) DEFAULT NULL, `UserDOB` datetime DEFAULT NULL, `UserHomeAddress` varchar(128) DEFAULT NULL, `UserHomeCity` varchar(128) DEFAULT NULL, `UserHomeState` varchar(128) DEFAULT NULL, `UserHomeZip` varchar(128) DEFAULT NULL, `UserHomeCountry` varchar(128) DEFAULT NULL, `UserHomePhone` varchar(128) DEFAULT NULL, `UserHomeMobile` varchar(128) DEFAULT NULL, `UserHomeFax` varchar(128) DEFAULT NULL, `UserURL` varchar(128) DEFAULT NULL, `UserWorkCompany` varchar(128) DEFAULT NULL, `UserWorkTitle` varchar(128) DEFAULT NULL, `UserWorkDept` varchar(128) DEFAULT NULL, `UserWorkOffice` varchar(128) DEFAULT NULL, `UserWorkAddress` varchar(128) DEFAULT NULL, `UserWorkCity` varchar(128) DEFAULT NULL, `UserWorkState` varchar(128) DEFAULT NULL, `UserWorkZip` varchar(128) DEFAULT NULL, `UserWorkCountry` varchar(128) DEFAULT NULL, `UserWorkPhone` varchar(128) DEFAULT NULL, `UserWorkMobile` varchar(128) DEFAULT NULL, `UserWorkFax` varchar(128) DEFAULT NULL, `UserType` varchar(16) DEFAULT NULL, `UserInfo` text, `UserPgpKey` text, `Account` varchar(128) NOT NULL DEFAULT '', `id` bigint(10) unsigned NOT NULL AUTO_INCREMENT, `DateAdded` datetime DEFAULT NULL, `DateModified` varchar(12) DEFAULT NULL, `EntryID` varchar(64) DEFAULT NULL, PRIMARY KEY (`id`), KEY `iAccount` (`Account`), KEY `UserEmail` (`UserEmail`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `abook_k` -- LOCK TABLES `abook_k` WRITE; /*!40000 ALTER TABLE `abook_k` DISABLE KEYS */; /*!40000 ALTER TABLE `abook_k` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `abook_l` -- DROP TABLE IF EXISTS `abook_l`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `abook_l` ( `UserEmail` varchar(255) DEFAULT NULL, `UserEmail2` varchar(255) DEFAULT NULL, `UserEmail3` varchar(255) DEFAULT NULL, `UserEmail4` varchar(255) DEFAULT NULL, `UserEmail5` varchar(255) DEFAULT NULL, `UserFirstName` varchar(128) DEFAULT NULL, `UserMiddleName` varchar(128) DEFAULT NULL, `UserLastName` varchar(128) DEFAULT NULL, `UserTitle` varchar(128) DEFAULT NULL, `UserGender` char(1) DEFAULT NULL, `UserDOB` datetime DEFAULT NULL, `UserHomeAddress` varchar(128) DEFAULT NULL, `UserHomeCity` varchar(128) DEFAULT NULL, `UserHomeState` varchar(128) DEFAULT NULL, `UserHomeZip` varchar(128) DEFAULT NULL, `UserHomeCountry` varchar(128) DEFAULT NULL, `UserHomePhone` varchar(128) DEFAULT NULL, `UserHomeMobile` varchar(128) DEFAULT NULL, `UserHomeFax` varchar(128) DEFAULT NULL, `UserURL` varchar(128) DEFAULT NULL, `UserWorkCompany` varchar(128) DEFAULT NULL, `UserWorkTitle` varchar(128) DEFAULT NULL, `UserWorkDept` varchar(128) DEFAULT NULL, `UserWorkOffice` varchar(128) DEFAULT NULL, `UserWorkAddress` varchar(128) DEFAULT NULL, `UserWorkCity` varchar(128) DEFAULT NULL, `UserWorkState` varchar(128) DEFAULT NULL, `UserWorkZip` varchar(128) DEFAULT NULL, `UserWorkCountry` varchar(128) DEFAULT NULL, `UserWorkPhone` varchar(128) DEFAULT NULL, `UserWorkMobile` varchar(128) DEFAULT NULL, `UserWorkFax` varchar(128) DEFAULT NULL, `UserType` varchar(16) DEFAULT NULL, `UserInfo` text, `UserPgpKey` text, `Account` varchar(128) NOT NULL DEFAULT '', `id` bigint(10) unsigned NOT NULL AUTO_INCREMENT, `DateAdded` datetime DEFAULT NULL, `DateModified` varchar(12) DEFAULT NULL, `EntryID` varchar(64) DEFAULT NULL, PRIMARY KEY (`id`), KEY `iAccount` (`Account`), KEY `UserEmail` (`UserEmail`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `abook_l` -- LOCK TABLES `abook_l` WRITE; /*!40000 ALTER TABLE `abook_l` DISABLE KEYS */; /*!40000 ALTER TABLE `abook_l` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `abook_m` -- DROP TABLE IF EXISTS `abook_m`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `abook_m` ( `UserEmail` varchar(255) DEFAULT NULL, `UserEmail2` varchar(255) DEFAULT NULL, `UserEmail3` varchar(255) DEFAULT NULL, `UserEmail4` varchar(255) DEFAULT NULL, `UserEmail5` varchar(255) DEFAULT NULL, `UserFirstName` varchar(128) DEFAULT NULL, `UserMiddleName` varchar(128) DEFAULT NULL, `UserLastName` varchar(128) DEFAULT NULL, `UserTitle` varchar(128) DEFAULT NULL, `UserGender` char(1) DEFAULT NULL, `UserDOB` datetime DEFAULT NULL, `UserHomeAddress` varchar(128) DEFAULT NULL, `UserHomeCity` varchar(128) DEFAULT NULL, `UserHomeState` varchar(128) DEFAULT NULL, `UserHomeZip` varchar(128) DEFAULT NULL, `UserHomeCountry` varchar(128) DEFAULT NULL, `UserHomePhone` varchar(128) DEFAULT NULL, `UserHomeMobile` varchar(128) DEFAULT NULL, `UserHomeFax` varchar(128) DEFAULT NULL, `UserURL` varchar(128) DEFAULT NULL, `UserWorkCompany` varchar(128) DEFAULT NULL, `UserWorkTitle` varchar(128) DEFAULT NULL, `UserWorkDept` varchar(128) DEFAULT NULL, `UserWorkOffice` varchar(128) DEFAULT NULL, `UserWorkAddress` varchar(128) DEFAULT NULL, `UserWorkCity` varchar(128) DEFAULT NULL, `UserWorkState` varchar(128) DEFAULT NULL, `UserWorkZip` varchar(128) DEFAULT NULL, `UserWorkCountry` varchar(128) DEFAULT NULL, `UserWorkPhone` varchar(128) DEFAULT NULL, `UserWorkMobile` varchar(128) DEFAULT NULL, `UserWorkFax` varchar(128) DEFAULT NULL, `UserType` varchar(16) DEFAULT NULL, `UserInfo` text, `UserPgpKey` text, `Account` varchar(128) NOT NULL DEFAULT '', `id` bigint(10) unsigned NOT NULL AUTO_INCREMENT, `DateAdded` datetime DEFAULT NULL, `DateModified` varchar(12) DEFAULT NULL, `EntryID` varchar(64) DEFAULT NULL, PRIMARY KEY (`id`), KEY `iAccount` (`Account`), KEY `UserEmail` (`UserEmail`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `abook_m` -- LOCK TABLES `abook_m` WRITE; /*!40000 ALTER TABLE `abook_m` DISABLE KEYS */; /*!40000 ALTER TABLE `abook_m` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `abook_n` -- DROP TABLE IF EXISTS `abook_n`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `abook_n` ( `UserEmail` varchar(255) DEFAULT NULL, `UserEmail2` varchar(255) DEFAULT NULL, `UserEmail3` varchar(255) DEFAULT NULL, `UserEmail4` varchar(255) DEFAULT NULL, `UserEmail5` varchar(255) DEFAULT NULL, `UserFirstName` varchar(128) DEFAULT NULL, `UserMiddleName` varchar(128) DEFAULT NULL, `UserLastName` varchar(128) DEFAULT NULL, `UserTitle` varchar(128) DEFAULT NULL, `UserGender` char(1) DEFAULT NULL, `UserDOB` datetime DEFAULT NULL, `UserHomeAddress` varchar(128) DEFAULT NULL, `UserHomeCity` varchar(128) DEFAULT NULL, `UserHomeState` varchar(128) DEFAULT NULL, `UserHomeZip` varchar(128) DEFAULT NULL, `UserHomeCountry` varchar(128) DEFAULT NULL, `UserHomePhone` varchar(128) DEFAULT NULL, `UserHomeMobile` varchar(128) DEFAULT NULL, `UserHomeFax` varchar(128) DEFAULT NULL, `UserURL` varchar(128) DEFAULT NULL, `UserWorkCompany` varchar(128) DEFAULT NULL, `UserWorkTitle` varchar(128) DEFAULT NULL, `UserWorkDept` varchar(128) DEFAULT NULL, `UserWorkOffice` varchar(128) DEFAULT NULL, `UserWorkAddress` varchar(128) DEFAULT NULL, `UserWorkCity` varchar(128) DEFAULT NULL, `UserWorkState` varchar(128) DEFAULT NULL, `UserWorkZip` varchar(128) DEFAULT NULL, `UserWorkCountry` varchar(128) DEFAULT NULL, `UserWorkPhone` varchar(128) DEFAULT NULL, `UserWorkMobile` varchar(128) DEFAULT NULL, `UserWorkFax` varchar(128) DEFAULT NULL, `UserType` varchar(16) DEFAULT NULL, `UserInfo` text, `UserPgpKey` text, `Account` varchar(128) NOT NULL DEFAULT '', `id` bigint(10) unsigned NOT NULL AUTO_INCREMENT, `DateAdded` datetime DEFAULT NULL, `DateModified` varchar(12) DEFAULT NULL, `EntryID` varchar(64) DEFAULT NULL, PRIMARY KEY (`id`), KEY `iAccount` (`Account`), KEY `UserEmail` (`UserEmail`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `abook_n` -- LOCK TABLES `abook_n` WRITE; /*!40000 ALTER TABLE `abook_n` DISABLE KEYS */; /*!40000 ALTER TABLE `abook_n` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `abook_o` -- DROP TABLE IF EXISTS `abook_o`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `abook_o` ( `UserEmail` varchar(255) DEFAULT NULL, `UserEmail2` varchar(255) DEFAULT NULL, `UserEmail3` varchar(255) DEFAULT NULL, `UserEmail4` varchar(255) DEFAULT NULL, `UserEmail5` varchar(255) DEFAULT NULL, `UserFirstName` varchar(128) DEFAULT NULL, `UserMiddleName` varchar(128) DEFAULT NULL, `UserLastName` varchar(128) DEFAULT NULL, `UserTitle` varchar(128) DEFAULT NULL, `UserGender` char(1) DEFAULT NULL, `UserDOB` datetime DEFAULT NULL, `UserHomeAddress` varchar(128) DEFAULT NULL, `UserHomeCity` varchar(128) DEFAULT NULL, `UserHomeState` varchar(128) DEFAULT NULL, `UserHomeZip` varchar(128) DEFAULT NULL, `UserHomeCountry` varchar(128) DEFAULT NULL, `UserHomePhone` varchar(128) DEFAULT NULL, `UserHomeMobile` varchar(128) DEFAULT NULL, `UserHomeFax` varchar(128) DEFAULT NULL, `UserURL` varchar(128) DEFAULT NULL, `UserWorkCompany` varchar(128) DEFAULT NULL, `UserWorkTitle` varchar(128) DEFAULT NULL, `UserWorkDept` varchar(128) DEFAULT NULL, `UserWorkOffice` varchar(128) DEFAULT NULL, `UserWorkAddress` varchar(128) DEFAULT NULL, `UserWorkCity` varchar(128) DEFAULT NULL, `UserWorkState` varchar(128) DEFAULT NULL, `UserWorkZip` varchar(128) DEFAULT NULL, `UserWorkCountry` varchar(128) DEFAULT NULL, `UserWorkPhone` varchar(128) DEFAULT NULL, `UserWorkMobile` varchar(128) DEFAULT NULL, `UserWorkFax` varchar(128) DEFAULT NULL, `UserType` varchar(16) DEFAULT NULL, `UserInfo` text, `UserPgpKey` text, `Account` varchar(128) NOT NULL DEFAULT '', `id` bigint(10) unsigned NOT NULL AUTO_INCREMENT, `DateAdded` datetime DEFAULT NULL, `DateModified` varchar(12) DEFAULT NULL, `EntryID` varchar(64) DEFAULT NULL, PRIMARY KEY (`id`), KEY `iAccount` (`Account`), KEY `UserEmail` (`UserEmail`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `abook_o` -- LOCK TABLES `abook_o` WRITE; /*!40000 ALTER TABLE `abook_o` DISABLE KEYS */; /*!40000 ALTER TABLE `abook_o` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `abook_other` -- DROP TABLE IF EXISTS `abook_other`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `abook_other` ( `UserEmail` varchar(255) DEFAULT NULL, `UserEmail2` varchar(255) DEFAULT NULL, `UserEmail3` varchar(255) DEFAULT NULL, `UserEmail4` varchar(255) DEFAULT NULL, `UserEmail5` varchar(255) DEFAULT NULL, `UserFirstName` varchar(128) DEFAULT NULL, `UserMiddleName` varchar(128) DEFAULT NULL, `UserLastName` varchar(128) DEFAULT NULL, `UserTitle` varchar(128) DEFAULT NULL, `UserGender` char(1) DEFAULT NULL, `UserDOB` datetime DEFAULT NULL, `UserHomeAddress` varchar(128) DEFAULT NULL, `UserHomeCity` varchar(128) DEFAULT NULL, `UserHomeState` varchar(128) DEFAULT NULL, `UserHomeZip` varchar(128) DEFAULT NULL, `UserHomeCountry` varchar(128) DEFAULT NULL, `UserHomePhone` varchar(128) DEFAULT NULL, `UserHomeMobile` varchar(128) DEFAULT NULL, `UserHomeFax` varchar(128) DEFAULT NULL, `UserURL` varchar(128) DEFAULT NULL, `UserWorkCompany` varchar(128) DEFAULT NULL, `UserWorkTitle` varchar(128) DEFAULT NULL, `UserWorkDept` varchar(128) DEFAULT NULL, `UserWorkOffice` varchar(128) DEFAULT NULL, `UserWorkAddress` varchar(128) DEFAULT NULL, `UserWorkCity` varchar(128) DEFAULT NULL, `UserWorkState` varchar(128) DEFAULT NULL, `UserWorkZip` varchar(128) DEFAULT NULL, `UserWorkCountry` varchar(128) DEFAULT NULL, `UserWorkPhone` varchar(128) DEFAULT NULL, `UserWorkMobile` varchar(128) DEFAULT NULL, `UserWorkFax` varchar(128) DEFAULT NULL, `UserType` varchar(16) DEFAULT NULL, `UserInfo` text, `UserPgpKey` text, `Account` varchar(128) NOT NULL DEFAULT '', `id` bigint(10) unsigned NOT NULL AUTO_INCREMENT, `DateAdded` datetime DEFAULT NULL, `DateModified` varchar(12) DEFAULT NULL, `EntryID` varchar(64) DEFAULT NULL, PRIMARY KEY (`id`), KEY `iAccount` (`Account`), KEY `UserEmail` (`UserEmail`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `abook_other` -- LOCK TABLES `abook_other` WRITE; /*!40000 ALTER TABLE `abook_other` DISABLE KEYS */; /*!40000 ALTER TABLE `abook_other` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `abook_p` -- DROP TABLE IF EXISTS `abook_p`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `abook_p` ( `UserEmail` varchar(255) DEFAULT NULL, `UserEmail2` varchar(255) DEFAULT NULL, `UserEmail3` varchar(255) DEFAULT NULL, `UserEmail4` varchar(255) DEFAULT NULL, `UserEmail5` varchar(255) DEFAULT NULL, `UserFirstName` varchar(128) DEFAULT NULL, `UserMiddleName` varchar(128) DEFAULT NULL, `UserLastName` varchar(128) DEFAULT NULL, `UserTitle` varchar(128) DEFAULT NULL, `UserGender` char(1) DEFAULT NULL, `UserDOB` datetime DEFAULT NULL, `UserHomeAddress` varchar(128) DEFAULT NULL, `UserHomeCity` varchar(128) DEFAULT NULL, `UserHomeState` varchar(128) DEFAULT NULL, `UserHomeZip` varchar(128) DEFAULT NULL, `UserHomeCountry` varchar(128) DEFAULT NULL, `UserHomePhone` varchar(128) DEFAULT NULL, `UserHomeMobile` varchar(128) DEFAULT NULL, `UserHomeFax` varchar(128) DEFAULT NULL, `UserURL` varchar(128) DEFAULT NULL, `UserWorkCompany` varchar(128) DEFAULT NULL, `UserWorkTitle` varchar(128) DEFAULT NULL, `UserWorkDept` varchar(128) DEFAULT NULL, `UserWorkOffice` varchar(128) DEFAULT NULL, `UserWorkAddress` varchar(128) DEFAULT NULL, `UserWorkCity` varchar(128) DEFAULT NULL, `UserWorkState` varchar(128) DEFAULT NULL, `UserWorkZip` varchar(128) DEFAULT NULL, `UserWorkCountry` varchar(128) DEFAULT NULL, `UserWorkPhone` varchar(128) DEFAULT NULL, `UserWorkMobile` varchar(128) DEFAULT NULL, `UserWorkFax` varchar(128) DEFAULT NULL, `UserType` varchar(16) DEFAULT NULL, `UserInfo` text, `UserPgpKey` text, `Account` varchar(128) NOT NULL DEFAULT '', `id` bigint(10) unsigned NOT NULL AUTO_INCREMENT, `DateAdded` datetime DEFAULT NULL, `DateModified` varchar(12) DEFAULT NULL, `EntryID` varchar(64) DEFAULT NULL, PRIMARY KEY (`id`), KEY `iAccount` (`Account`), KEY `UserEmail` (`UserEmail`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `abook_p` -- LOCK TABLES `abook_p` WRITE; /*!40000 ALTER TABLE `abook_p` DISABLE KEYS */; /*!40000 ALTER TABLE `abook_p` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `abook_q` -- DROP TABLE IF EXISTS `abook_q`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `abook_q` ( `UserEmail` varchar(255) DEFAULT NULL, `UserEmail2` varchar(255) DEFAULT NULL, `UserEmail3` varchar(255) DEFAULT NULL, `UserEmail4` varchar(255) DEFAULT NULL, `UserEmail5` varchar(255) DEFAULT NULL, `UserFirstName` varchar(128) DEFAULT NULL, `UserMiddleName` varchar(128) DEFAULT NULL, `UserLastName` varchar(128) DEFAULT NULL, `UserTitle` varchar(128) DEFAULT NULL, `UserGender` char(1) DEFAULT NULL, `UserDOB` datetime DEFAULT NULL, `UserHomeAddress` varchar(128) DEFAULT NULL, `UserHomeCity` varchar(128) DEFAULT NULL, `UserHomeState` varchar(128) DEFAULT NULL, `UserHomeZip` varchar(128) DEFAULT NULL, `UserHomeCountry` varchar(128) DEFAULT NULL, `UserHomePhone` varchar(128) DEFAULT NULL, `UserHomeMobile` varchar(128) DEFAULT NULL, `UserHomeFax` varchar(128) DEFAULT NULL, `UserURL` varchar(128) DEFAULT NULL, `UserWorkCompany` varchar(128) DEFAULT NULL, `UserWorkTitle` varchar(128) DEFAULT NULL, `UserWorkDept` varchar(128) DEFAULT NULL, `UserWorkOffice` varchar(128) DEFAULT NULL, `UserWorkAddress` varchar(128) DEFAULT NULL, `UserWorkCity` varchar(128) DEFAULT NULL, `UserWorkState` varchar(128) DEFAULT NULL, `UserWorkZip` varchar(128) DEFAULT NULL, `UserWorkCountry` varchar(128) DEFAULT NULL, `UserWorkPhone` varchar(128) DEFAULT NULL, `UserWorkMobile` varchar(128) DEFAULT NULL, `UserWorkFax` varchar(128) DEFAULT NULL, `UserType` varchar(16) DEFAULT NULL, `UserInfo` text, `UserPgpKey` text, `Account` varchar(128) NOT NULL DEFAULT '', `id` bigint(10) unsigned NOT NULL AUTO_INCREMENT, `DateAdded` datetime DEFAULT NULL, `DateModified` varchar(12) DEFAULT NULL, `EntryID` varchar(64) DEFAULT NULL, PRIMARY KEY (`id`), KEY `iAccount` (`Account`), KEY `UserEmail` (`UserEmail`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `abook_q` -- LOCK TABLES `abook_q` WRITE; /*!40000 ALTER TABLE `abook_q` DISABLE KEYS */; /*!40000 ALTER TABLE `abook_q` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `abook_r` -- DROP TABLE IF EXISTS `abook_r`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `abook_r` ( `UserEmail` varchar(255) DEFAULT NULL, `UserEmail2` varchar(255) DEFAULT NULL, `UserEmail3` varchar(255) DEFAULT NULL, `UserEmail4` varchar(255) DEFAULT NULL, `UserEmail5` varchar(255) DEFAULT NULL, `UserFirstName` varchar(128) DEFAULT NULL, `UserMiddleName` varchar(128) DEFAULT NULL, `UserLastName` varchar(128) DEFAULT NULL, `UserTitle` varchar(128) DEFAULT NULL, `UserGender` char(1) DEFAULT NULL, `UserDOB` datetime DEFAULT NULL, `UserHomeAddress` varchar(128) DEFAULT NULL, `UserHomeCity` varchar(128) DEFAULT NULL, `UserHomeState` varchar(128) DEFAULT NULL, `UserHomeZip` varchar(128) DEFAULT NULL, `UserHomeCountry` varchar(128) DEFAULT NULL, `UserHomePhone` varchar(128) DEFAULT NULL, `UserHomeMobile` varchar(128) DEFAULT NULL, `UserHomeFax` varchar(128) DEFAULT NULL, `UserURL` varchar(128) DEFAULT NULL, `UserWorkCompany` varchar(128) DEFAULT NULL, `UserWorkTitle` varchar(128) DEFAULT NULL, `UserWorkDept` varchar(128) DEFAULT NULL, `UserWorkOffice` varchar(128) DEFAULT NULL, `UserWorkAddress` varchar(128) DEFAULT NULL, `UserWorkCity` varchar(128) DEFAULT NULL, `UserWorkState` varchar(128) DEFAULT NULL, `UserWorkZip` varchar(128) DEFAULT NULL, `UserWorkCountry` varchar(128) DEFAULT NULL, `UserWorkPhone` varchar(128) DEFAULT NULL, `UserWorkMobile` varchar(128) DEFAULT NULL, `UserWorkFax` varchar(128) DEFAULT NULL, `UserType` varchar(16) DEFAULT NULL, `UserInfo` text, `UserPgpKey` text, `Account` varchar(128) NOT NULL DEFAULT '', `id` bigint(10) unsigned NOT NULL AUTO_INCREMENT, `DateAdded` datetime DEFAULT NULL, `DateModified` varchar(12) DEFAULT NULL, `EntryID` varchar(64) DEFAULT NULL, PRIMARY KEY (`id`), KEY `iAccount` (`Account`), KEY `UserEmail` (`UserEmail`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `abook_r` -- LOCK TABLES `abook_r` WRITE; /*!40000 ALTER TABLE `abook_r` DISABLE KEYS */; /*!40000 ALTER TABLE `abook_r` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `abook_s` -- DROP TABLE IF EXISTS `abook_s`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `abook_s` ( `UserEmail` varchar(255) DEFAULT NULL, `UserEmail2` varchar(255) DEFAULT NULL, `UserEmail3` varchar(255) DEFAULT NULL, `UserEmail4` varchar(255) DEFAULT NULL, `UserEmail5` varchar(255) DEFAULT NULL, `UserFirstName` varchar(128) DEFAULT NULL, `UserMiddleName` varchar(128) DEFAULT NULL, `UserLastName` varchar(128) DEFAULT NULL, `UserTitle` varchar(128) DEFAULT NULL, `UserGender` char(1) DEFAULT NULL, `UserDOB` datetime DEFAULT NULL, `UserHomeAddress` varchar(128) DEFAULT NULL, `UserHomeCity` varchar(128) DEFAULT NULL, `UserHomeState` varchar(128) DEFAULT NULL, `UserHomeZip` varchar(128) DEFAULT NULL, `UserHomeCountry` varchar(128) DEFAULT NULL, `UserHomePhone` varchar(128) DEFAULT NULL, `UserHomeMobile` varchar(128) DEFAULT NULL, `UserHomeFax` varchar(128) DEFAULT NULL, `UserURL` varchar(128) DEFAULT NULL, `UserWorkCompany` varchar(128) DEFAULT NULL, `UserWorkTitle` varchar(128) DEFAULT NULL, `UserWorkDept` varchar(128) DEFAULT NULL, `UserWorkOffice` varchar(128) DEFAULT NULL, `UserWorkAddress` varchar(128) DEFAULT NULL, `UserWorkCity` varchar(128) DEFAULT NULL, `UserWorkState` varchar(128) DEFAULT NULL, `UserWorkZip` varchar(128) DEFAULT NULL, `UserWorkCountry` varchar(128) DEFAULT NULL, `UserWorkPhone` varchar(128) DEFAULT NULL, `UserWorkMobile` varchar(128) DEFAULT NULL, `UserWorkFax` varchar(128) DEFAULT NULL, `UserType` varchar(16) DEFAULT NULL, `UserInfo` text, `UserPgpKey` text, `Account` varchar(128) NOT NULL DEFAULT '', `id` bigint(10) unsigned NOT NULL AUTO_INCREMENT, `DateAdded` datetime DEFAULT NULL, `DateModified` varchar(12) DEFAULT NULL, `EntryID` varchar(64) DEFAULT NULL, PRIMARY KEY (`id`), KEY `iAccount` (`Account`), KEY `UserEmail` (`UserEmail`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `abook_s` -- LOCK TABLES `abook_s` WRITE; /*!40000 ALTER TABLE `abook_s` DISABLE KEYS */; /*!40000 ALTER TABLE `abook_s` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `abook_shared` -- DROP TABLE IF EXISTS `abook_shared`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `abook_shared` ( `UserEmail` varchar(255) DEFAULT NULL, `UserEmail2` varchar(255) DEFAULT NULL, `UserEmail3` varchar(255) DEFAULT NULL, `UserEmail4` varchar(255) DEFAULT NULL, `UserEmail5` varchar(255) DEFAULT NULL, `UserFirstName` varchar(128) DEFAULT NULL, `UserMiddleName` varchar(128) DEFAULT NULL, `UserLastName` varchar(128) DEFAULT NULL, `UserTitle` varchar(128) DEFAULT NULL, `UserGender` char(1) DEFAULT NULL, `UserDOB` datetime DEFAULT NULL, `UserHomeAddress` varchar(128) DEFAULT NULL, `UserHomeCity` varchar(128) DEFAULT NULL, `UserHomeState` varchar(128) DEFAULT NULL, `UserHomeZip` varchar(128) DEFAULT NULL, `UserHomeCountry` varchar(128) DEFAULT NULL, `UserHomePhone` varchar(128) DEFAULT NULL, `UserHomeMobile` varchar(128) DEFAULT NULL, `UserHomeFax` varchar(128) DEFAULT NULL, `UserURL` varchar(128) DEFAULT NULL, `UserWorkCompany` varchar(128) DEFAULT NULL, `UserWorkTitle` varchar(128) DEFAULT NULL, `UserWorkDept` varchar(128) DEFAULT NULL, `UserWorkOffice` varchar(128) DEFAULT NULL, `UserWorkAddress` varchar(128) DEFAULT NULL, `UserWorkCity` varchar(128) DEFAULT NULL, `UserWorkState` varchar(128) DEFAULT NULL, `UserWorkZip` varchar(128) DEFAULT NULL, `UserWorkCountry` varchar(128) DEFAULT NULL, `UserWorkPhone` varchar(128) DEFAULT NULL, `UserWorkMobile` varchar(128) DEFAULT NULL, `UserWorkFax` varchar(128) DEFAULT NULL, `UserType` varchar(16) DEFAULT NULL, `UserInfo` text, `UserPgpKey` text, `Account` varchar(128) NOT NULL DEFAULT '', `id` bigint(10) unsigned NOT NULL AUTO_INCREMENT, `DateAdded` datetime DEFAULT NULL, `DateModified` varchar(12) DEFAULT NULL, `EntryID` varchar(64) DEFAULT NULL, PRIMARY KEY (`id`), KEY `iAccount` (`Account`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `abook_shared` -- LOCK TABLES `abook_shared` WRITE; /*!40000 ALTER TABLE `abook_shared` DISABLE KEYS */; /*!40000 ALTER TABLE `abook_shared` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `abook_t` -- DROP TABLE IF EXISTS `abook_t`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `abook_t` ( `UserEmail` varchar(255) DEFAULT NULL, `UserEmail2` varchar(255) DEFAULT NULL, `UserEmail3` varchar(255) DEFAULT NULL, `UserEmail4` varchar(255) DEFAULT NULL, `UserEmail5` varchar(255) DEFAULT NULL, `UserFirstName` varchar(128) DEFAULT NULL, `UserMiddleName` varchar(128) DEFAULT NULL, `UserLastName` varchar(128) DEFAULT NULL, `UserTitle` varchar(128) DEFAULT NULL, `UserGender` char(1) DEFAULT NULL, `UserDOB` datetime DEFAULT NULL, `UserHomeAddress` varchar(128) DEFAULT NULL, `UserHomeCity` varchar(128) DEFAULT NULL, `UserHomeState` varchar(128) DEFAULT NULL, `UserHomeZip` varchar(128) DEFAULT NULL, `UserHomeCountry` varchar(128) DEFAULT NULL, `UserHomePhone` varchar(128) DEFAULT NULL, `UserHomeMobile` varchar(128) DEFAULT NULL, `UserHomeFax` varchar(128) DEFAULT NULL, `UserURL` varchar(128) DEFAULT NULL, `UserWorkCompany` varchar(128) DEFAULT NULL, `UserWorkTitle` varchar(128) DEFAULT NULL, `UserWorkDept` varchar(128) DEFAULT NULL, `UserWorkOffice` varchar(128) DEFAULT NULL, `UserWorkAddress` varchar(128) DEFAULT NULL, `UserWorkCity` varchar(128) DEFAULT NULL, `UserWorkState` varchar(128) DEFAULT NULL, `UserWorkZip` varchar(128) DEFAULT NULL, `UserWorkCountry` varchar(128) DEFAULT NULL, `UserWorkPhone` varchar(128) DEFAULT NULL, `UserWorkMobile` varchar(128) DEFAULT NULL, `UserWorkFax` varchar(128) DEFAULT NULL, `UserType` varchar(16) DEFAULT NULL, `UserInfo` text, `UserPgpKey` text, `Account` varchar(128) NOT NULL DEFAULT '', `id` bigint(10) unsigned NOT NULL AUTO_INCREMENT, `DateAdded` datetime DEFAULT NULL, `DateModified` varchar(12) DEFAULT NULL, `EntryID` varchar(64) DEFAULT NULL, PRIMARY KEY (`id`), KEY `iAccount` (`Account`), KEY `UserEmail` (`UserEmail`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `abook_t` -- LOCK TABLES `abook_t` WRITE; /*!40000 ALTER TABLE `abook_t` DISABLE KEYS */; /*!40000 ALTER TABLE `abook_t` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `abook_u` -- DROP TABLE IF EXISTS `abook_u`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `abook_u` ( `UserEmail` varchar(255) DEFAULT NULL, `UserEmail2` varchar(255) DEFAULT NULL, `UserEmail3` varchar(255) DEFAULT NULL, `UserEmail4` varchar(255) DEFAULT NULL, `UserEmail5` varchar(255) DEFAULT NULL, `UserFirstName` varchar(128) DEFAULT NULL, `UserMiddleName` varchar(128) DEFAULT NULL, `UserLastName` varchar(128) DEFAULT NULL, `UserTitle` varchar(128) DEFAULT NULL, `UserGender` char(1) DEFAULT NULL, `UserDOB` datetime DEFAULT NULL, `UserHomeAddress` varchar(128) DEFAULT NULL, `UserHomeCity` varchar(128) DEFAULT NULL, `UserHomeState` varchar(128) DEFAULT NULL, `UserHomeZip` varchar(128) DEFAULT NULL, `UserHomeCountry` varchar(128) DEFAULT NULL, `UserHomePhone` varchar(128) DEFAULT NULL, `UserHomeMobile` varchar(128) DEFAULT NULL, `UserHomeFax` varchar(128) DEFAULT NULL, `UserURL` varchar(128) DEFAULT NULL, `UserWorkCompany` varchar(128) DEFAULT NULL, `UserWorkTitle` varchar(128) DEFAULT NULL, `UserWorkDept` varchar(128) DEFAULT NULL, `UserWorkOffice` varchar(128) DEFAULT NULL, `UserWorkAddress` varchar(128) DEFAULT NULL, `UserWorkCity` varchar(128) DEFAULT NULL, `UserWorkState` varchar(128) DEFAULT NULL, `UserWorkZip` varchar(128) DEFAULT NULL, `UserWorkCountry` varchar(128) DEFAULT NULL, `UserWorkPhone` varchar(128) DEFAULT NULL, `UserWorkMobile` varchar(128) DEFAULT NULL, `UserWorkFax` varchar(128) DEFAULT NULL, `UserType` varchar(16) DEFAULT NULL, `UserInfo` text, `UserPgpKey` text, `Account` varchar(128) NOT NULL DEFAULT '', `id` bigint(10) unsigned NOT NULL AUTO_INCREMENT, `DateAdded` datetime DEFAULT NULL, `DateModified` varchar(12) DEFAULT NULL, `EntryID` varchar(64) DEFAULT NULL, PRIMARY KEY (`id`), KEY `iAccount` (`Account`), KEY `UserEmail` (`UserEmail`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `abook_u` -- LOCK TABLES `abook_u` WRITE; /*!40000 ALTER TABLE `abook_u` DISABLE KEYS */; /*!40000 ALTER TABLE `abook_u` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `abook_v` -- DROP TABLE IF EXISTS `abook_v`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `abook_v` ( `UserEmail` varchar(255) DEFAULT NULL, `UserEmail2` varchar(255) DEFAULT NULL, `UserEmail3` varchar(255) DEFAULT NULL, `UserEmail4` varchar(255) DEFAULT NULL, `UserEmail5` varchar(255) DEFAULT NULL, `UserFirstName` varchar(128) DEFAULT NULL, `UserMiddleName` varchar(128) DEFAULT NULL, `UserLastName` varchar(128) DEFAULT NULL, `UserTitle` varchar(128) DEFAULT NULL, `UserGender` char(1) DEFAULT NULL, `UserDOB` datetime DEFAULT NULL, `UserHomeAddress` varchar(128) DEFAULT NULL, `UserHomeCity` varchar(128) DEFAULT NULL, `UserHomeState` varchar(128) DEFAULT NULL, `UserHomeZip` varchar(128) DEFAULT NULL, `UserHomeCountry` varchar(128) DEFAULT NULL, `UserHomePhone` varchar(128) DEFAULT NULL, `UserHomeMobile` varchar(128) DEFAULT NULL, `UserHomeFax` varchar(128) DEFAULT NULL, `UserURL` varchar(128) DEFAULT NULL, `UserWorkCompany` varchar(128) DEFAULT NULL, `UserWorkTitle` varchar(128) DEFAULT NULL, `UserWorkDept` varchar(128) DEFAULT NULL, `UserWorkOffice` varchar(128) DEFAULT NULL, `UserWorkAddress` varchar(128) DEFAULT NULL, `UserWorkCity` varchar(128) DEFAULT NULL, `UserWorkState` varchar(128) DEFAULT NULL, `UserWorkZip` varchar(128) DEFAULT NULL, `UserWorkCountry` varchar(128) DEFAULT NULL, `UserWorkPhone` varchar(128) DEFAULT NULL, `UserWorkMobile` varchar(128) DEFAULT NULL, `UserWorkFax` varchar(128) DEFAULT NULL, `UserType` varchar(16) DEFAULT NULL, `UserInfo` text, `UserPgpKey` text, `Account` varchar(128) NOT NULL DEFAULT '', `id` bigint(10) unsigned NOT NULL AUTO_INCREMENT, `DateAdded` datetime DEFAULT NULL, `DateModified` varchar(12) DEFAULT NULL, `EntryID` varchar(64) DEFAULT NULL, PRIMARY KEY (`id`), KEY `iAccount` (`Account`), KEY `UserEmail` (`UserEmail`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `abook_v` -- LOCK TABLES `abook_v` WRITE; /*!40000 ALTER TABLE `abook_v` DISABLE KEYS */; /*!40000 ALTER TABLE `abook_v` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `abook_w` -- DROP TABLE IF EXISTS `abook_w`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `abook_w` ( `UserEmail` varchar(255) DEFAULT NULL, `UserEmail2` varchar(255) DEFAULT NULL, `UserEmail3` varchar(255) DEFAULT NULL, `UserEmail4` varchar(255) DEFAULT NULL, `UserEmail5` varchar(255) DEFAULT NULL, `UserFirstName` varchar(128) DEFAULT NULL, `UserMiddleName` varchar(128) DEFAULT NULL, `UserLastName` varchar(128) DEFAULT NULL, `UserTitle` varchar(128) DEFAULT NULL, `UserGender` char(1) DEFAULT NULL, `UserDOB` datetime DEFAULT NULL, `UserHomeAddress` varchar(128) DEFAULT NULL, `UserHomeCity` varchar(128) DEFAULT NULL, `UserHomeState` varchar(128) DEFAULT NULL, `UserHomeZip` varchar(128) DEFAULT NULL, `UserHomeCountry` varchar(128) DEFAULT NULL, `UserHomePhone` varchar(128) DEFAULT NULL, `UserHomeMobile` varchar(128) DEFAULT NULL, `UserHomeFax` varchar(128) DEFAULT NULL, `UserURL` varchar(128) DEFAULT NULL, `UserWorkCompany` varchar(128) DEFAULT NULL, `UserWorkTitle` varchar(128) DEFAULT NULL, `UserWorkDept` varchar(128) DEFAULT NULL, `UserWorkOffice` varchar(128) DEFAULT NULL, `UserWorkAddress` varchar(128) DEFAULT NULL, `UserWorkCity` varchar(128) DEFAULT NULL, `UserWorkState` varchar(128) DEFAULT NULL, `UserWorkZip` varchar(128) DEFAULT NULL, `UserWorkCountry` varchar(128) DEFAULT NULL, `UserWorkPhone` varchar(128) DEFAULT NULL, `UserWorkMobile` varchar(128) DEFAULT NULL, `UserWorkFax` varchar(128) DEFAULT NULL, `UserType` varchar(16) DEFAULT NULL, `UserInfo` text, `UserPgpKey` text, `Account` varchar(128) NOT NULL DEFAULT '', `id` bigint(10) unsigned NOT NULL AUTO_INCREMENT, `DateAdded` datetime DEFAULT NULL, `DateModified` varchar(12) DEFAULT NULL, `EntryID` varchar(64) DEFAULT NULL, PRIMARY KEY (`id`), KEY `iAccount` (`Account`), KEY `UserEmail` (`UserEmail`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `abook_w` -- LOCK TABLES `abook_w` WRITE; /*!40000 ALTER TABLE `abook_w` DISABLE KEYS */; /*!40000 ALTER TABLE `abook_w` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `abook_x` -- DROP TABLE IF EXISTS `abook_x`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `abook_x` ( `UserEmail` varchar(255) DEFAULT NULL, `UserEmail2` varchar(255) DEFAULT NULL, `UserEmail3` varchar(255) DEFAULT NULL, `UserEmail4` varchar(255) DEFAULT NULL, `UserEmail5` varchar(255) DEFAULT NULL, `UserFirstName` varchar(128) DEFAULT NULL, `UserMiddleName` varchar(128) DEFAULT NULL, `UserLastName` varchar(128) DEFAULT NULL, `UserTitle` varchar(128) DEFAULT NULL, `UserGender` char(1) DEFAULT NULL, `UserDOB` datetime DEFAULT NULL, `UserHomeAddress` varchar(128) DEFAULT NULL, `UserHomeCity` varchar(128) DEFAULT NULL, `UserHomeState` varchar(128) DEFAULT NULL, `UserHomeZip` varchar(128) DEFAULT NULL, `UserHomeCountry` varchar(128) DEFAULT NULL, `UserHomePhone` varchar(128) DEFAULT NULL, `UserHomeMobile` varchar(128) DEFAULT NULL, `UserHomeFax` varchar(128) DEFAULT NULL, `UserURL` varchar(128) DEFAULT NULL, `UserWorkCompany` varchar(128) DEFAULT NULL, `UserWorkTitle` varchar(128) DEFAULT NULL, `UserWorkDept` varchar(128) DEFAULT NULL, `UserWorkOffice` varchar(128) DEFAULT NULL, `UserWorkAddress` varchar(128) DEFAULT NULL, `UserWorkCity` varchar(128) DEFAULT NULL, `UserWorkState` varchar(128) DEFAULT NULL, `UserWorkZip` varchar(128) DEFAULT NULL, `UserWorkCountry` varchar(128) DEFAULT NULL, `UserWorkPhone` varchar(128) DEFAULT NULL, `UserWorkMobile` varchar(128) DEFAULT NULL, `UserWorkFax` varchar(128) DEFAULT NULL, `UserType` varchar(16) DEFAULT NULL, `UserInfo` text, `UserPgpKey` text, `Account` varchar(128) NOT NULL DEFAULT '', `id` bigint(10) unsigned NOT NULL AUTO_INCREMENT, `DateAdded` datetime DEFAULT NULL, `DateModified` varchar(12) DEFAULT NULL, `EntryID` varchar(64) DEFAULT NULL, PRIMARY KEY (`id`), KEY `iAccount` (`Account`), KEY `UserEmail` (`UserEmail`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `abook_x` -- LOCK TABLES `abook_x` WRITE; /*!40000 ALTER TABLE `abook_x` DISABLE KEYS */; /*!40000 ALTER TABLE `abook_x` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `abook_y` -- DROP TABLE IF EXISTS `abook_y`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `abook_y` ( `UserEmail` varchar(255) DEFAULT NULL, `UserEmail2` varchar(255) DEFAULT NULL, `UserEmail3` varchar(255) DEFAULT NULL, `UserEmail4` varchar(255) DEFAULT NULL, `UserEmail5` varchar(255) DEFAULT NULL, `UserFirstName` varchar(128) DEFAULT NULL, `UserMiddleName` varchar(128) DEFAULT NULL, `UserLastName` varchar(128) DEFAULT NULL, `UserTitle` varchar(128) DEFAULT NULL, `UserGender` char(1) DEFAULT NULL, `UserDOB` datetime DEFAULT NULL, `UserHomeAddress` varchar(128) DEFAULT NULL, `UserHomeCity` varchar(128) DEFAULT NULL, `UserHomeState` varchar(128) DEFAULT NULL, `UserHomeZip` varchar(128) DEFAULT NULL, `UserHomeCountry` varchar(128) DEFAULT NULL, `UserHomePhone` varchar(128) DEFAULT NULL, `UserHomeMobile` varchar(128) DEFAULT NULL, `UserHomeFax` varchar(128) DEFAULT NULL, `UserURL` varchar(128) DEFAULT NULL, `UserWorkCompany` varchar(128) DEFAULT NULL, `UserWorkTitle` varchar(128) DEFAULT NULL, `UserWorkDept` varchar(128) DEFAULT NULL, `UserWorkOffice` varchar(128) DEFAULT NULL, `UserWorkAddress` varchar(128) DEFAULT NULL, `UserWorkCity` varchar(128) DEFAULT NULL, `UserWorkState` varchar(128) DEFAULT NULL, `UserWorkZip` varchar(128) DEFAULT NULL, `UserWorkCountry` varchar(128) DEFAULT NULL, `UserWorkPhone` varchar(128) DEFAULT NULL, `UserWorkMobile` varchar(128) DEFAULT NULL, `UserWorkFax` varchar(128) DEFAULT NULL, `UserType` varchar(16) DEFAULT NULL, `UserInfo` text, `UserPgpKey` text, `Account` varchar(128) NOT NULL DEFAULT '', `id` bigint(10) unsigned NOT NULL AUTO_INCREMENT, `DateAdded` datetime DEFAULT NULL, `DateModified` varchar(12) DEFAULT NULL, `EntryID` varchar(64) DEFAULT NULL, PRIMARY KEY (`id`), KEY `iAccount` (`Account`), KEY `UserEmail` (`UserEmail`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `abook_y` -- LOCK TABLES `abook_y` WRITE; /*!40000 ALTER TABLE `abook_y` DISABLE KEYS */; /*!40000 ALTER TABLE `abook_y` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `abook_z` -- DROP TABLE IF EXISTS `abook_z`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `abook_z` ( `UserEmail` varchar(255) DEFAULT NULL, `UserEmail2` varchar(255) DEFAULT NULL, `UserEmail3` varchar(255) DEFAULT NULL, `UserEmail4` varchar(255) DEFAULT NULL, `UserEmail5` varchar(255) DEFAULT NULL, `UserFirstName` varchar(128) DEFAULT NULL, `UserMiddleName` varchar(128) DEFAULT NULL, `UserLastName` varchar(128) DEFAULT NULL, `UserTitle` varchar(128) DEFAULT NULL, `UserGender` char(1) DEFAULT NULL, `UserDOB` datetime DEFAULT NULL, `UserHomeAddress` varchar(128) DEFAULT NULL, `UserHomeCity` varchar(128) DEFAULT NULL, `UserHomeState` varchar(128) DEFAULT NULL, `UserHomeZip` varchar(128) DEFAULT NULL, `UserHomeCountry` varchar(128) DEFAULT NULL, `UserHomePhone` varchar(128) DEFAULT NULL, `UserHomeMobile` varchar(128) DEFAULT NULL, `UserHomeFax` varchar(128) DEFAULT NULL, `UserURL` varchar(128) DEFAULT NULL, `UserWorkCompany` varchar(128) DEFAULT NULL, `UserWorkTitle` varchar(128) DEFAULT NULL, `UserWorkDept` varchar(128) DEFAULT NULL, `UserWorkOffice` varchar(128) DEFAULT NULL, `UserWorkAddress` varchar(128) DEFAULT NULL, `UserWorkCity` varchar(128) DEFAULT NULL, `UserWorkState` varchar(128) DEFAULT NULL, `UserWorkZip` varchar(128) DEFAULT NULL, `UserWorkCountry` varchar(128) DEFAULT NULL, `UserWorkPhone` varchar(128) DEFAULT NULL, `UserWorkMobile` varchar(128) DEFAULT NULL, `UserWorkFax` varchar(128) DEFAULT NULL, `UserType` varchar(16) DEFAULT NULL, `UserInfo` text, `UserPgpKey` text, `Account` varchar(128) NOT NULL DEFAULT '', `id` bigint(10) unsigned NOT NULL AUTO_INCREMENT, `DateAdded` datetime DEFAULT NULL, `DateModified` varchar(12) DEFAULT NULL, `EntryID` varchar(64) DEFAULT NULL, PRIMARY KEY (`id`), KEY `iAccount` (`Account`), KEY `UserEmail` (`UserEmail`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `abook_z` -- LOCK TABLES `abook_z` WRITE; /*!40000 ALTER TABLE `abook_z` DISABLE KEYS */; /*!40000 ALTER TABLE `abook_z` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `abookgroup_a` -- DROP TABLE IF EXISTS `abookgroup_a`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `abookgroup_a` ( `GroupName` varchar(32) DEFAULT NULL, `GroupEmail` varchar(64) DEFAULT NULL, `Account` varchar(128) DEFAULT NULL, `id` mediumint(12) NOT NULL AUTO_INCREMENT, PRIMARY KEY (`id`), KEY `iAccount` (`Account`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `abookgroup_a` -- LOCK TABLES `abookgroup_a` WRITE; /*!40000 ALTER TABLE `abookgroup_a` DISABLE KEYS */; /*!40000 ALTER TABLE `abookgroup_a` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `abookgroup_b` -- DROP TABLE IF EXISTS `abookgroup_b`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `abookgroup_b` ( `GroupName` varchar(32) DEFAULT NULL, `GroupEmail` varchar(64) DEFAULT NULL, `Account` varchar(128) DEFAULT NULL, `id` mediumint(12) NOT NULL AUTO_INCREMENT, PRIMARY KEY (`id`), KEY `iAccount` (`Account`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `abookgroup_b` -- LOCK TABLES `abookgroup_b` WRITE; /*!40000 ALTER TABLE `abookgroup_b` DISABLE KEYS */; /*!40000 ALTER TABLE `abookgroup_b` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `abookgroup_c` -- DROP TABLE IF EXISTS `abookgroup_c`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `abookgroup_c` ( `GroupName` varchar(32) DEFAULT NULL, `GroupEmail` varchar(64) DEFAULT NULL, `Account` varchar(128) DEFAULT NULL, `id` mediumint(12) NOT NULL AUTO_INCREMENT, PRIMARY KEY (`id`), KEY `iAccount` (`Account`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `abookgroup_c` -- LOCK TABLES `abookgroup_c` WRITE; /*!40000 ALTER TABLE `abookgroup_c` DISABLE KEYS */; /*!40000 ALTER TABLE `abookgroup_c` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `abookgroup_d` -- DROP TABLE IF EXISTS `abookgroup_d`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `abookgroup_d` ( `GroupName` varchar(32) DEFAULT NULL, `GroupEmail` varchar(64) DEFAULT NULL, `Account` varchar(128) DEFAULT NULL, `id` mediumint(12) NOT NULL AUTO_INCREMENT, PRIMARY KEY (`id`), KEY `iAccount` (`Account`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `abookgroup_d` -- LOCK TABLES `abookgroup_d` WRITE; /*!40000 ALTER TABLE `abookgroup_d` DISABLE KEYS */; /*!40000 ALTER TABLE `abookgroup_d` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `abookgroup_e` -- DROP TABLE IF EXISTS `abookgroup_e`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `abookgroup_e` ( `GroupName` varchar(32) DEFAULT NULL, `GroupEmail` varchar(64) DEFAULT NULL, `Account` varchar(128) DEFAULT NULL, `id` mediumint(12) NOT NULL AUTO_INCREMENT, PRIMARY KEY (`id`), KEY `iAccount` (`Account`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `abookgroup_e` -- LOCK TABLES `abookgroup_e` WRITE; /*!40000 ALTER TABLE `abookgroup_e` DISABLE KEYS */; /*!40000 ALTER TABLE `abookgroup_e` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `abookgroup_f` -- DROP TABLE IF EXISTS `abookgroup_f`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `abookgroup_f` ( `GroupName` varchar(32) DEFAULT NULL, `GroupEmail` varchar(64) DEFAULT NULL, `Account` varchar(128) DEFAULT NULL, `id` mediumint(12) NOT NULL AUTO_INCREMENT, PRIMARY KEY (`id`), KEY `iAccount` (`Account`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `abookgroup_f` -- LOCK TABLES `abookgroup_f` WRITE; /*!40000 ALTER TABLE `abookgroup_f` DISABLE KEYS */; /*!40000 ALTER TABLE `abookgroup_f` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `abookgroup_g` -- DROP TABLE IF EXISTS `abookgroup_g`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `abookgroup_g` ( `GroupName` varchar(32) DEFAULT NULL, `GroupEmail` varchar(64) DEFAULT NULL, `Account` varchar(128) DEFAULT NULL, `id` mediumint(12) NOT NULL AUTO_INCREMENT, PRIMARY KEY (`id`), KEY `iAccount` (`Account`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `abookgroup_g` -- LOCK TABLES `abookgroup_g` WRITE; /*!40000 ALTER TABLE `abookgroup_g` DISABLE KEYS */; /*!40000 ALTER TABLE `abookgroup_g` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `abookgroup_h` -- DROP TABLE IF EXISTS `abookgroup_h`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `abookgroup_h` ( `GroupName` varchar(32) DEFAULT NULL, `GroupEmail` varchar(64) DEFAULT NULL, `Account` varchar(128) DEFAULT NULL, `id` mediumint(12) NOT NULL AUTO_INCREMENT, PRIMARY KEY (`id`), KEY `iAccount` (`Account`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `abookgroup_h` -- LOCK TABLES `abookgroup_h` WRITE; /*!40000 ALTER TABLE `abookgroup_h` DISABLE KEYS */; /*!40000 ALTER TABLE `abookgroup_h` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `abookgroup_i` -- DROP TABLE IF EXISTS `abookgroup_i`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `abookgroup_i` ( `GroupName` varchar(32) DEFAULT NULL, `GroupEmail` varchar(64) DEFAULT NULL, `Account` varchar(128) DEFAULT NULL, `id` mediumint(12) NOT NULL AUTO_INCREMENT, PRIMARY KEY (`id`), KEY `iAccount` (`Account`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `abookgroup_i` -- LOCK TABLES `abookgroup_i` WRITE; /*!40000 ALTER TABLE `abookgroup_i` DISABLE KEYS */; /*!40000 ALTER TABLE `abookgroup_i` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `abookgroup_j` -- DROP TABLE IF EXISTS `abookgroup_j`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `abookgroup_j` ( `GroupName` varchar(32) DEFAULT NULL, `GroupEmail` varchar(64) DEFAULT NULL, `Account` varchar(128) DEFAULT NULL, `id` mediumint(12) NOT NULL AUTO_INCREMENT, PRIMARY KEY (`id`), KEY `iAccount` (`Account`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `abookgroup_j` -- LOCK TABLES `abookgroup_j` WRITE; /*!40000 ALTER TABLE `abookgroup_j` DISABLE KEYS */; /*!40000 ALTER TABLE `abookgroup_j` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `abookgroup_k` -- DROP TABLE IF EXISTS `abookgroup_k`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `abookgroup_k` ( `GroupName` varchar(32) DEFAULT NULL, `GroupEmail` varchar(64) DEFAULT NULL, `Account` varchar(128) DEFAULT NULL, `id` mediumint(12) NOT NULL AUTO_INCREMENT, PRIMARY KEY (`id`), KEY `iAccount` (`Account`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `abookgroup_k` -- LOCK TABLES `abookgroup_k` WRITE; /*!40000 ALTER TABLE `abookgroup_k` DISABLE KEYS */; /*!40000 ALTER TABLE `abookgroup_k` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `abookgroup_l` -- DROP TABLE IF EXISTS `abookgroup_l`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `abookgroup_l` ( `GroupName` varchar(32) DEFAULT NULL, `GroupEmail` varchar(64) DEFAULT NULL, `Account` varchar(128) DEFAULT NULL, `id` mediumint(12) NOT NULL AUTO_INCREMENT, PRIMARY KEY (`id`), KEY `iAccount` (`Account`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `abookgroup_l` -- LOCK TABLES `abookgroup_l` WRITE; /*!40000 ALTER TABLE `abookgroup_l` DISABLE KEYS */; /*!40000 ALTER TABLE `abookgroup_l` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `abookgroup_m` -- DROP TABLE IF EXISTS `abookgroup_m`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `abookgroup_m` ( `GroupName` varchar(32) DEFAULT NULL, `GroupEmail` varchar(64) DEFAULT NULL, `Account` varchar(128) DEFAULT NULL, `id` mediumint(12) NOT NULL AUTO_INCREMENT, PRIMARY KEY (`id`), KEY `iAccount` (`Account`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `abookgroup_m` -- LOCK TABLES `abookgroup_m` WRITE; /*!40000 ALTER TABLE `abookgroup_m` DISABLE KEYS */; /*!40000 ALTER TABLE `abookgroup_m` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `abookgroup_n` -- DROP TABLE IF EXISTS `abookgroup_n`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `abookgroup_n` ( `GroupName` varchar(32) DEFAULT NULL, `GroupEmail` varchar(64) DEFAULT NULL, `Account` varchar(128) DEFAULT NULL, `id` mediumint(12) NOT NULL AUTO_INCREMENT, PRIMARY KEY (`id`), KEY `iAccount` (`Account`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `abookgroup_n` -- LOCK TABLES `abookgroup_n` WRITE; /*!40000 ALTER TABLE `abookgroup_n` DISABLE KEYS */; /*!40000 ALTER TABLE `abookgroup_n` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `abookgroup_o` -- DROP TABLE IF EXISTS `abookgroup_o`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `abookgroup_o` ( `GroupName` varchar(32) DEFAULT NULL, `GroupEmail` varchar(64) DEFAULT NULL, `Account` varchar(128) DEFAULT NULL, `id` mediumint(12) NOT NULL AUTO_INCREMENT, PRIMARY KEY (`id`), KEY `iAccount` (`Account`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `abookgroup_o` -- LOCK TABLES `abookgroup_o` WRITE; /*!40000 ALTER TABLE `abookgroup_o` DISABLE KEYS */; /*!40000 ALTER TABLE `abookgroup_o` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `abookgroup_other` -- DROP TABLE IF EXISTS `abookgroup_other`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `abookgroup_other` ( `GroupName` varchar(32) DEFAULT NULL, `GroupEmail` varchar(64) DEFAULT NULL, `Account` varchar(128) DEFAULT NULL, `id` mediumint(12) NOT NULL AUTO_INCREMENT, PRIMARY KEY (`id`), KEY `iAccount` (`Account`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `abookgroup_other` -- LOCK TABLES `abookgroup_other` WRITE; /*!40000 ALTER TABLE `abookgroup_other` DISABLE KEYS */; /*!40000 ALTER TABLE `abookgroup_other` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `abookgroup_p` -- DROP TABLE IF EXISTS `abookgroup_p`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `abookgroup_p` ( `GroupName` varchar(32) DEFAULT NULL, `GroupEmail` varchar(64) DEFAULT NULL, `Account` varchar(128) DEFAULT NULL, `id` mediumint(12) NOT NULL AUTO_INCREMENT, PRIMARY KEY (`id`), KEY `iAccount` (`Account`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `abookgroup_p` -- LOCK TABLES `abookgroup_p` WRITE; /*!40000 ALTER TABLE `abookgroup_p` DISABLE KEYS */; /*!40000 ALTER TABLE `abookgroup_p` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `abookgroup_q` -- DROP TABLE IF EXISTS `abookgroup_q`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `abookgroup_q` ( `GroupName` varchar(32) DEFAULT NULL, `GroupEmail` varchar(64) DEFAULT NULL, `Account` varchar(128) DEFAULT NULL, `id` mediumint(12) NOT NULL AUTO_INCREMENT, PRIMARY KEY (`id`), KEY `iAccount` (`Account`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `abookgroup_q` -- LOCK TABLES `abookgroup_q` WRITE; /*!40000 ALTER TABLE `abookgroup_q` DISABLE KEYS */; /*!40000 ALTER TABLE `abookgroup_q` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `abookgroup_r` -- DROP TABLE IF EXISTS `abookgroup_r`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `abookgroup_r` ( `GroupName` varchar(32) DEFAULT NULL, `GroupEmail` varchar(64) DEFAULT NULL, `Account` varchar(128) DEFAULT NULL, `id` mediumint(12) NOT NULL AUTO_INCREMENT, PRIMARY KEY (`id`), KEY `iAccount` (`Account`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `abookgroup_r` -- LOCK TABLES `abookgroup_r` WRITE; /*!40000 ALTER TABLE `abookgroup_r` DISABLE KEYS */; /*!40000 ALTER TABLE `abookgroup_r` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `abookgroup_s` -- DROP TABLE IF EXISTS `abookgroup_s`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `abookgroup_s` ( `GroupName` varchar(32) DEFAULT NULL, `GroupEmail` varchar(64) DEFAULT NULL, `Account` varchar(128) DEFAULT NULL, `id` mediumint(12) NOT NULL AUTO_INCREMENT, PRIMARY KEY (`id`), KEY `iAccount` (`Account`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `abookgroup_s` -- LOCK TABLES `abookgroup_s` WRITE; /*!40000 ALTER TABLE `abookgroup_s` DISABLE KEYS */; /*!40000 ALTER TABLE `abookgroup_s` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `abookgroup_shared` -- DROP TABLE IF EXISTS `abookgroup_shared`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `abookgroup_shared` ( `GroupName` varchar(32) DEFAULT NULL, `GroupEmail` varchar(64) DEFAULT NULL, `Account` varchar(128) NOT NULL DEFAULT '', `id` smallint(6) NOT NULL AUTO_INCREMENT, `Domain` varchar(64) DEFAULT NULL, PRIMARY KEY (`id`), KEY `iAccount` (`Account`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `abookgroup_shared` -- LOCK TABLES `abookgroup_shared` WRITE; /*!40000 ALTER TABLE `abookgroup_shared` DISABLE KEYS */; /*!40000 ALTER TABLE `abookgroup_shared` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `abookgroup_t` -- DROP TABLE IF EXISTS `abookgroup_t`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `abookgroup_t` ( `GroupName` varchar(32) DEFAULT NULL, `GroupEmail` varchar(64) DEFAULT NULL, `Account` varchar(128) DEFAULT NULL, `id` mediumint(12) NOT NULL AUTO_INCREMENT, PRIMARY KEY (`id`), KEY `iAccount` (`Account`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `abookgroup_t` -- LOCK TABLES `abookgroup_t` WRITE; /*!40000 ALTER TABLE `abookgroup_t` DISABLE KEYS */; /*!40000 ALTER TABLE `abookgroup_t` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `abookgroup_u` -- DROP TABLE IF EXISTS `abookgroup_u`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `abookgroup_u` ( `GroupName` varchar(32) DEFAULT NULL, `GroupEmail` varchar(64) DEFAULT NULL, `Account` varchar(128) DEFAULT NULL, `id` mediumint(12) NOT NULL AUTO_INCREMENT, PRIMARY KEY (`id`), KEY `iAccount` (`Account`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `abookgroup_u` -- LOCK TABLES `abookgroup_u` WRITE; /*!40000 ALTER TABLE `abookgroup_u` DISABLE KEYS */; /*!40000 ALTER TABLE `abookgroup_u` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `abookgroup_v` -- DROP TABLE IF EXISTS `abookgroup_v`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `abookgroup_v` ( `GroupName` varchar(32) DEFAULT NULL, `GroupEmail` varchar(64) DEFAULT NULL, `Account` varchar(128) DEFAULT NULL, `id` mediumint(12) NOT NULL AUTO_INCREMENT, PRIMARY KEY (`id`), KEY `iAccount` (`Account`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `abookgroup_v` -- LOCK TABLES `abookgroup_v` WRITE; /*!40000 ALTER TABLE `abookgroup_v` DISABLE KEYS */; /*!40000 ALTER TABLE `abookgroup_v` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `abookgroup_w` -- DROP TABLE IF EXISTS `abookgroup_w`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `abookgroup_w` ( `GroupName` varchar(32) DEFAULT NULL, `GroupEmail` varchar(64) DEFAULT NULL, `Account` varchar(128) DEFAULT NULL, `id` mediumint(12) NOT NULL AUTO_INCREMENT, PRIMARY KEY (`id`), KEY `iAccount` (`Account`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `abookgroup_w` -- LOCK TABLES `abookgroup_w` WRITE; /*!40000 ALTER TABLE `abookgroup_w` DISABLE KEYS */; /*!40000 ALTER TABLE `abookgroup_w` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `abookgroup_x` -- DROP TABLE IF EXISTS `abookgroup_x`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `abookgroup_x` ( `GroupName` varchar(32) DEFAULT NULL, `GroupEmail` varchar(64) DEFAULT NULL, `Account` varchar(128) DEFAULT NULL, `id` mediumint(12) NOT NULL AUTO_INCREMENT, PRIMARY KEY (`id`), KEY `iAccount` (`Account`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `abookgroup_x` -- LOCK TABLES `abookgroup_x` WRITE; /*!40000 ALTER TABLE `abookgroup_x` DISABLE KEYS */; /*!40000 ALTER TABLE `abookgroup_x` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `abookgroup_y` -- DROP TABLE IF EXISTS `abookgroup_y`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `abookgroup_y` ( `GroupName` varchar(32) DEFAULT NULL, `GroupEmail` varchar(64) DEFAULT NULL, `Account` varchar(128) DEFAULT NULL, `id` mediumint(12) NOT NULL AUTO_INCREMENT, PRIMARY KEY (`id`), KEY `iAccount` (`Account`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `abookgroup_y` -- LOCK TABLES `abookgroup_y` WRITE; /*!40000 ALTER TABLE `abookgroup_y` DISABLE KEYS */; /*!40000 ALTER TABLE `abookgroup_y` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `abookgroup_z` -- DROP TABLE IF EXISTS `abookgroup_z`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `abookgroup_z` ( `GroupName` varchar(32) DEFAULT NULL, `GroupEmail` varchar(64) DEFAULT NULL, `Account` varchar(128) DEFAULT NULL, `id` mediumint(12) NOT NULL AUTO_INCREMENT, PRIMARY KEY (`id`), KEY `iAccount` (`Account`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `abookgroup_z` -- LOCK TABLES `abookgroup_z` WRITE; /*!40000 ALTER TABLE `abookgroup_z` DISABLE KEYS */; /*!40000 ALTER TABLE `abookgroup_z` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `abookpermissions` -- DROP TABLE IF EXISTS `abookpermissions`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `abookpermissions` ( `AbookID` mediumint(8) unsigned DEFAULT NULL, `Account` varchar(96) NOT NULL DEFAULT '', `Permissions` smallint(1) DEFAULT NULL, `id` bigint(10) unsigned NOT NULL AUTO_INCREMENT, `Type` varchar(6) DEFAULT NULL, `Domain` varchar(64) DEFAULT NULL, PRIMARY KEY (`id`), KEY `iAccount` (`Account`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `abookpermissions` -- LOCK TABLES `abookpermissions` WRITE; /*!40000 ALTER TABLE `abookpermissions` DISABLE KEYS */; /*!40000 ALTER TABLE `abookpermissions` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `accounts` -- DROP TABLE IF EXISTS `accounts`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `accounts` ( `UserAccount` varchar(32) DEFAULT NULL, `Account` varchar(128) NOT NULL DEFAULT '', `Type` varchar(4) DEFAULT NULL, `MailServer` varchar(64) DEFAULT NULL, `UseSSL` tinyint(1) DEFAULT '0' ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `accounts` -- LOCK TABLES `accounts` WRITE; /*!40000 ALTER TABLE `accounts` DISABLE KEYS */; /*!40000 ALTER TABLE `accounts` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `emailmessage_reply` -- DROP TABLE IF EXISTS `emailmessage_reply`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `emailmessage_reply` ( `EmailMessage` longtext, `id` mediumint(8) unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `emailmessage_reply` -- LOCK TABLES `emailmessage_reply` WRITE; /*!40000 ALTER TABLE `emailmessage_reply` DISABLE KEYS */; /*!40000 ALTER TABLE `emailmessage_reply` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `filter` -- DROP TABLE IF EXISTS `filter`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `filter` ( `Header` varchar(32) NOT NULL DEFAULT '', `Value` varchar(255) DEFAULT NULL, `Score` int(2) DEFAULT NULL, `Account` varchar(128) NOT NULL DEFAULT '', `Type` int(1) DEFAULT NULL, `id` mediumint(8) unsigned NOT NULL AUTO_INCREMENT, `Origin` varchar(8) DEFAULT NULL, `Description` varchar(255) DEFAULT NULL, PRIMARY KEY (`id`), KEY `iAccount` (`Account`), KEY `iHeader` (`Header`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `filter` -- LOCK TABLES `filter` WRITE; /*!40000 ALTER TABLE `filter` DISABLE KEYS */; /*!40000 ALTER TABLE `filter` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `log_error` -- DROP TABLE IF EXISTS `log_error`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `log_error` ( `LogMsg` varchar(255) DEFAULT NULL, `LogDate` datetime DEFAULT NULL, `Account` varchar(128) NOT NULL DEFAULT '', `id` bigint(12) unsigned NOT NULL AUTO_INCREMENT, PRIMARY KEY (`id`), KEY `iAccount` (`Account`), KEY `LogDate` (`LogDate`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `log_error` -- LOCK TABLES `log_error` WRITE; /*!40000 ALTER TABLE `log_error` DISABLE KEYS */; /*!40000 ALTER TABLE `log_error` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `log_login` -- DROP TABLE IF EXISTS `log_login`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `log_login` ( `LogMsg` varchar(64) DEFAULT NULL, `LogDate` datetime DEFAULT NULL, `Account` varchar(128) DEFAULT NULL, `id` bigint(12) unsigned NOT NULL AUTO_INCREMENT, PRIMARY KEY (`id`), KEY `iAccount` (`Account`), KEY `LogDate` (`LogDate`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `log_login` -- LOCK TABLES `log_login` WRITE; /*!40000 ALTER TABLE `log_login` DISABLE KEYS */; /*!40000 ALTER TABLE `log_login` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `log_recvmail` -- DROP TABLE IF EXISTS `log_recvmail`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `log_recvmail` ( `LogMsg` varchar(64) DEFAULT NULL, `LogDate` datetime DEFAULT NULL, `Account` varchar(128) NOT NULL DEFAULT '', `id` bigint(12) unsigned NOT NULL AUTO_INCREMENT, PRIMARY KEY (`id`), KEY `iAccount` (`Account`), KEY `LogDate` (`LogDate`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `log_recvmail` -- LOCK TABLES `log_recvmail` WRITE; /*!40000 ALTER TABLE `log_recvmail` DISABLE KEYS */; /*!40000 ALTER TABLE `log_recvmail` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `log_sendmail` -- DROP TABLE IF EXISTS `log_sendmail`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `log_sendmail` ( `LogMsg` varchar(64) DEFAULT NULL, `LogDate` datetime DEFAULT NULL, `Account` varchar(128) NOT NULL DEFAULT '', `id` bigint(12) unsigned NOT NULL AUTO_INCREMENT, PRIMARY KEY (`id`), KEY `iAccount` (`Account`), KEY `LogDate` (`LogDate`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `log_sendmail` -- LOCK TABLES `log_sendmail` WRITE; /*!40000 ALTER TABLE `log_sendmail` DISABLE KEYS */; /*!40000 ALTER TABLE `log_sendmail` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `log_sms` -- DROP TABLE IF EXISTS `log_sms`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `log_sms` ( `LogMsg` varchar(255) DEFAULT NULL, `LogDate` datetime DEFAULT NULL, `Account` varchar(128) NOT NULL DEFAULT '', `id` bigint(12) unsigned NOT NULL AUTO_INCREMENT, PRIMARY KEY (`id`), KEY `iAccount` (`Account`), KEY `LogDate` (`LogDate`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `log_sms` -- LOCK TABLES `log_sms` WRITE; /*!40000 ALTER TABLE `log_sms` DISABLE KEYS */; /*!40000 ALTER TABLE `log_sms` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `log_spam` -- DROP TABLE IF EXISTS `log_spam`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `log_spam` ( `LogMsg` varchar(255) DEFAULT NULL, `LogDate` datetime DEFAULT NULL, `Account` varchar(128) NOT NULL DEFAULT '', `id` bigint(12) unsigned NOT NULL AUTO_INCREMENT, PRIMARY KEY (`id`), KEY `iAccount` (`Account`), KEY `LogDate` (`LogDate`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `log_spam` -- LOCK TABLES `log_spam` WRITE; /*!40000 ALTER TABLE `log_spam` DISABLE KEYS */; /*!40000 ALTER TABLE `log_spam` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `log_virus` -- DROP TABLE IF EXISTS `log_virus`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `log_virus` ( `LogMsg` varchar(255) DEFAULT NULL, `LogDate` datetime DEFAULT NULL, `Account` varchar(128) NOT NULL DEFAULT '', `id` bigint(12) unsigned NOT NULL AUTO_INCREMENT, PRIMARY KEY (`id`), KEY `iAccount` (`Account`), KEY `LogDate` (`LogDate`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `log_virus` -- LOCK TABLES `log_virus` WRITE; /*!40000 ALTER TABLE `log_virus` DISABLE KEYS */; /*!40000 ALTER TABLE `log_virus` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `mailsort_a` -- DROP TABLE IF EXISTS `mailsort_a`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `mailsort_a` ( `EmailAddress` varchar(64) DEFAULT NULL, `EmailSubject` varchar(64) DEFAULT NULL, `EmailFolder` varchar(32) DEFAULT NULL, `Account` varchar(128) DEFAULT NULL, KEY `iAccount` (`Account`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `mailsort_a` -- LOCK TABLES `mailsort_a` WRITE; /*!40000 ALTER TABLE `mailsort_a` DISABLE KEYS */; /*!40000 ALTER TABLE `mailsort_a` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `mailsort_b` -- DROP TABLE IF EXISTS `mailsort_b`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `mailsort_b` ( `EmailAddress` varchar(64) DEFAULT NULL, `EmailSubject` varchar(64) DEFAULT NULL, `EmailFolder` varchar(32) DEFAULT NULL, `Account` varchar(128) DEFAULT NULL, KEY `iAccount` (`Account`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `mailsort_b` -- LOCK TABLES `mailsort_b` WRITE; /*!40000 ALTER TABLE `mailsort_b` DISABLE KEYS */; /*!40000 ALTER TABLE `mailsort_b` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `mailsort_c` -- DROP TABLE IF EXISTS `mailsort_c`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `mailsort_c` ( `EmailAddress` varchar(64) DEFAULT NULL, `EmailSubject` varchar(64) DEFAULT NULL, `EmailFolder` varchar(32) DEFAULT NULL, `Account` varchar(128) DEFAULT NULL, KEY `iAccount` (`Account`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `mailsort_c` -- LOCK TABLES `mailsort_c` WRITE; /*!40000 ALTER TABLE `mailsort_c` DISABLE KEYS */; /*!40000 ALTER TABLE `mailsort_c` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `mailsort_d` -- DROP TABLE IF EXISTS `mailsort_d`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `mailsort_d` ( `EmailAddress` varchar(64) DEFAULT NULL, `EmailSubject` varchar(64) DEFAULT NULL, `EmailFolder` varchar(32) DEFAULT NULL, `Account` varchar(128) DEFAULT NULL, KEY `iAccount` (`Account`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `mailsort_d` -- LOCK TABLES `mailsort_d` WRITE; /*!40000 ALTER TABLE `mailsort_d` DISABLE KEYS */; /*!40000 ALTER TABLE `mailsort_d` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `mailsort_e` -- DROP TABLE IF EXISTS `mailsort_e`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `mailsort_e` ( `EmailAddress` varchar(64) DEFAULT NULL, `EmailSubject` varchar(64) DEFAULT NULL, `EmailFolder` varchar(32) DEFAULT NULL, `Account` varchar(128) DEFAULT NULL, KEY `iAccount` (`Account`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `mailsort_e` -- LOCK TABLES `mailsort_e` WRITE; /*!40000 ALTER TABLE `mailsort_e` DISABLE KEYS */; /*!40000 ALTER TABLE `mailsort_e` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `mailsort_f` -- DROP TABLE IF EXISTS `mailsort_f`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `mailsort_f` ( `EmailAddress` varchar(64) DEFAULT NULL, `EmailSubject` varchar(64) DEFAULT NULL, `EmailFolder` varchar(32) DEFAULT NULL, `Account` varchar(128) DEFAULT NULL, KEY `iAccount` (`Account`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `mailsort_f` -- LOCK TABLES `mailsort_f` WRITE; /*!40000 ALTER TABLE `mailsort_f` DISABLE KEYS */; /*!40000 ALTER TABLE `mailsort_f` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `mailsort_g` -- DROP TABLE IF EXISTS `mailsort_g`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `mailsort_g` ( `EmailAddress` varchar(64) DEFAULT NULL, `EmailSubject` varchar(64) DEFAULT NULL, `EmailFolder` varchar(32) DEFAULT NULL, `Account` varchar(128) DEFAULT NULL, KEY `iAccount` (`Account`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `mailsort_g` -- LOCK TABLES `mailsort_g` WRITE; /*!40000 ALTER TABLE `mailsort_g` DISABLE KEYS */; /*!40000 ALTER TABLE `mailsort_g` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `mailsort_h` -- DROP TABLE IF EXISTS `mailsort_h`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `mailsort_h` ( `EmailAddress` varchar(64) DEFAULT NULL, `EmailSubject` varchar(64) DEFAULT NULL, `EmailFolder` varchar(32) DEFAULT NULL, `Account` varchar(128) DEFAULT NULL, KEY `iAccount` (`Account`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `mailsort_h` -- LOCK TABLES `mailsort_h` WRITE; /*!40000 ALTER TABLE `mailsort_h` DISABLE KEYS */; /*!40000 ALTER TABLE `mailsort_h` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `mailsort_i` -- DROP TABLE IF EXISTS `mailsort_i`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `mailsort_i` ( `EmailAddress` varchar(64) DEFAULT NULL, `EmailSubject` varchar(64) DEFAULT NULL, `EmailFolder` varchar(32) DEFAULT NULL, `Account` varchar(128) DEFAULT NULL, KEY `iAccount` (`Account`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `mailsort_i` -- LOCK TABLES `mailsort_i` WRITE; /*!40000 ALTER TABLE `mailsort_i` DISABLE KEYS */; /*!40000 ALTER TABLE `mailsort_i` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `mailsort_j` -- DROP TABLE IF EXISTS `mailsort_j`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `mailsort_j` ( `EmailAddress` varchar(64) DEFAULT NULL, `EmailSubject` varchar(64) DEFAULT NULL, `EmailFolder` varchar(32) DEFAULT NULL, `Account` varchar(128) DEFAULT NULL, KEY `iAccount` (`Account`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `mailsort_j` -- LOCK TABLES `mailsort_j` WRITE; /*!40000 ALTER TABLE `mailsort_j` DISABLE KEYS */; /*!40000 ALTER TABLE `mailsort_j` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `mailsort_k` -- DROP TABLE IF EXISTS `mailsort_k`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `mailsort_k` ( `EmailAddress` varchar(64) DEFAULT NULL, `EmailSubject` varchar(64) DEFAULT NULL, `EmailFolder` varchar(32) DEFAULT NULL, `Account` varchar(128) DEFAULT NULL, KEY `iAccount` (`Account`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `mailsort_k` -- LOCK TABLES `mailsort_k` WRITE; /*!40000 ALTER TABLE `mailsort_k` DISABLE KEYS */; /*!40000 ALTER TABLE `mailsort_k` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `mailsort_l` -- DROP TABLE IF EXISTS `mailsort_l`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `mailsort_l` ( `EmailAddress` varchar(64) DEFAULT NULL, `EmailSubject` varchar(64) DEFAULT NULL, `EmailFolder` varchar(32) DEFAULT NULL, `Account` varchar(128) DEFAULT NULL, KEY `iAccount` (`Account`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `mailsort_l` -- LOCK TABLES `mailsort_l` WRITE; /*!40000 ALTER TABLE `mailsort_l` DISABLE KEYS */; /*!40000 ALTER TABLE `mailsort_l` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `mailsort_m` -- DROP TABLE IF EXISTS `mailsort_m`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `mailsort_m` ( `EmailAddress` varchar(64) DEFAULT NULL, `EmailSubject` varchar(64) DEFAULT NULL, `EmailFolder` varchar(32) DEFAULT NULL, `Account` varchar(128) DEFAULT NULL, KEY `iAccount` (`Account`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `mailsort_m` -- LOCK TABLES `mailsort_m` WRITE; /*!40000 ALTER TABLE `mailsort_m` DISABLE KEYS */; /*!40000 ALTER TABLE `mailsort_m` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `mailsort_n` -- DROP TABLE IF EXISTS `mailsort_n`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `mailsort_n` ( `EmailAddress` varchar(64) DEFAULT NULL, `EmailSubject` varchar(64) DEFAULT NULL, `EmailFolder` varchar(32) DEFAULT NULL, `Account` varchar(128) DEFAULT NULL, KEY `iAccount` (`Account`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `mailsort_n` -- LOCK TABLES `mailsort_n` WRITE; /*!40000 ALTER TABLE `mailsort_n` DISABLE KEYS */; /*!40000 ALTER TABLE `mailsort_n` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `mailsort_o` -- DROP TABLE IF EXISTS `mailsort_o`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `mailsort_o` ( `EmailAddress` varchar(64) DEFAULT NULL, `EmailSubject` varchar(64) DEFAULT NULL, `EmailFolder` varchar(32) DEFAULT NULL, `Account` varchar(128) DEFAULT NULL, KEY `iAccount` (`Account`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `mailsort_o` -- LOCK TABLES `mailsort_o` WRITE; /*!40000 ALTER TABLE `mailsort_o` DISABLE KEYS */; /*!40000 ALTER TABLE `mailsort_o` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `mailsort_other` -- DROP TABLE IF EXISTS `mailsort_other`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `mailsort_other` ( `EmailAddress` varchar(64) DEFAULT NULL, `EmailSubject` varchar(64) DEFAULT NULL, `EmailFolder` varchar(32) DEFAULT NULL, `Account` varchar(128) DEFAULT NULL, KEY `iAccount` (`Account`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `mailsort_other` -- LOCK TABLES `mailsort_other` WRITE; /*!40000 ALTER TABLE `mailsort_other` DISABLE KEYS */; /*!40000 ALTER TABLE `mailsort_other` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `mailsort_p` -- DROP TABLE IF EXISTS `mailsort_p`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `mailsort_p` ( `EmailAddress` varchar(64) DEFAULT NULL, `EmailSubject` varchar(64) DEFAULT NULL, `EmailFolder` varchar(32) DEFAULT NULL, `Account` varchar(128) DEFAULT NULL, KEY `iAccount` (`Account`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `mailsort_p` -- LOCK TABLES `mailsort_p` WRITE; /*!40000 ALTER TABLE `mailsort_p` DISABLE KEYS */; /*!40000 ALTER TABLE `mailsort_p` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `mailsort_q` -- DROP TABLE IF EXISTS `mailsort_q`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `mailsort_q` ( `EmailAddress` varchar(64) DEFAULT NULL, `EmailSubject` varchar(64) DEFAULT NULL, `EmailFolder` varchar(32) DEFAULT NULL, `Account` varchar(128) DEFAULT NULL, KEY `iAccount` (`Account`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `mailsort_q` -- LOCK TABLES `mailsort_q` WRITE; /*!40000 ALTER TABLE `mailsort_q` DISABLE KEYS */; /*!40000 ALTER TABLE `mailsort_q` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `mailsort_r` -- DROP TABLE IF EXISTS `mailsort_r`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `mailsort_r` ( `EmailAddress` varchar(64) DEFAULT NULL, `EmailSubject` varchar(64) DEFAULT NULL, `EmailFolder` varchar(32) DEFAULT NULL, `Account` varchar(128) DEFAULT NULL, KEY `iAccount` (`Account`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `mailsort_r` -- LOCK TABLES `mailsort_r` WRITE; /*!40000 ALTER TABLE `mailsort_r` DISABLE KEYS */; /*!40000 ALTER TABLE `mailsort_r` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `mailsort_s` -- DROP TABLE IF EXISTS `mailsort_s`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `mailsort_s` ( `EmailAddress` varchar(64) DEFAULT NULL, `EmailSubject` varchar(64) DEFAULT NULL, `EmailFolder` varchar(32) DEFAULT NULL, `Account` varchar(128) DEFAULT NULL, KEY `iAccount` (`Account`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `mailsort_s` -- LOCK TABLES `mailsort_s` WRITE; /*!40000 ALTER TABLE `mailsort_s` DISABLE KEYS */; /*!40000 ALTER TABLE `mailsort_s` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `mailsort_t` -- DROP TABLE IF EXISTS `mailsort_t`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `mailsort_t` ( `EmailAddress` varchar(64) DEFAULT NULL, `EmailSubject` varchar(64) DEFAULT NULL, `EmailFolder` varchar(32) DEFAULT NULL, `Account` varchar(128) DEFAULT NULL, KEY `iAccount` (`Account`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `mailsort_t` -- LOCK TABLES `mailsort_t` WRITE; /*!40000 ALTER TABLE `mailsort_t` DISABLE KEYS */; /*!40000 ALTER TABLE `mailsort_t` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `mailsort_u` -- DROP TABLE IF EXISTS `mailsort_u`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `mailsort_u` ( `EmailAddress` varchar(64) DEFAULT NULL, `EmailSubject` varchar(64) DEFAULT NULL, `EmailFolder` varchar(32) DEFAULT NULL, `Account` varchar(128) DEFAULT NULL, KEY `iAccount` (`Account`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `mailsort_u` -- LOCK TABLES `mailsort_u` WRITE; /*!40000 ALTER TABLE `mailsort_u` DISABLE KEYS */; /*!40000 ALTER TABLE `mailsort_u` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `mailsort_v` -- DROP TABLE IF EXISTS `mailsort_v`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `mailsort_v` ( `EmailAddress` varchar(64) DEFAULT NULL, `EmailSubject` varchar(64) DEFAULT NULL, `EmailFolder` varchar(32) DEFAULT NULL, `Account` varchar(128) DEFAULT NULL, KEY `iAccount` (`Account`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `mailsort_v` -- LOCK TABLES `mailsort_v` WRITE; /*!40000 ALTER TABLE `mailsort_v` DISABLE KEYS */; /*!40000 ALTER TABLE `mailsort_v` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `mailsort_w` -- DROP TABLE IF EXISTS `mailsort_w`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `mailsort_w` ( `EmailAddress` varchar(64) DEFAULT NULL, `EmailSubject` varchar(64) DEFAULT NULL, `EmailFolder` varchar(32) DEFAULT NULL, `Account` varchar(128) DEFAULT NULL, KEY `iAccount` (`Account`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `mailsort_w` -- LOCK TABLES `mailsort_w` WRITE; /*!40000 ALTER TABLE `mailsort_w` DISABLE KEYS */; /*!40000 ALTER TABLE `mailsort_w` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `mailsort_x` -- DROP TABLE IF EXISTS `mailsort_x`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `mailsort_x` ( `EmailAddress` varchar(64) DEFAULT NULL, `EmailSubject` varchar(64) DEFAULT NULL, `EmailFolder` varchar(32) DEFAULT NULL, `Account` varchar(128) DEFAULT NULL, KEY `iAccount` (`Account`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `mailsort_x` -- LOCK TABLES `mailsort_x` WRITE; /*!40000 ALTER TABLE `mailsort_x` DISABLE KEYS */; /*!40000 ALTER TABLE `mailsort_x` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `mailsort_y` -- DROP TABLE IF EXISTS `mailsort_y`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `mailsort_y` ( `EmailAddress` varchar(64) DEFAULT NULL, `EmailSubject` varchar(64) DEFAULT NULL, `EmailFolder` varchar(32) DEFAULT NULL, `Account` varchar(128) DEFAULT NULL, KEY `iAccount` (`Account`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `mailsort_y` -- LOCK TABLES `mailsort_y` WRITE; /*!40000 ALTER TABLE `mailsort_y` DISABLE KEYS */; /*!40000 ALTER TABLE `mailsort_y` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `mailsort_z` -- DROP TABLE IF EXISTS `mailsort_z`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `mailsort_z` ( `EmailAddress` varchar(64) DEFAULT NULL, `EmailSubject` varchar(64) DEFAULT NULL, `EmailFolder` varchar(32) DEFAULT NULL, `Account` varchar(128) DEFAULT NULL, KEY `iAccount` (`Account`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `mailsort_z` -- LOCK TABLES `mailsort_z` WRITE; /*!40000 ALTER TABLE `mailsort_z` DISABLE KEYS */; /*!40000 ALTER TABLE `mailsort_z` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `mailthreads` -- DROP TABLE IF EXISTS `mailthreads`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `mailthreads` ( `MessageID` varchar(128) DEFAULT NULL, `ThreadID` varchar(128) DEFAULT NULL, `id` mediumint(8) unsigned NOT NULL AUTO_INCREMENT, `Account` varchar(128) DEFAULT NULL, `ParentID` mediumint(8) unsigned DEFAULT NULL, PRIMARY KEY (`id`), KEY `MessageID` (`MessageID`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `mailthreads` -- LOCK TABLES `mailthreads` WRITE; /*!40000 ALTER TABLE `mailthreads` DISABLE KEYS */; /*!40000 ALTER TABLE `mailthreads` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `spellcheck` -- DROP TABLE IF EXISTS `spellcheck`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `spellcheck` ( `Account` varchar(128) NOT NULL DEFAULT '', `Word` varchar(40) DEFAULT NULL, `SUnique` varchar(10) DEFAULT '0', `id` bigint(12) unsigned NOT NULL AUTO_INCREMENT, PRIMARY KEY (`id`), KEY `iAccount` (`Account`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `spellcheck` -- LOCK TABLES `spellcheck` WRITE; /*!40000 ALTER TABLE `spellcheck` DISABLE KEYS */; /*!40000 ALTER TABLE `spellcheck` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `userpermissions` -- DROP TABLE IF EXISTS `userpermissions`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `userpermissions` ( `Account` varchar(128) DEFAULT NULL, `DateAdded` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, `id` mediumint(10) unsigned NOT NULL AUTO_INCREMENT, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `userpermissions` -- LOCK TABLES `userpermissions` WRITE; /*!40000 ALTER TABLE `userpermissions` DISABLE KEYS */; /*!40000 ALTER TABLE `userpermissions` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `users` -- DROP TABLE IF EXISTS `users`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `users` ( `Account` varchar(128) NOT NULL DEFAULT '', `PasswordQuestion` varchar(64) DEFAULT NULL, `OtherEmail` varchar(128) DEFAULT NULL, `FirstName` varchar(96) DEFAULT NULL, `LastName` varchar(96) DEFAULT NULL, `BirthDay` smallint(2) DEFAULT NULL, `BirthMonth` smallint(2) DEFAULT NULL, `BirthYear` smallint(4) DEFAULT NULL, `Gender` char(1) DEFAULT NULL, `Industry` varchar(42) DEFAULT NULL, `Occupation` varchar(40) DEFAULT NULL, `Address` varchar(96) DEFAULT NULL, `City` varchar(96) DEFAULT NULL, `PostCode` varchar(36) DEFAULT NULL, `State` varchar(24) DEFAULT NULL, `Country` varchar(32) DEFAULT NULL, `DateModified` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, `DateCreate` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00', `id` mediumint(8) unsigned NOT NULL AUTO_INCREMENT, `TelHome` varchar(16) DEFAULT NULL, `FaxHome` varchar(16) DEFAULT NULL, `TelWork` varchar(16) DEFAULT NULL, `FaxWork` varchar(16) DEFAULT NULL, `TelMobile` varchar(16) DEFAULT NULL, `TelPager` varchar(16) DEFAULT NULL, `Ugroup` varchar(16) DEFAULT NULL, `UserStatus` int(1) DEFAULT NULL, `MailDir` varchar(255) DEFAULT NULL, `Forward` varchar(128) DEFAULT NULL, `AutoReply` text, `UserQuota` mediumint(8) unsigned DEFAULT NULL, PRIMARY KEY (`id`), KEY `iAccount` (`Account`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `users` -- LOCK TABLES `users` WRITE; /*!40000 ALTER TABLE `users` DISABLE KEYS */; /*!40000 ALTER TABLE `users` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `usersession` -- DROP TABLE IF EXISTS `usersession`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `usersession` ( `Account` varchar(128) NOT NULL DEFAULT '', `Password` varchar(64) DEFAULT NULL, `SessionID` varchar(64) NOT NULL DEFAULT '', `LastLogin` int(10) unsigned DEFAULT NULL, `PasswordMD5` varchar(64) DEFAULT NULL, `SessionData` text, `ChangePass` int(1) DEFAULT NULL, PRIMARY KEY (`Account`), KEY `iAccount` (`SessionID`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `usersession` -- LOCK TABLES `usersession` WRITE; /*!40000 ALTER TABLE `usersession` DISABLE KEYS */; /*!40000 ALTER TABLE `usersession` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `usersettings_a` -- DROP TABLE IF EXISTS `usersettings_a`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `usersettings_a` ( `Account` varchar(128) NOT NULL DEFAULT '', `MboxOrder` varchar(12) DEFAULT NULL, `RealName` varchar(40) DEFAULT NULL, `Refresh` smallint(5) DEFAULT NULL, `EmailHeaders` varchar(8) DEFAULT NULL, `TimeZone` varchar(32) DEFAULT NULL, `MsgNum` varchar(4) DEFAULT NULL, `EmptyTrash` smallint(1) DEFAULT NULL, `NewWindow` smallint(1) DEFAULT NULL, `HtmlEditor` smallint(1) DEFAULT NULL, `ReplyTo` varchar(255) DEFAULT NULL, `Signature` text, `FontStyle` varchar(21) DEFAULT NULL, `LeaveMsgs` smallint(1) DEFAULT NULL, `LoginType` varchar(12) DEFAULT NULL, `Advanced` smallint(1) DEFAULT NULL, `PrimaryColor` varchar(7) DEFAULT NULL, `SecondaryColor` varchar(7) DEFAULT NULL, `LinkColor` varchar(7) DEFAULT NULL, `VlinkColor` varchar(7) DEFAULT NULL, `BgColor` varchar(7) DEFAULT NULL, `TextColor` varchar(7) DEFAULT NULL, `HeaderColor` varchar(7) DEFAULT NULL, `HeadColor` varchar(7) DEFAULT NULL, `MailType` varchar(4) DEFAULT NULL, `ThirdColor` varchar(7) DEFAULT NULL, `Mode` varchar(4) DEFAULT NULL, `Service` smallint(1) DEFAULT NULL, `Language` varchar(10) DEFAULT NULL, `StartPage` char(1) DEFAULT NULL, `OnColor` varchar(7) DEFAULT NULL, `OffColor` varchar(7) DEFAULT NULL, `TextHeadColor` varchar(7) DEFAULT NULL, `SelectColor` varchar(7) DEFAULT NULL, `TopBg` varchar(24) DEFAULT NULL, `AutoTrash` tinyint(1) DEFAULT NULL, `MailServer` varchar(64) DEFAULT NULL, `MailAuth` tinyint(1) DEFAULT NULL, `PGPenable` smallint(1) DEFAULT NULL, `PGPappend` smallint(1) DEFAULT NULL, `PGPsign` smallint(1) DEFAULT NULL, `SpamTreatment` varchar(10) DEFAULT NULL, `AbookTrusted` smallint(1) DEFAULT NULL, `AntiVirus` smallint(1) DEFAULT NULL, `PassCode` varchar(64) DEFAULT NULL, `DateFormat` varchar(8) DEFAULT NULL, `TimeFormat` varchar(8) DEFAULT NULL, `AutoComplete` smallint(1) DEFAULT NULL, `EmailEncoding` varchar(16) DEFAULT NULL, `DisplayImages` smallint(1) DEFAULT NULL, `Ajax` char(1) DEFAULT NULL, `UseSSL` tinyint(1) DEFAULT '0', PRIMARY KEY (`Account`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `usersettings_a` -- LOCK TABLES `usersettings_a` WRITE; /*!40000 ALTER TABLE `usersettings_a` DISABLE KEYS */; /*!40000 ALTER TABLE `usersettings_a` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `usersettings_b` -- DROP TABLE IF EXISTS `usersettings_b`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `usersettings_b` ( `Account` varchar(128) NOT NULL DEFAULT '', `MboxOrder` varchar(12) DEFAULT NULL, `RealName` varchar(40) DEFAULT NULL, `Refresh` smallint(5) DEFAULT NULL, `EmailHeaders` varchar(8) DEFAULT NULL, `TimeZone` varchar(32) DEFAULT NULL, `MsgNum` varchar(4) DEFAULT NULL, `EmptyTrash` smallint(1) DEFAULT NULL, `NewWindow` smallint(1) DEFAULT NULL, `HtmlEditor` smallint(1) DEFAULT NULL, `ReplyTo` varchar(255) DEFAULT NULL, `Signature` text, `FontStyle` varchar(21) DEFAULT NULL, `LeaveMsgs` smallint(1) DEFAULT NULL, `LoginType` varchar(12) DEFAULT NULL, `Advanced` smallint(1) DEFAULT NULL, `PrimaryColor` varchar(7) DEFAULT NULL, `SecondaryColor` varchar(7) DEFAULT NULL, `LinkColor` varchar(7) DEFAULT NULL, `VlinkColor` varchar(7) DEFAULT NULL, `BgColor` varchar(7) DEFAULT NULL, `TextColor` varchar(7) DEFAULT NULL, `HeaderColor` varchar(7) DEFAULT NULL, `HeadColor` varchar(7) DEFAULT NULL, `MailType` varchar(4) DEFAULT NULL, `ThirdColor` varchar(7) DEFAULT NULL, `Mode` varchar(4) DEFAULT NULL, `Service` smallint(1) DEFAULT NULL, `Language` varchar(10) DEFAULT NULL, `StartPage` char(1) DEFAULT NULL, `OnColor` varchar(7) DEFAULT NULL, `OffColor` varchar(7) DEFAULT NULL, `TextHeadColor` varchar(7) DEFAULT NULL, `SelectColor` varchar(7) DEFAULT NULL, `TopBg` varchar(24) DEFAULT NULL, `AutoTrash` tinyint(1) DEFAULT NULL, `MailServer` varchar(64) DEFAULT NULL, `MailAuth` tinyint(1) DEFAULT NULL, `PGPenable` smallint(1) DEFAULT NULL, `PGPappend` smallint(1) DEFAULT NULL, `PGPsign` smallint(1) DEFAULT NULL, `SpamTreatment` varchar(10) DEFAULT NULL, `AbookTrusted` smallint(1) DEFAULT NULL, `AntiVirus` smallint(1) DEFAULT NULL, `PassCode` varchar(64) DEFAULT NULL, `DateFormat` varchar(8) DEFAULT NULL, `TimeFormat` varchar(8) DEFAULT NULL, `AutoComplete` smallint(1) DEFAULT NULL, `EmailEncoding` varchar(16) DEFAULT NULL, `DisplayImages` smallint(1) DEFAULT NULL, `Ajax` char(1) DEFAULT NULL, `UseSSL` tinyint(1) DEFAULT '0', PRIMARY KEY (`Account`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `usersettings_b` -- LOCK TABLES `usersettings_b` WRITE; /*!40000 ALTER TABLE `usersettings_b` DISABLE KEYS */; /*!40000 ALTER TABLE `usersettings_b` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `usersettings_c` -- DROP TABLE IF EXISTS `usersettings_c`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `usersettings_c` ( `Account` varchar(128) NOT NULL DEFAULT '', `MboxOrder` varchar(12) DEFAULT NULL, `RealName` varchar(40) DEFAULT NULL, `Refresh` smallint(5) DEFAULT NULL, `EmailHeaders` varchar(8) DEFAULT NULL, `TimeZone` varchar(32) DEFAULT NULL, `MsgNum` varchar(4) DEFAULT NULL, `EmptyTrash` smallint(1) DEFAULT NULL, `NewWindow` smallint(1) DEFAULT NULL, `HtmlEditor` smallint(1) DEFAULT NULL, `ReplyTo` varchar(255) DEFAULT NULL, `Signature` text, `FontStyle` varchar(21) DEFAULT NULL, `LeaveMsgs` smallint(1) DEFAULT NULL, `LoginType` varchar(12) DEFAULT NULL, `Advanced` smallint(1) DEFAULT NULL, `PrimaryColor` varchar(7) DEFAULT NULL, `SecondaryColor` varchar(7) DEFAULT NULL, `LinkColor` varchar(7) DEFAULT NULL, `VlinkColor` varchar(7) DEFAULT NULL, `BgColor` varchar(7) DEFAULT NULL, `TextColor` varchar(7) DEFAULT NULL, `HeaderColor` varchar(7) DEFAULT NULL, `HeadColor` varchar(7) DEFAULT NULL, `MailType` varchar(4) DEFAULT NULL, `ThirdColor` varchar(7) DEFAULT NULL, `Mode` varchar(4) DEFAULT NULL, `Service` smallint(1) DEFAULT NULL, `Language` varchar(10) DEFAULT NULL, `StartPage` char(1) DEFAULT NULL, `OnColor` varchar(7) DEFAULT NULL, `OffColor` varchar(7) DEFAULT NULL, `TextHeadColor` varchar(7) DEFAULT NULL, `SelectColor` varchar(7) DEFAULT NULL, `TopBg` varchar(24) DEFAULT NULL, `AutoTrash` tinyint(1) DEFAULT NULL, `MailServer` varchar(64) DEFAULT NULL, `MailAuth` tinyint(1) DEFAULT NULL, `PGPenable` smallint(1) DEFAULT NULL, `PGPappend` smallint(1) DEFAULT NULL, `PGPsign` smallint(1) DEFAULT NULL, `SpamTreatment` varchar(10) DEFAULT NULL, `AbookTrusted` smallint(1) DEFAULT NULL, `AntiVirus` smallint(1) DEFAULT NULL, `PassCode` varchar(64) DEFAULT NULL, `DateFormat` varchar(8) DEFAULT NULL, `TimeFormat` varchar(8) DEFAULT NULL, `AutoComplete` smallint(1) DEFAULT NULL, `EmailEncoding` varchar(16) DEFAULT NULL, `DisplayImages` smallint(1) DEFAULT NULL, `Ajax` char(1) DEFAULT NULL, `UseSSL` tinyint(1) DEFAULT '0', PRIMARY KEY (`Account`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `usersettings_c` -- LOCK TABLES `usersettings_c` WRITE; /*!40000 ALTER TABLE `usersettings_c` DISABLE KEYS */; /*!40000 ALTER TABLE `usersettings_c` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `usersettings_d` -- DROP TABLE IF EXISTS `usersettings_d`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `usersettings_d` ( `Account` varchar(128) NOT NULL DEFAULT '', `MboxOrder` varchar(12) DEFAULT NULL, `RealName` varchar(40) DEFAULT NULL, `Refresh` smallint(5) DEFAULT NULL, `EmailHeaders` varchar(8) DEFAULT NULL, `TimeZone` varchar(32) DEFAULT NULL, `MsgNum` varchar(4) DEFAULT NULL, `EmptyTrash` smallint(1) DEFAULT NULL, `NewWindow` smallint(1) DEFAULT NULL, `HtmlEditor` smallint(1) DEFAULT NULL, `ReplyTo` varchar(255) DEFAULT NULL, `Signature` text, `FontStyle` varchar(21) DEFAULT NULL, `LeaveMsgs` smallint(1) DEFAULT NULL, `LoginType` varchar(12) DEFAULT NULL, `Advanced` smallint(1) DEFAULT NULL, `PrimaryColor` varchar(7) DEFAULT NULL, `SecondaryColor` varchar(7) DEFAULT NULL, `LinkColor` varchar(7) DEFAULT NULL, `VlinkColor` varchar(7) DEFAULT NULL, `BgColor` varchar(7) DEFAULT NULL, `TextColor` varchar(7) DEFAULT NULL, `HeaderColor` varchar(7) DEFAULT NULL, `HeadColor` varchar(7) DEFAULT NULL, `MailType` varchar(4) DEFAULT NULL, `ThirdColor` varchar(7) DEFAULT NULL, `Mode` varchar(4) DEFAULT NULL, `Service` smallint(1) DEFAULT NULL, `Language` varchar(10) DEFAULT NULL, `StartPage` char(1) DEFAULT NULL, `OnColor` varchar(7) DEFAULT NULL, `OffColor` varchar(7) DEFAULT NULL, `TextHeadColor` varchar(7) DEFAULT NULL, `SelectColor` varchar(7) DEFAULT NULL, `TopBg` varchar(24) DEFAULT NULL, `AutoTrash` tinyint(1) DEFAULT NULL, `MailServer` varchar(64) DEFAULT NULL, `MailAuth` tinyint(1) DEFAULT NULL, `PGPenable` smallint(1) DEFAULT NULL, `PGPappend` smallint(1) DEFAULT NULL, `PGPsign` smallint(1) DEFAULT NULL, `SpamTreatment` varchar(10) DEFAULT NULL, `AbookTrusted` smallint(1) DEFAULT NULL, `AntiVirus` smallint(1) DEFAULT NULL, `PassCode` varchar(64) DEFAULT NULL, `DateFormat` varchar(8) DEFAULT NULL, `TimeFormat` varchar(8) DEFAULT NULL, `AutoComplete` smallint(1) DEFAULT NULL, `EmailEncoding` varchar(16) DEFAULT NULL, `DisplayImages` smallint(1) DEFAULT NULL, `Ajax` char(1) DEFAULT NULL, `UseSSL` tinyint(1) DEFAULT '0', PRIMARY KEY (`Account`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `usersettings_d` -- LOCK TABLES `usersettings_d` WRITE; /*!40000 ALTER TABLE `usersettings_d` DISABLE KEYS */; /*!40000 ALTER TABLE `usersettings_d` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `usersettings_e` -- DROP TABLE IF EXISTS `usersettings_e`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `usersettings_e` ( `Account` varchar(128) NOT NULL DEFAULT '', `MboxOrder` varchar(12) DEFAULT NULL, `RealName` varchar(40) DEFAULT NULL, `Refresh` smallint(5) DEFAULT NULL, `EmailHeaders` varchar(8) DEFAULT NULL, `TimeZone` varchar(32) DEFAULT NULL, `MsgNum` varchar(4) DEFAULT NULL, `EmptyTrash` smallint(1) DEFAULT NULL, `NewWindow` smallint(1) DEFAULT NULL, `HtmlEditor` smallint(1) DEFAULT NULL, `ReplyTo` varchar(255) DEFAULT NULL, `Signature` text, `FontStyle` varchar(21) DEFAULT NULL, `LeaveMsgs` smallint(1) DEFAULT NULL, `LoginType` varchar(12) DEFAULT NULL, `Advanced` smallint(1) DEFAULT NULL, `PrimaryColor` varchar(7) DEFAULT NULL, `SecondaryColor` varchar(7) DEFAULT NULL, `LinkColor` varchar(7) DEFAULT NULL, `VlinkColor` varchar(7) DEFAULT NULL, `BgColor` varchar(7) DEFAULT NULL, `TextColor` varchar(7) DEFAULT NULL, `HeaderColor` varchar(7) DEFAULT NULL, `HeadColor` varchar(7) DEFAULT NULL, `MailType` varchar(4) DEFAULT NULL, `ThirdColor` varchar(7) DEFAULT NULL, `Mode` varchar(4) DEFAULT NULL, `Service` smallint(1) DEFAULT NULL, `Language` varchar(10) DEFAULT NULL, `StartPage` char(1) DEFAULT NULL, `OnColor` varchar(7) DEFAULT NULL, `OffColor` varchar(7) DEFAULT NULL, `TextHeadColor` varchar(7) DEFAULT NULL, `SelectColor` varchar(7) DEFAULT NULL, `TopBg` varchar(24) DEFAULT NULL, `AutoTrash` tinyint(1) DEFAULT NULL, `MailServer` varchar(64) DEFAULT NULL, `MailAuth` tinyint(1) DEFAULT NULL, `PGPenable` smallint(1) DEFAULT NULL, `PGPappend` smallint(1) DEFAULT NULL, `PGPsign` smallint(1) DEFAULT NULL, `SpamTreatment` varchar(10) DEFAULT NULL, `AbookTrusted` smallint(1) DEFAULT NULL, `AntiVirus` smallint(1) DEFAULT NULL, `PassCode` varchar(64) DEFAULT NULL, `DateFormat` varchar(8) DEFAULT NULL, `TimeFormat` varchar(8) DEFAULT NULL, `AutoComplete` smallint(1) DEFAULT NULL, `EmailEncoding` varchar(16) DEFAULT NULL, `DisplayImages` smallint(1) DEFAULT NULL, `Ajax` char(1) DEFAULT NULL, `UseSSL` tinyint(1) DEFAULT '0', PRIMARY KEY (`Account`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `usersettings_e` -- LOCK TABLES `usersettings_e` WRITE; /*!40000 ALTER TABLE `usersettings_e` DISABLE KEYS */; /*!40000 ALTER TABLE `usersettings_e` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `usersettings_f` -- DROP TABLE IF EXISTS `usersettings_f`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `usersettings_f` ( `Account` varchar(128) NOT NULL DEFAULT '', `MboxOrder` varchar(12) DEFAULT NULL, `RealName` varchar(40) DEFAULT NULL, `Refresh` smallint(5) DEFAULT NULL, `EmailHeaders` varchar(8) DEFAULT NULL, `TimeZone` varchar(32) DEFAULT NULL, `MsgNum` varchar(4) DEFAULT NULL, `EmptyTrash` smallint(1) DEFAULT NULL, `NewWindow` smallint(1) DEFAULT NULL, `HtmlEditor` smallint(1) DEFAULT NULL, `ReplyTo` varchar(255) DEFAULT NULL, `Signature` text, `FontStyle` varchar(21) DEFAULT NULL, `LeaveMsgs` smallint(1) DEFAULT NULL, `LoginType` varchar(12) DEFAULT NULL, `Advanced` smallint(1) DEFAULT NULL, `PrimaryColor` varchar(7) DEFAULT NULL, `SecondaryColor` varchar(7) DEFAULT NULL, `LinkColor` varchar(7) DEFAULT NULL, `VlinkColor` varchar(7) DEFAULT NULL, `BgColor` varchar(7) DEFAULT NULL, `TextColor` varchar(7) DEFAULT NULL, `HeaderColor` varchar(7) DEFAULT NULL, `HeadColor` varchar(7) DEFAULT NULL, `MailType` varchar(4) DEFAULT NULL, `ThirdColor` varchar(7) DEFAULT NULL, `Mode` varchar(4) DEFAULT NULL, `Service` smallint(1) DEFAULT NULL, `Language` varchar(10) DEFAULT NULL, `StartPage` char(1) DEFAULT NULL, `OnColor` varchar(7) DEFAULT NULL, `OffColor` varchar(7) DEFAULT NULL, `TextHeadColor` varchar(7) DEFAULT NULL, `SelectColor` varchar(7) DEFAULT NULL, `TopBg` varchar(24) DEFAULT NULL, `AutoTrash` tinyint(1) DEFAULT NULL, `MailServer` varchar(64) DEFAULT NULL, `MailAuth` tinyint(1) DEFAULT NULL, `PGPenable` smallint(1) DEFAULT NULL, `PGPappend` smallint(1) DEFAULT NULL, `PGPsign` smallint(1) DEFAULT NULL, `SpamTreatment` varchar(10) DEFAULT NULL, `AbookTrusted` smallint(1) DEFAULT NULL, `AntiVirus` smallint(1) DEFAULT NULL, `PassCode` varchar(64) DEFAULT NULL, `DateFormat` varchar(8) DEFAULT NULL, `TimeFormat` varchar(8) DEFAULT NULL, `AutoComplete` smallint(1) DEFAULT NULL, `EmailEncoding` varchar(16) DEFAULT NULL, `DisplayImages` smallint(1) DEFAULT NULL, `Ajax` char(1) DEFAULT NULL, `UseSSL` tinyint(1) DEFAULT '0', PRIMARY KEY (`Account`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `usersettings_f` -- LOCK TABLES `usersettings_f` WRITE; /*!40000 ALTER TABLE `usersettings_f` DISABLE KEYS */; /*!40000 ALTER TABLE `usersettings_f` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `usersettings_g` -- DROP TABLE IF EXISTS `usersettings_g`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `usersettings_g` ( `Account` varchar(128) NOT NULL DEFAULT '', `MboxOrder` varchar(12) DEFAULT NULL, `RealName` varchar(40) DEFAULT NULL, `Refresh` smallint(5) DEFAULT NULL, `EmailHeaders` varchar(8) DEFAULT NULL, `TimeZone` varchar(32) DEFAULT NULL, `MsgNum` varchar(4) DEFAULT NULL, `EmptyTrash` smallint(1) DEFAULT NULL, `NewWindow` smallint(1) DEFAULT NULL, `HtmlEditor` smallint(1) DEFAULT NULL, `ReplyTo` varchar(255) DEFAULT NULL, `Signature` text, `FontStyle` varchar(21) DEFAULT NULL, `LeaveMsgs` smallint(1) DEFAULT NULL, `LoginType` varchar(12) DEFAULT NULL, `Advanced` smallint(1) DEFAULT NULL, `PrimaryColor` varchar(7) DEFAULT NULL, `SecondaryColor` varchar(7) DEFAULT NULL, `LinkColor` varchar(7) DEFAULT NULL, `VlinkColor` varchar(7) DEFAULT NULL, `BgColor` varchar(7) DEFAULT NULL, `TextColor` varchar(7) DEFAULT NULL, `HeaderColor` varchar(7) DEFAULT NULL, `HeadColor` varchar(7) DEFAULT NULL, `MailType` varchar(4) DEFAULT NULL, `ThirdColor` varchar(7) DEFAULT NULL, `Mode` varchar(4) DEFAULT NULL, `Service` smallint(1) DEFAULT NULL, `Language` varchar(10) DEFAULT NULL, `StartPage` char(1) DEFAULT NULL, `OnColor` varchar(7) DEFAULT NULL, `OffColor` varchar(7) DEFAULT NULL, `TextHeadColor` varchar(7) DEFAULT NULL, `SelectColor` varchar(7) DEFAULT NULL, `TopBg` varchar(24) DEFAULT NULL, `AutoTrash` tinyint(1) DEFAULT NULL, `MailServer` varchar(64) DEFAULT NULL, `MailAuth` tinyint(1) DEFAULT NULL, `PGPenable` smallint(1) DEFAULT NULL, `PGPappend` smallint(1) DEFAULT NULL, `PGPsign` smallint(1) DEFAULT NULL, `SpamTreatment` varchar(10) DEFAULT NULL, `AbookTrusted` smallint(1) DEFAULT NULL, `AntiVirus` smallint(1) DEFAULT NULL, `PassCode` varchar(64) DEFAULT NULL, `DateFormat` varchar(8) DEFAULT NULL, `TimeFormat` varchar(8) DEFAULT NULL, `AutoComplete` smallint(1) DEFAULT NULL, `EmailEncoding` varchar(16) DEFAULT NULL, `DisplayImages` smallint(1) DEFAULT NULL, `Ajax` char(1) DEFAULT NULL, `UseSSL` tinyint(1) DEFAULT '0', PRIMARY KEY (`Account`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `usersettings_g` -- LOCK TABLES `usersettings_g` WRITE; /*!40000 ALTER TABLE `usersettings_g` DISABLE KEYS */; /*!40000 ALTER TABLE `usersettings_g` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `usersettings_h` -- DROP TABLE IF EXISTS `usersettings_h`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `usersettings_h` ( `Account` varchar(128) NOT NULL DEFAULT '', `MboxOrder` varchar(12) DEFAULT NULL, `RealName` varchar(40) DEFAULT NULL, `Refresh` smallint(5) DEFAULT NULL, `EmailHeaders` varchar(8) DEFAULT NULL, `TimeZone` varchar(32) DEFAULT NULL, `MsgNum` varchar(4) DEFAULT NULL, `EmptyTrash` smallint(1) DEFAULT NULL, `NewWindow` smallint(1) DEFAULT NULL, `HtmlEditor` smallint(1) DEFAULT NULL, `ReplyTo` varchar(255) DEFAULT NULL, `Signature` text, `FontStyle` varchar(21) DEFAULT NULL, `LeaveMsgs` smallint(1) DEFAULT NULL, `LoginType` varchar(12) DEFAULT NULL, `Advanced` smallint(1) DEFAULT NULL, `PrimaryColor` varchar(7) DEFAULT NULL, `SecondaryColor` varchar(7) DEFAULT NULL, `LinkColor` varchar(7) DEFAULT NULL, `VlinkColor` varchar(7) DEFAULT NULL, `BgColor` varchar(7) DEFAULT NULL, `TextColor` varchar(7) DEFAULT NULL, `HeaderColor` varchar(7) DEFAULT NULL, `HeadColor` varchar(7) DEFAULT NULL, `MailType` varchar(4) DEFAULT NULL, `ThirdColor` varchar(7) DEFAULT NULL, `Mode` varchar(4) DEFAULT NULL, `Service` smallint(1) DEFAULT NULL, `Language` varchar(10) DEFAULT NULL, `StartPage` char(1) DEFAULT NULL, `OnColor` varchar(7) DEFAULT NULL, `OffColor` varchar(7) DEFAULT NULL, `TextHeadColor` varchar(7) DEFAULT NULL, `SelectColor` varchar(7) DEFAULT NULL, `TopBg` varchar(24) DEFAULT NULL, `AutoTrash` tinyint(1) DEFAULT NULL, `MailServer` varchar(64) DEFAULT NULL, `MailAuth` tinyint(1) DEFAULT NULL, `PGPenable` smallint(1) DEFAULT NULL, `PGPappend` smallint(1) DEFAULT NULL, `PGPsign` smallint(1) DEFAULT NULL, `SpamTreatment` varchar(10) DEFAULT NULL, `AbookTrusted` smallint(1) DEFAULT NULL, `AntiVirus` smallint(1) DEFAULT NULL, `PassCode` varchar(64) DEFAULT NULL, `DateFormat` varchar(8) DEFAULT NULL, `TimeFormat` varchar(8) DEFAULT NULL, `AutoComplete` smallint(1) DEFAULT NULL, `EmailEncoding` varchar(16) DEFAULT NULL, `DisplayImages` smallint(1) DEFAULT NULL, `Ajax` char(1) DEFAULT NULL, `UseSSL` tinyint(1) DEFAULT '0', PRIMARY KEY (`Account`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `usersettings_h` -- LOCK TABLES `usersettings_h` WRITE; /*!40000 ALTER TABLE `usersettings_h` DISABLE KEYS */; /*!40000 ALTER TABLE `usersettings_h` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `usersettings_i` -- DROP TABLE IF EXISTS `usersettings_i`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `usersettings_i` ( `Account` varchar(128) NOT NULL DEFAULT '', `MboxOrder` varchar(12) DEFAULT NULL, `RealName` varchar(40) DEFAULT NULL, `Refresh` smallint(5) DEFAULT NULL, `EmailHeaders` varchar(8) DEFAULT NULL, `TimeZone` varchar(32) DEFAULT NULL, `MsgNum` varchar(4) DEFAULT NULL, `EmptyTrash` smallint(1) DEFAULT NULL, `NewWindow` smallint(1) DEFAULT NULL, `HtmlEditor` smallint(1) DEFAULT NULL, `ReplyTo` varchar(255) DEFAULT NULL, `Signature` text, `FontStyle` varchar(21) DEFAULT NULL, `LeaveMsgs` smallint(1) DEFAULT NULL, `LoginType` varchar(12) DEFAULT NULL, `Advanced` smallint(1) DEFAULT NULL, `PrimaryColor` varchar(7) DEFAULT NULL, `SecondaryColor` varchar(7) DEFAULT NULL, `LinkColor` varchar(7) DEFAULT NULL, `VlinkColor` varchar(7) DEFAULT NULL, `BgColor` varchar(7) DEFAULT NULL, `TextColor` varchar(7) DEFAULT NULL, `HeaderColor` varchar(7) DEFAULT NULL, `HeadColor` varchar(7) DEFAULT NULL, `MailType` varchar(4) DEFAULT NULL, `ThirdColor` varchar(7) DEFAULT NULL, `Mode` varchar(4) DEFAULT NULL, `Service` smallint(1) DEFAULT NULL, `Language` varchar(10) DEFAULT NULL, `StartPage` char(1) DEFAULT NULL, `OnColor` varchar(7) DEFAULT NULL, `OffColor` varchar(7) DEFAULT NULL, `TextHeadColor` varchar(7) DEFAULT NULL, `SelectColor` varchar(7) DEFAULT NULL, `TopBg` varchar(24) DEFAULT NULL, `AutoTrash` tinyint(1) DEFAULT NULL, `MailServer` varchar(64) DEFAULT NULL, `MailAuth` tinyint(1) DEFAULT NULL, `PGPenable` smallint(1) DEFAULT NULL, `PGPappend` smallint(1) DEFAULT NULL, `PGPsign` smallint(1) DEFAULT NULL, `SpamTreatment` varchar(10) DEFAULT NULL, `AbookTrusted` smallint(1) DEFAULT NULL, `AntiVirus` smallint(1) DEFAULT NULL, `PassCode` varchar(64) DEFAULT NULL, `DateFormat` varchar(8) DEFAULT NULL, `TimeFormat` varchar(8) DEFAULT NULL, `AutoComplete` smallint(1) DEFAULT NULL, `EmailEncoding` varchar(16) DEFAULT NULL, `DisplayImages` smallint(1) DEFAULT NULL, `Ajax` char(1) DEFAULT NULL, `UseSSL` tinyint(1) DEFAULT '0', PRIMARY KEY (`Account`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `usersettings_i` -- LOCK TABLES `usersettings_i` WRITE; /*!40000 ALTER TABLE `usersettings_i` DISABLE KEYS */; /*!40000 ALTER TABLE `usersettings_i` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `usersettings_j` -- DROP TABLE IF EXISTS `usersettings_j`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `usersettings_j` ( `Account` varchar(128) NOT NULL DEFAULT '', `MboxOrder` varchar(12) DEFAULT NULL, `RealName` varchar(40) DEFAULT NULL, `Refresh` smallint(5) DEFAULT NULL, `EmailHeaders` varchar(8) DEFAULT NULL, `TimeZone` varchar(32) DEFAULT NULL, `MsgNum` varchar(4) DEFAULT NULL, `EmptyTrash` smallint(1) DEFAULT NULL, `NewWindow` smallint(1) DEFAULT NULL, `HtmlEditor` smallint(1) DEFAULT NULL, `ReplyTo` varchar(255) DEFAULT NULL, `Signature` text, `FontStyle` varchar(21) DEFAULT NULL, `LeaveMsgs` smallint(1) DEFAULT NULL, `LoginType` varchar(12) DEFAULT NULL, `Advanced` smallint(1) DEFAULT NULL, `PrimaryColor` varchar(7) DEFAULT NULL, `SecondaryColor` varchar(7) DEFAULT NULL, `LinkColor` varchar(7) DEFAULT NULL, `VlinkColor` varchar(7) DEFAULT NULL, `BgColor` varchar(7) DEFAULT NULL, `TextColor` varchar(7) DEFAULT NULL, `HeaderColor` varchar(7) DEFAULT NULL, `HeadColor` varchar(7) DEFAULT NULL, `MailType` varchar(4) DEFAULT NULL, `ThirdColor` varchar(7) DEFAULT NULL, `Mode` varchar(4) DEFAULT NULL, `Service` smallint(1) DEFAULT NULL, `Language` varchar(10) DEFAULT NULL, `StartPage` char(1) DEFAULT NULL, `OnColor` varchar(7) DEFAULT NULL, `OffColor` varchar(7) DEFAULT NULL, `TextHeadColor` varchar(7) DEFAULT NULL, `SelectColor` varchar(7) DEFAULT NULL, `TopBg` varchar(24) DEFAULT NULL, `AutoTrash` tinyint(1) DEFAULT NULL, `MailServer` varchar(64) DEFAULT NULL, `MailAuth` tinyint(1) DEFAULT NULL, `PGPenable` smallint(1) DEFAULT NULL, `PGPappend` smallint(1) DEFAULT NULL, `PGPsign` smallint(1) DEFAULT NULL, `SpamTreatment` varchar(10) DEFAULT NULL, `AbookTrusted` smallint(1) DEFAULT NULL, `AntiVirus` smallint(1) DEFAULT NULL, `PassCode` varchar(64) DEFAULT NULL, `DateFormat` varchar(8) DEFAULT NULL, `TimeFormat` varchar(8) DEFAULT NULL, `AutoComplete` smallint(1) DEFAULT NULL, `EmailEncoding` varchar(16) DEFAULT NULL, `DisplayImages` smallint(1) DEFAULT NULL, `Ajax` char(1) DEFAULT NULL, `UseSSL` tinyint(1) DEFAULT '0', PRIMARY KEY (`Account`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `usersettings_j` -- LOCK TABLES `usersettings_j` WRITE; /*!40000 ALTER TABLE `usersettings_j` DISABLE KEYS */; /*!40000 ALTER TABLE `usersettings_j` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `usersettings_k` -- DROP TABLE IF EXISTS `usersettings_k`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `usersettings_k` ( `Account` varchar(128) NOT NULL DEFAULT '', `MboxOrder` varchar(12) DEFAULT NULL, `RealName` varchar(40) DEFAULT NULL, `Refresh` smallint(5) DEFAULT NULL, `EmailHeaders` varchar(8) DEFAULT NULL, `TimeZone` varchar(32) DEFAULT NULL, `MsgNum` varchar(4) DEFAULT NULL, `EmptyTrash` smallint(1) DEFAULT NULL, `NewWindow` smallint(1) DEFAULT NULL, `HtmlEditor` smallint(1) DEFAULT NULL, `ReplyTo` varchar(255) DEFAULT NULL, `Signature` text, `FontStyle` varchar(21) DEFAULT NULL, `LeaveMsgs` smallint(1) DEFAULT NULL, `LoginType` varchar(12) DEFAULT NULL, `Advanced` smallint(1) DEFAULT NULL, `PrimaryColor` varchar(7) DEFAULT NULL, `SecondaryColor` varchar(7) DEFAULT NULL, `LinkColor` varchar(7) DEFAULT NULL, `VlinkColor` varchar(7) DEFAULT NULL, `BgColor` varchar(7) DEFAULT NULL, `TextColor` varchar(7) DEFAULT NULL, `HeaderColor` varchar(7) DEFAULT NULL, `HeadColor` varchar(7) DEFAULT NULL, `MailType` varchar(4) DEFAULT NULL, `ThirdColor` varchar(7) DEFAULT NULL, `Mode` varchar(4) DEFAULT NULL, `Service` smallint(1) DEFAULT NULL, `Language` varchar(10) DEFAULT NULL, `StartPage` char(1) DEFAULT NULL, `OnColor` varchar(7) DEFAULT NULL, `OffColor` varchar(7) DEFAULT NULL, `TextHeadColor` varchar(7) DEFAULT NULL, `SelectColor` varchar(7) DEFAULT NULL, `TopBg` varchar(24) DEFAULT NULL, `AutoTrash` tinyint(1) DEFAULT NULL, `MailServer` varchar(64) DEFAULT NULL, `MailAuth` tinyint(1) DEFAULT NULL, `PGPenable` smallint(1) DEFAULT NULL, `PGPappend` smallint(1) DEFAULT NULL, `PGPsign` smallint(1) DEFAULT NULL, `SpamTreatment` varchar(10) DEFAULT NULL, `AbookTrusted` smallint(1) DEFAULT NULL, `AntiVirus` smallint(1) DEFAULT NULL, `PassCode` varchar(64) DEFAULT NULL, `DateFormat` varchar(8) DEFAULT NULL, `TimeFormat` varchar(8) DEFAULT NULL, `AutoComplete` smallint(1) DEFAULT NULL, `EmailEncoding` varchar(16) DEFAULT NULL, `DisplayImages` smallint(1) DEFAULT NULL, `Ajax` char(1) DEFAULT NULL, `UseSSL` tinyint(1) DEFAULT '0', PRIMARY KEY (`Account`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `usersettings_k` -- LOCK TABLES `usersettings_k` WRITE; /*!40000 ALTER TABLE `usersettings_k` DISABLE KEYS */; /*!40000 ALTER TABLE `usersettings_k` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `usersettings_l` -- DROP TABLE IF EXISTS `usersettings_l`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `usersettings_l` ( `Account` varchar(128) NOT NULL DEFAULT '', `MboxOrder` varchar(12) DEFAULT NULL, `RealName` varchar(40) DEFAULT NULL, `Refresh` smallint(5) DEFAULT NULL, `EmailHeaders` varchar(8) DEFAULT NULL, `TimeZone` varchar(32) DEFAULT NULL, `MsgNum` varchar(4) DEFAULT NULL, `EmptyTrash` smallint(1) DEFAULT NULL, `NewWindow` smallint(1) DEFAULT NULL, `HtmlEditor` smallint(1) DEFAULT NULL, `ReplyTo` varchar(255) DEFAULT NULL, `Signature` text, `FontStyle` varchar(21) DEFAULT NULL, `LeaveMsgs` smallint(1) DEFAULT NULL, `LoginType` varchar(12) DEFAULT NULL, `Advanced` smallint(1) DEFAULT NULL, `PrimaryColor` varchar(7) DEFAULT NULL, `SecondaryColor` varchar(7) DEFAULT NULL, `LinkColor` varchar(7) DEFAULT NULL, `VlinkColor` varchar(7) DEFAULT NULL, `BgColor` varchar(7) DEFAULT NULL, `TextColor` varchar(7) DEFAULT NULL, `HeaderColor` varchar(7) DEFAULT NULL, `HeadColor` varchar(7) DEFAULT NULL, `MailType` varchar(4) DEFAULT NULL, `ThirdColor` varchar(7) DEFAULT NULL, `Mode` varchar(4) DEFAULT NULL, `Service` smallint(1) DEFAULT NULL, `Language` varchar(10) DEFAULT NULL, `StartPage` char(1) DEFAULT NULL, `OnColor` varchar(7) DEFAULT NULL, `OffColor` varchar(7) DEFAULT NULL, `TextHeadColor` varchar(7) DEFAULT NULL, `SelectColor` varchar(7) DEFAULT NULL, `TopBg` varchar(24) DEFAULT NULL, `AutoTrash` tinyint(1) DEFAULT NULL, `MailServer` varchar(64) DEFAULT NULL, `MailAuth` tinyint(1) DEFAULT NULL, `PGPenable` smallint(1) DEFAULT NULL, `PGPappend` smallint(1) DEFAULT NULL, `PGPsign` smallint(1) DEFAULT NULL, `SpamTreatment` varchar(10) DEFAULT NULL, `AbookTrusted` smallint(1) DEFAULT NULL, `AntiVirus` smallint(1) DEFAULT NULL, `PassCode` varchar(64) DEFAULT NULL, `DateFormat` varchar(8) DEFAULT NULL, `TimeFormat` varchar(8) DEFAULT NULL, `AutoComplete` smallint(1) DEFAULT NULL, `EmailEncoding` varchar(16) DEFAULT NULL, `DisplayImages` smallint(1) DEFAULT NULL, `Ajax` char(1) DEFAULT NULL, `UseSSL` tinyint(1) DEFAULT '0', PRIMARY KEY (`Account`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `usersettings_l` -- LOCK TABLES `usersettings_l` WRITE; /*!40000 ALTER TABLE `usersettings_l` DISABLE KEYS */; /*!40000 ALTER TABLE `usersettings_l` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `usersettings_m` -- DROP TABLE IF EXISTS `usersettings_m`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `usersettings_m` ( `Account` varchar(128) NOT NULL DEFAULT '', `MboxOrder` varchar(12) DEFAULT NULL, `RealName` varchar(40) DEFAULT NULL, `Refresh` smallint(5) DEFAULT NULL, `EmailHeaders` varchar(8) DEFAULT NULL, `TimeZone` varchar(32) DEFAULT NULL, `MsgNum` varchar(4) DEFAULT NULL, `EmptyTrash` smallint(1) DEFAULT NULL, `NewWindow` smallint(1) DEFAULT NULL, `HtmlEditor` smallint(1) DEFAULT NULL, `ReplyTo` varchar(255) DEFAULT NULL, `Signature` text, `FontStyle` varchar(21) DEFAULT NULL, `LeaveMsgs` smallint(1) DEFAULT NULL, `LoginType` varchar(12) DEFAULT NULL, `Advanced` smallint(1) DEFAULT NULL, `PrimaryColor` varchar(7) DEFAULT NULL, `SecondaryColor` varchar(7) DEFAULT NULL, `LinkColor` varchar(7) DEFAULT NULL, `VlinkColor` varchar(7) DEFAULT NULL, `BgColor` varchar(7) DEFAULT NULL, `TextColor` varchar(7) DEFAULT NULL, `HeaderColor` varchar(7) DEFAULT NULL, `HeadColor` varchar(7) DEFAULT NULL, `MailType` varchar(4) DEFAULT NULL, `ThirdColor` varchar(7) DEFAULT NULL, `Mode` varchar(4) DEFAULT NULL, `Service` smallint(1) DEFAULT NULL, `Language` varchar(10) DEFAULT NULL, `StartPage` char(1) DEFAULT NULL, `OnColor` varchar(7) DEFAULT NULL, `OffColor` varchar(7) DEFAULT NULL, `TextHeadColor` varchar(7) DEFAULT NULL, `SelectColor` varchar(7) DEFAULT NULL, `TopBg` varchar(24) DEFAULT NULL, `AutoTrash` tinyint(1) DEFAULT NULL, `MailServer` varchar(64) DEFAULT NULL, `MailAuth` tinyint(1) DEFAULT NULL, `PGPenable` smallint(1) DEFAULT NULL, `PGPappend` smallint(1) DEFAULT NULL, `PGPsign` smallint(1) DEFAULT NULL, `SpamTreatment` varchar(10) DEFAULT NULL, `AbookTrusted` smallint(1) DEFAULT NULL, `AntiVirus` smallint(1) DEFAULT NULL, `PassCode` varchar(64) DEFAULT NULL, `DateFormat` varchar(8) DEFAULT NULL, `TimeFormat` varchar(8) DEFAULT NULL, `AutoComplete` smallint(1) DEFAULT NULL, `EmailEncoding` varchar(16) DEFAULT NULL, `DisplayImages` smallint(1) DEFAULT NULL, `Ajax` char(1) DEFAULT NULL, `UseSSL` tinyint(1) DEFAULT '0', PRIMARY KEY (`Account`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `usersettings_m` -- LOCK TABLES `usersettings_m` WRITE; /*!40000 ALTER TABLE `usersettings_m` DISABLE KEYS */; /*!40000 ALTER TABLE `usersettings_m` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `usersettings_n` -- DROP TABLE IF EXISTS `usersettings_n`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `usersettings_n` ( `Account` varchar(128) NOT NULL DEFAULT '', `MboxOrder` varchar(12) DEFAULT NULL, `RealName` varchar(40) DEFAULT NULL, `Refresh` smallint(5) DEFAULT NULL, `EmailHeaders` varchar(8) DEFAULT NULL, `TimeZone` varchar(32) DEFAULT NULL, `MsgNum` varchar(4) DEFAULT NULL, `EmptyTrash` smallint(1) DEFAULT NULL, `NewWindow` smallint(1) DEFAULT NULL, `HtmlEditor` smallint(1) DEFAULT NULL, `ReplyTo` varchar(255) DEFAULT NULL, `Signature` text, `FontStyle` varchar(21) DEFAULT NULL, `LeaveMsgs` smallint(1) DEFAULT NULL, `LoginType` varchar(12) DEFAULT NULL, `Advanced` smallint(1) DEFAULT NULL, `PrimaryColor` varchar(7) DEFAULT NULL, `SecondaryColor` varchar(7) DEFAULT NULL, `LinkColor` varchar(7) DEFAULT NULL, `VlinkColor` varchar(7) DEFAULT NULL, `BgColor` varchar(7) DEFAULT NULL, `TextColor` varchar(7) DEFAULT NULL, `HeaderColor` varchar(7) DEFAULT NULL, `HeadColor` varchar(7) DEFAULT NULL, `MailType` varchar(4) DEFAULT NULL, `ThirdColor` varchar(7) DEFAULT NULL, `Mode` varchar(4) DEFAULT NULL, `Service` smallint(1) DEFAULT NULL, `Language` varchar(10) DEFAULT NULL, `StartPage` char(1) DEFAULT NULL, `OnColor` varchar(7) DEFAULT NULL, `OffColor` varchar(7) DEFAULT NULL, `TextHeadColor` varchar(7) DEFAULT NULL, `SelectColor` varchar(7) DEFAULT NULL, `TopBg` varchar(24) DEFAULT NULL, `AutoTrash` tinyint(1) DEFAULT NULL, `MailServer` varchar(64) DEFAULT NULL, `MailAuth` tinyint(1) DEFAULT NULL, `PGPenable` smallint(1) DEFAULT NULL, `PGPappend` smallint(1) DEFAULT NULL, `PGPsign` smallint(1) DEFAULT NULL, `SpamTreatment` varchar(10) DEFAULT NULL, `AbookTrusted` smallint(1) DEFAULT NULL, `AntiVirus` smallint(1) DEFAULT NULL, `PassCode` varchar(64) DEFAULT NULL, `DateFormat` varchar(8) DEFAULT NULL, `TimeFormat` varchar(8) DEFAULT NULL, `AutoComplete` smallint(1) DEFAULT NULL, `EmailEncoding` varchar(16) DEFAULT NULL, `DisplayImages` smallint(1) DEFAULT NULL, `Ajax` char(1) DEFAULT NULL, `UseSSL` tinyint(1) DEFAULT '0', PRIMARY KEY (`Account`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `usersettings_n` -- LOCK TABLES `usersettings_n` WRITE; /*!40000 ALTER TABLE `usersettings_n` DISABLE KEYS */; /*!40000 ALTER TABLE `usersettings_n` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `usersettings_o` -- DROP TABLE IF EXISTS `usersettings_o`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `usersettings_o` ( `Account` varchar(128) NOT NULL DEFAULT '', `MboxOrder` varchar(12) DEFAULT NULL, `RealName` varchar(40) DEFAULT NULL, `Refresh` smallint(5) DEFAULT NULL, `EmailHeaders` varchar(8) DEFAULT NULL, `TimeZone` varchar(32) DEFAULT NULL, `MsgNum` varchar(4) DEFAULT NULL, `EmptyTrash` smallint(1) DEFAULT NULL, `NewWindow` smallint(1) DEFAULT NULL, `HtmlEditor` smallint(1) DEFAULT NULL, `ReplyTo` varchar(255) DEFAULT NULL, `Signature` text, `FontStyle` varchar(21) DEFAULT NULL, `LeaveMsgs` smallint(1) DEFAULT NULL, `LoginType` varchar(12) DEFAULT NULL, `Advanced` smallint(1) DEFAULT NULL, `PrimaryColor` varchar(7) DEFAULT NULL, `SecondaryColor` varchar(7) DEFAULT NULL, `LinkColor` varchar(7) DEFAULT NULL, `VlinkColor` varchar(7) DEFAULT NULL, `BgColor` varchar(7) DEFAULT NULL, `TextColor` varchar(7) DEFAULT NULL, `HeaderColor` varchar(7) DEFAULT NULL, `HeadColor` varchar(7) DEFAULT NULL, `MailType` varchar(4) DEFAULT NULL, `ThirdColor` varchar(7) DEFAULT NULL, `Mode` varchar(4) DEFAULT NULL, `Service` smallint(1) DEFAULT NULL, `Language` varchar(10) DEFAULT NULL, `StartPage` char(1) DEFAULT NULL, `OnColor` varchar(7) DEFAULT NULL, `OffColor` varchar(7) DEFAULT NULL, `TextHeadColor` varchar(7) DEFAULT NULL, `SelectColor` varchar(7) DEFAULT NULL, `TopBg` varchar(24) DEFAULT NULL, `AutoTrash` tinyint(1) DEFAULT NULL, `MailServer` varchar(64) DEFAULT NULL, `MailAuth` tinyint(1) DEFAULT NULL, `PGPenable` smallint(1) DEFAULT NULL, `PGPappend` smallint(1) DEFAULT NULL, `PGPsign` smallint(1) DEFAULT NULL, `SpamTreatment` varchar(10) DEFAULT NULL, `AbookTrusted` smallint(1) DEFAULT NULL, `AntiVirus` smallint(1) DEFAULT NULL, `PassCode` varchar(64) DEFAULT NULL, `DateFormat` varchar(8) DEFAULT NULL, `TimeFormat` varchar(8) DEFAULT NULL, `AutoComplete` smallint(1) DEFAULT NULL, `EmailEncoding` varchar(16) DEFAULT NULL, `DisplayImages` smallint(1) DEFAULT NULL, `Ajax` char(1) DEFAULT NULL, `UseSSL` tinyint(1) DEFAULT '0', PRIMARY KEY (`Account`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `usersettings_o` -- LOCK TABLES `usersettings_o` WRITE; /*!40000 ALTER TABLE `usersettings_o` DISABLE KEYS */; /*!40000 ALTER TABLE `usersettings_o` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `usersettings_other` -- DROP TABLE IF EXISTS `usersettings_other`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `usersettings_other` ( `Account` varchar(128) NOT NULL DEFAULT '', `MboxOrder` varchar(12) DEFAULT NULL, `RealName` varchar(40) DEFAULT NULL, `Refresh` smallint(5) DEFAULT NULL, `EmailHeaders` varchar(8) DEFAULT NULL, `TimeZone` varchar(32) DEFAULT NULL, `MsgNum` varchar(4) DEFAULT NULL, `EmptyTrash` smallint(1) DEFAULT NULL, `NewWindow` smallint(1) DEFAULT NULL, `HtmlEditor` smallint(1) DEFAULT NULL, `ReplyTo` varchar(255) DEFAULT NULL, `Signature` text, `FontStyle` varchar(21) DEFAULT NULL, `LeaveMsgs` smallint(1) DEFAULT NULL, `LoginType` varchar(12) DEFAULT NULL, `Advanced` smallint(1) DEFAULT NULL, `PrimaryColor` varchar(7) DEFAULT NULL, `SecondaryColor` varchar(7) DEFAULT NULL, `LinkColor` varchar(7) DEFAULT NULL, `VlinkColor` varchar(7) DEFAULT NULL, `BgColor` varchar(7) DEFAULT NULL, `TextColor` varchar(7) DEFAULT NULL, `HeaderColor` varchar(7) DEFAULT NULL, `HeadColor` varchar(7) DEFAULT NULL, `MailType` varchar(4) DEFAULT NULL, `ThirdColor` varchar(7) DEFAULT NULL, `Mode` varchar(4) DEFAULT NULL, `Service` smallint(1) DEFAULT NULL, `Language` varchar(10) DEFAULT NULL, `StartPage` char(1) DEFAULT NULL, `OnColor` varchar(7) DEFAULT NULL, `OffColor` varchar(7) DEFAULT NULL, `TextHeadColor` varchar(7) DEFAULT NULL, `SelectColor` varchar(7) DEFAULT NULL, `TopBg` varchar(24) DEFAULT NULL, `AutoTrash` tinyint(1) DEFAULT NULL, `MailServer` varchar(64) DEFAULT NULL, `MailAuth` tinyint(1) DEFAULT NULL, `PGPenable` smallint(1) DEFAULT NULL, `PGPappend` smallint(1) DEFAULT NULL, `PGPsign` smallint(1) DEFAULT NULL, `SpamTreatment` varchar(10) DEFAULT NULL, `AbookTrusted` smallint(1) DEFAULT NULL, `AntiVirus` smallint(1) DEFAULT NULL, `PassCode` varchar(64) DEFAULT NULL, `DateFormat` varchar(8) DEFAULT NULL, `TimeFormat` varchar(8) DEFAULT NULL, `AutoComplete` smallint(1) DEFAULT NULL, `EmailEncoding` varchar(16) DEFAULT NULL, `DisplayImages` smallint(1) DEFAULT NULL, `Ajax` char(1) DEFAULT NULL, `UseSSL` tinyint(1) DEFAULT '0', PRIMARY KEY (`Account`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `usersettings_other` -- LOCK TABLES `usersettings_other` WRITE; /*!40000 ALTER TABLE `usersettings_other` DISABLE KEYS */; /*!40000 ALTER TABLE `usersettings_other` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `usersettings_p` -- DROP TABLE IF EXISTS `usersettings_p`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `usersettings_p` ( `Account` varchar(128) NOT NULL DEFAULT '', `MboxOrder` varchar(12) DEFAULT NULL, `RealName` varchar(40) DEFAULT NULL, `Refresh` smallint(5) DEFAULT NULL, `EmailHeaders` varchar(8) DEFAULT NULL, `TimeZone` varchar(32) DEFAULT NULL, `MsgNum` varchar(4) DEFAULT NULL, `EmptyTrash` smallint(1) DEFAULT NULL, `NewWindow` smallint(1) DEFAULT NULL, `HtmlEditor` smallint(1) DEFAULT NULL, `ReplyTo` varchar(255) DEFAULT NULL, `Signature` text, `FontStyle` varchar(21) DEFAULT NULL, `LeaveMsgs` smallint(1) DEFAULT NULL, `LoginType` varchar(12) DEFAULT NULL, `Advanced` smallint(1) DEFAULT NULL, `PrimaryColor` varchar(7) DEFAULT NULL, `SecondaryColor` varchar(7) DEFAULT NULL, `LinkColor` varchar(7) DEFAULT NULL, `VlinkColor` varchar(7) DEFAULT NULL, `BgColor` varchar(7) DEFAULT NULL, `TextColor` varchar(7) DEFAULT NULL, `HeaderColor` varchar(7) DEFAULT NULL, `HeadColor` varchar(7) DEFAULT NULL, `MailType` varchar(4) DEFAULT NULL, `ThirdColor` varchar(7) DEFAULT NULL, `Mode` varchar(4) DEFAULT NULL, `Service` smallint(1) DEFAULT NULL, `Language` varchar(10) DEFAULT NULL, `StartPage` char(1) DEFAULT NULL, `OnColor` varchar(7) DEFAULT NULL, `OffColor` varchar(7) DEFAULT NULL, `TextHeadColor` varchar(7) DEFAULT NULL, `SelectColor` varchar(7) DEFAULT NULL, `TopBg` varchar(24) DEFAULT NULL, `AutoTrash` tinyint(1) DEFAULT NULL, `MailServer` varchar(64) DEFAULT NULL, `MailAuth` tinyint(1) DEFAULT NULL, `PGPenable` smallint(1) DEFAULT NULL, `PGPappend` smallint(1) DEFAULT NULL, `PGPsign` smallint(1) DEFAULT NULL, `SpamTreatment` varchar(10) DEFAULT NULL, `AbookTrusted` smallint(1) DEFAULT NULL, `AntiVirus` smallint(1) DEFAULT NULL, `PassCode` varchar(64) DEFAULT NULL, `DateFormat` varchar(8) DEFAULT NULL, `TimeFormat` varchar(8) DEFAULT NULL, `AutoComplete` smallint(1) DEFAULT NULL, `EmailEncoding` varchar(16) DEFAULT NULL, `DisplayImages` smallint(1) DEFAULT NULL, `Ajax` char(1) DEFAULT NULL, `UseSSL` tinyint(1) DEFAULT '0', PRIMARY KEY (`Account`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `usersettings_p` -- LOCK TABLES `usersettings_p` WRITE; /*!40000 ALTER TABLE `usersettings_p` DISABLE KEYS */; /*!40000 ALTER TABLE `usersettings_p` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `usersettings_q` -- DROP TABLE IF EXISTS `usersettings_q`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `usersettings_q` ( `Account` varchar(128) NOT NULL DEFAULT '', `MboxOrder` varchar(12) DEFAULT NULL, `RealName` varchar(40) DEFAULT NULL, `Refresh` smallint(5) DEFAULT NULL, `EmailHeaders` varchar(8) DEFAULT NULL, `TimeZone` varchar(32) DEFAULT NULL, `MsgNum` varchar(4) DEFAULT NULL, `EmptyTrash` smallint(1) DEFAULT NULL, `NewWindow` smallint(1) DEFAULT NULL, `HtmlEditor` smallint(1) DEFAULT NULL, `ReplyTo` varchar(255) DEFAULT NULL, `Signature` text, `FontStyle` varchar(21) DEFAULT NULL, `LeaveMsgs` smallint(1) DEFAULT NULL, `LoginType` varchar(12) DEFAULT NULL, `Advanced` smallint(1) DEFAULT NULL, `PrimaryColor` varchar(7) DEFAULT NULL, `SecondaryColor` varchar(7) DEFAULT NULL, `LinkColor` varchar(7) DEFAULT NULL, `VlinkColor` varchar(7) DEFAULT NULL, `BgColor` varchar(7) DEFAULT NULL, `TextColor` varchar(7) DEFAULT NULL, `HeaderColor` varchar(7) DEFAULT NULL, `HeadColor` varchar(7) DEFAULT NULL, `MailType` varchar(4) DEFAULT NULL, `ThirdColor` varchar(7) DEFAULT NULL, `Mode` varchar(4) DEFAULT NULL, `Service` smallint(1) DEFAULT NULL, `Language` varchar(10) DEFAULT NULL, `StartPage` char(1) DEFAULT NULL, `OnColor` varchar(7) DEFAULT NULL, `OffColor` varchar(7) DEFAULT NULL, `TextHeadColor` varchar(7) DEFAULT NULL, `SelectColor` varchar(7) DEFAULT NULL, `TopBg` varchar(24) DEFAULT NULL, `AutoTrash` tinyint(1) DEFAULT NULL, `MailServer` varchar(64) DEFAULT NULL, `MailAuth` tinyint(1) DEFAULT NULL, `PGPenable` smallint(1) DEFAULT NULL, `PGPappend` smallint(1) DEFAULT NULL, `PGPsign` smallint(1) DEFAULT NULL, `SpamTreatment` varchar(10) DEFAULT NULL, `AbookTrusted` smallint(1) DEFAULT NULL, `AntiVirus` smallint(1) DEFAULT NULL, `PassCode` varchar(64) DEFAULT NULL, `DateFormat` varchar(8) DEFAULT NULL, `TimeFormat` varchar(8) DEFAULT NULL, `AutoComplete` smallint(1) DEFAULT NULL, `EmailEncoding` varchar(16) DEFAULT NULL, `DisplayImages` smallint(1) DEFAULT NULL, `Ajax` char(1) DEFAULT NULL, `UseSSL` tinyint(1) DEFAULT '0', PRIMARY KEY (`Account`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `usersettings_q` -- LOCK TABLES `usersettings_q` WRITE; /*!40000 ALTER TABLE `usersettings_q` DISABLE KEYS */; /*!40000 ALTER TABLE `usersettings_q` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `usersettings_r` -- DROP TABLE IF EXISTS `usersettings_r`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `usersettings_r` ( `Account` varchar(128) NOT NULL DEFAULT '', `MboxOrder` varchar(12) DEFAULT NULL, `RealName` varchar(40) DEFAULT NULL, `Refresh` smallint(5) DEFAULT NULL, `EmailHeaders` varchar(8) DEFAULT NULL, `TimeZone` varchar(32) DEFAULT NULL, `MsgNum` varchar(4) DEFAULT NULL, `EmptyTrash` smallint(1) DEFAULT NULL, `NewWindow` smallint(1) DEFAULT NULL, `HtmlEditor` smallint(1) DEFAULT NULL, `ReplyTo` varchar(255) DEFAULT NULL, `Signature` text, `FontStyle` varchar(21) DEFAULT NULL, `LeaveMsgs` smallint(1) DEFAULT NULL, `LoginType` varchar(12) DEFAULT NULL, `Advanced` smallint(1) DEFAULT NULL, `PrimaryColor` varchar(7) DEFAULT NULL, `SecondaryColor` varchar(7) DEFAULT NULL, `LinkColor` varchar(7) DEFAULT NULL, `VlinkColor` varchar(7) DEFAULT NULL, `BgColor` varchar(7) DEFAULT NULL, `TextColor` varchar(7) DEFAULT NULL, `HeaderColor` varchar(7) DEFAULT NULL, `HeadColor` varchar(7) DEFAULT NULL, `MailType` varchar(4) DEFAULT NULL, `ThirdColor` varchar(7) DEFAULT NULL, `Mode` varchar(4) DEFAULT NULL, `Service` smallint(1) DEFAULT NULL, `Language` varchar(10) DEFAULT NULL, `StartPage` char(1) DEFAULT NULL, `OnColor` varchar(7) DEFAULT NULL, `OffColor` varchar(7) DEFAULT NULL, `TextHeadColor` varchar(7) DEFAULT NULL, `SelectColor` varchar(7) DEFAULT NULL, `TopBg` varchar(24) DEFAULT NULL, `AutoTrash` tinyint(1) DEFAULT NULL, `MailServer` varchar(64) DEFAULT NULL, `MailAuth` tinyint(1) DEFAULT NULL, `PGPenable` smallint(1) DEFAULT NULL, `PGPappend` smallint(1) DEFAULT NULL, `PGPsign` smallint(1) DEFAULT NULL, `SpamTreatment` varchar(10) DEFAULT NULL, `AbookTrusted` smallint(1) DEFAULT NULL, `AntiVirus` smallint(1) DEFAULT NULL, `PassCode` varchar(64) DEFAULT NULL, `DateFormat` varchar(8) DEFAULT NULL, `TimeFormat` varchar(8) DEFAULT NULL, `AutoComplete` smallint(1) DEFAULT NULL, `EmailEncoding` varchar(16) DEFAULT NULL, `DisplayImages` smallint(1) DEFAULT NULL, `Ajax` char(1) DEFAULT NULL, `UseSSL` tinyint(1) DEFAULT '0', PRIMARY KEY (`Account`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `usersettings_r` -- LOCK TABLES `usersettings_r` WRITE; /*!40000 ALTER TABLE `usersettings_r` DISABLE KEYS */; /*!40000 ALTER TABLE `usersettings_r` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `usersettings_s` -- DROP TABLE IF EXISTS `usersettings_s`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `usersettings_s` ( `Account` varchar(128) NOT NULL DEFAULT '', `MboxOrder` varchar(12) DEFAULT NULL, `RealName` varchar(40) DEFAULT NULL, `Refresh` smallint(5) DEFAULT NULL, `EmailHeaders` varchar(8) DEFAULT NULL, `TimeZone` varchar(32) DEFAULT NULL, `MsgNum` varchar(4) DEFAULT NULL, `EmptyTrash` smallint(1) DEFAULT NULL, `NewWindow` smallint(1) DEFAULT NULL, `HtmlEditor` smallint(1) DEFAULT NULL, `ReplyTo` varchar(255) DEFAULT NULL, `Signature` text, `FontStyle` varchar(21) DEFAULT NULL, `LeaveMsgs` smallint(1) DEFAULT NULL, `LoginType` varchar(12) DEFAULT NULL, `Advanced` smallint(1) DEFAULT NULL, `PrimaryColor` varchar(7) DEFAULT NULL, `SecondaryColor` varchar(7) DEFAULT NULL, `LinkColor` varchar(7) DEFAULT NULL, `VlinkColor` varchar(7) DEFAULT NULL, `BgColor` varchar(7) DEFAULT NULL, `TextColor` varchar(7) DEFAULT NULL, `HeaderColor` varchar(7) DEFAULT NULL, `HeadColor` varchar(7) DEFAULT NULL, `MailType` varchar(4) DEFAULT NULL, `ThirdColor` varchar(7) DEFAULT NULL, `Mode` varchar(4) DEFAULT NULL, `Service` smallint(1) DEFAULT NULL, `Language` varchar(10) DEFAULT NULL, `StartPage` char(1) DEFAULT NULL, `OnColor` varchar(7) DEFAULT NULL, `OffColor` varchar(7) DEFAULT NULL, `TextHeadColor` varchar(7) DEFAULT NULL, `SelectColor` varchar(7) DEFAULT NULL, `TopBg` varchar(24) DEFAULT NULL, `AutoTrash` tinyint(1) DEFAULT NULL, `MailServer` varchar(64) DEFAULT NULL, `MailAuth` tinyint(1) DEFAULT NULL, `PGPenable` smallint(1) DEFAULT NULL, `PGPappend` smallint(1) DEFAULT NULL, `PGPsign` smallint(1) DEFAULT NULL, `SpamTreatment` varchar(10) DEFAULT NULL, `AbookTrusted` smallint(1) DEFAULT NULL, `AntiVirus` smallint(1) DEFAULT NULL, `PassCode` varchar(64) DEFAULT NULL, `DateFormat` varchar(8) DEFAULT NULL, `TimeFormat` varchar(8) DEFAULT NULL, `AutoComplete` smallint(1) DEFAULT NULL, `EmailEncoding` varchar(16) DEFAULT NULL, `DisplayImages` smallint(1) DEFAULT NULL, `Ajax` char(1) DEFAULT NULL, `UseSSL` tinyint(1) DEFAULT '0', PRIMARY KEY (`Account`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `usersettings_s` -- LOCK TABLES `usersettings_s` WRITE; /*!40000 ALTER TABLE `usersettings_s` DISABLE KEYS */; /*!40000 ALTER TABLE `usersettings_s` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `usersettings_t` -- DROP TABLE IF EXISTS `usersettings_t`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `usersettings_t` ( `Account` varchar(128) NOT NULL DEFAULT '', `MboxOrder` varchar(12) DEFAULT NULL, `RealName` varchar(40) DEFAULT NULL, `Refresh` smallint(5) DEFAULT NULL, `EmailHeaders` varchar(8) DEFAULT NULL, `TimeZone` varchar(32) DEFAULT NULL, `MsgNum` varchar(4) DEFAULT NULL, `EmptyTrash` smallint(1) DEFAULT NULL, `NewWindow` smallint(1) DEFAULT NULL, `HtmlEditor` smallint(1) DEFAULT NULL, `ReplyTo` varchar(255) DEFAULT NULL, `Signature` text, `FontStyle` varchar(21) DEFAULT NULL, `LeaveMsgs` smallint(1) DEFAULT NULL, `LoginType` varchar(12) DEFAULT NULL, `Advanced` smallint(1) DEFAULT NULL, `PrimaryColor` varchar(7) DEFAULT NULL, `SecondaryColor` varchar(7) DEFAULT NULL, `LinkColor` varchar(7) DEFAULT NULL, `VlinkColor` varchar(7) DEFAULT NULL, `BgColor` varchar(7) DEFAULT NULL, `TextColor` varchar(7) DEFAULT NULL, `HeaderColor` varchar(7) DEFAULT NULL, `HeadColor` varchar(7) DEFAULT NULL, `MailType` varchar(4) DEFAULT NULL, `ThirdColor` varchar(7) DEFAULT NULL, `Mode` varchar(4) DEFAULT NULL, `Service` smallint(1) DEFAULT NULL, `Language` varchar(10) DEFAULT NULL, `StartPage` char(1) DEFAULT NULL, `OnColor` varchar(7) DEFAULT NULL, `OffColor` varchar(7) DEFAULT NULL, `TextHeadColor` varchar(7) DEFAULT NULL, `SelectColor` varchar(7) DEFAULT NULL, `TopBg` varchar(24) DEFAULT NULL, `AutoTrash` tinyint(1) DEFAULT NULL, `MailServer` varchar(64) DEFAULT NULL, `MailAuth` tinyint(1) DEFAULT NULL, `PGPenable` smallint(1) DEFAULT NULL, `PGPappend` smallint(1) DEFAULT NULL, `PGPsign` smallint(1) DEFAULT NULL, `SpamTreatment` varchar(10) DEFAULT NULL, `AbookTrusted` smallint(1) DEFAULT NULL, `AntiVirus` smallint(1) DEFAULT NULL, `PassCode` varchar(64) DEFAULT NULL, `DateFormat` varchar(8) DEFAULT NULL, `TimeFormat` varchar(8) DEFAULT NULL, `AutoComplete` smallint(1) DEFAULT NULL, `EmailEncoding` varchar(16) DEFAULT NULL, `DisplayImages` smallint(1) DEFAULT NULL, `Ajax` char(1) DEFAULT NULL, `UseSSL` tinyint(1) DEFAULT '0', PRIMARY KEY (`Account`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `usersettings_t` -- LOCK TABLES `usersettings_t` WRITE; /*!40000 ALTER TABLE `usersettings_t` DISABLE KEYS */; /*!40000 ALTER TABLE `usersettings_t` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `usersettings_u` -- DROP TABLE IF EXISTS `usersettings_u`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `usersettings_u` ( `Account` varchar(128) NOT NULL DEFAULT '', `MboxOrder` varchar(12) DEFAULT NULL, `RealName` varchar(40) DEFAULT NULL, `Refresh` smallint(5) DEFAULT NULL, `EmailHeaders` varchar(8) DEFAULT NULL, `TimeZone` varchar(32) DEFAULT NULL, `MsgNum` varchar(4) DEFAULT NULL, `EmptyTrash` smallint(1) DEFAULT NULL, `NewWindow` smallint(1) DEFAULT NULL, `HtmlEditor` smallint(1) DEFAULT NULL, `ReplyTo` varchar(255) DEFAULT NULL, `Signature` text, `FontStyle` varchar(21) DEFAULT NULL, `LeaveMsgs` smallint(1) DEFAULT NULL, `LoginType` varchar(12) DEFAULT NULL, `Advanced` smallint(1) DEFAULT NULL, `PrimaryColor` varchar(7) DEFAULT NULL, `SecondaryColor` varchar(7) DEFAULT NULL, `LinkColor` varchar(7) DEFAULT NULL, `VlinkColor` varchar(7) DEFAULT NULL, `BgColor` varchar(7) DEFAULT NULL, `TextColor` varchar(7) DEFAULT NULL, `HeaderColor` varchar(7) DEFAULT NULL, `HeadColor` varchar(7) DEFAULT NULL, `MailType` varchar(4) DEFAULT NULL, `ThirdColor` varchar(7) DEFAULT NULL, `Mode` varchar(4) DEFAULT NULL, `Service` smallint(1) DEFAULT NULL, `Language` varchar(10) DEFAULT NULL, `StartPage` char(1) DEFAULT NULL, `OnColor` varchar(7) DEFAULT NULL, `OffColor` varchar(7) DEFAULT NULL, `TextHeadColor` varchar(7) DEFAULT NULL, `SelectColor` varchar(7) DEFAULT NULL, `TopBg` varchar(24) DEFAULT NULL, `AutoTrash` tinyint(1) DEFAULT NULL, `MailServer` varchar(64) DEFAULT NULL, `MailAuth` tinyint(1) DEFAULT NULL, `PGPenable` smallint(1) DEFAULT NULL, `PGPappend` smallint(1) DEFAULT NULL, `PGPsign` smallint(1) DEFAULT NULL, `SpamTreatment` varchar(10) DEFAULT NULL, `AbookTrusted` smallint(1) DEFAULT NULL, `AntiVirus` smallint(1) DEFAULT NULL, `PassCode` varchar(64) DEFAULT NULL, `DateFormat` varchar(8) DEFAULT NULL, `TimeFormat` varchar(8) DEFAULT NULL, `AutoComplete` smallint(1) DEFAULT NULL, `EmailEncoding` varchar(16) DEFAULT NULL, `DisplayImages` smallint(1) DEFAULT NULL, `Ajax` char(1) DEFAULT NULL, `UseSSL` tinyint(1) DEFAULT '0', PRIMARY KEY (`Account`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `usersettings_u` -- LOCK TABLES `usersettings_u` WRITE; /*!40000 ALTER TABLE `usersettings_u` DISABLE KEYS */; /*!40000 ALTER TABLE `usersettings_u` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `usersettings_v` -- DROP TABLE IF EXISTS `usersettings_v`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `usersettings_v` ( `Account` varchar(128) NOT NULL DEFAULT '', `MboxOrder` varchar(12) DEFAULT NULL, `RealName` varchar(40) DEFAULT NULL, `Refresh` smallint(5) DEFAULT NULL, `EmailHeaders` varchar(8) DEFAULT NULL, `TimeZone` varchar(32) DEFAULT NULL, `MsgNum` varchar(4) DEFAULT NULL, `EmptyTrash` smallint(1) DEFAULT NULL, `NewWindow` smallint(1) DEFAULT NULL, `HtmlEditor` smallint(1) DEFAULT NULL, `ReplyTo` varchar(255) DEFAULT NULL, `Signature` text, `FontStyle` varchar(21) DEFAULT NULL, `LeaveMsgs` smallint(1) DEFAULT NULL, `LoginType` varchar(12) DEFAULT NULL, `Advanced` smallint(1) DEFAULT NULL, `PrimaryColor` varchar(7) DEFAULT NULL, `SecondaryColor` varchar(7) DEFAULT NULL, `LinkColor` varchar(7) DEFAULT NULL, `VlinkColor` varchar(7) DEFAULT NULL, `BgColor` varchar(7) DEFAULT NULL, `TextColor` varchar(7) DEFAULT NULL, `HeaderColor` varchar(7) DEFAULT NULL, `HeadColor` varchar(7) DEFAULT NULL, `MailType` varchar(4) DEFAULT NULL, `ThirdColor` varchar(7) DEFAULT NULL, `Mode` varchar(4) DEFAULT NULL, `Service` smallint(1) DEFAULT NULL, `Language` varchar(10) DEFAULT NULL, `StartPage` char(1) DEFAULT NULL, `OnColor` varchar(7) DEFAULT NULL, `OffColor` varchar(7) DEFAULT NULL, `TextHeadColor` varchar(7) DEFAULT NULL, `SelectColor` varchar(7) DEFAULT NULL, `TopBg` varchar(24) DEFAULT NULL, `AutoTrash` tinyint(1) DEFAULT NULL, `MailServer` varchar(64) DEFAULT NULL, `MailAuth` tinyint(1) DEFAULT NULL, `PGPenable` smallint(1) DEFAULT NULL, `PGPappend` smallint(1) DEFAULT NULL, `PGPsign` smallint(1) DEFAULT NULL, `SpamTreatment` varchar(10) DEFAULT NULL, `AbookTrusted` smallint(1) DEFAULT NULL, `AntiVirus` smallint(1) DEFAULT NULL, `PassCode` varchar(64) DEFAULT NULL, `DateFormat` varchar(8) DEFAULT NULL, `TimeFormat` varchar(8) DEFAULT NULL, `AutoComplete` smallint(1) DEFAULT NULL, `EmailEncoding` varchar(16) DEFAULT NULL, `DisplayImages` smallint(1) DEFAULT NULL, `Ajax` char(1) DEFAULT NULL, `UseSSL` tinyint(1) DEFAULT '0', PRIMARY KEY (`Account`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `usersettings_v` -- LOCK TABLES `usersettings_v` WRITE; /*!40000 ALTER TABLE `usersettings_v` DISABLE KEYS */; /*!40000 ALTER TABLE `usersettings_v` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `usersettings_w` -- DROP TABLE IF EXISTS `usersettings_w`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `usersettings_w` ( `Account` varchar(128) NOT NULL DEFAULT '', `MboxOrder` varchar(12) DEFAULT NULL, `RealName` varchar(40) DEFAULT NULL, `Refresh` smallint(5) DEFAULT NULL, `EmailHeaders` varchar(8) DEFAULT NULL, `TimeZone` varchar(32) DEFAULT NULL, `MsgNum` varchar(4) DEFAULT NULL, `EmptyTrash` smallint(1) DEFAULT NULL, `NewWindow` smallint(1) DEFAULT NULL, `HtmlEditor` smallint(1) DEFAULT NULL, `ReplyTo` varchar(255) DEFAULT NULL, `Signature` text, `FontStyle` varchar(21) DEFAULT NULL, `LeaveMsgs` smallint(1) DEFAULT NULL, `LoginType` varchar(12) DEFAULT NULL, `Advanced` smallint(1) DEFAULT NULL, `PrimaryColor` varchar(7) DEFAULT NULL, `SecondaryColor` varchar(7) DEFAULT NULL, `LinkColor` varchar(7) DEFAULT NULL, `VlinkColor` varchar(7) DEFAULT NULL, `BgColor` varchar(7) DEFAULT NULL, `TextColor` varchar(7) DEFAULT NULL, `HeaderColor` varchar(7) DEFAULT NULL, `HeadColor` varchar(7) DEFAULT NULL, `MailType` varchar(4) DEFAULT NULL, `ThirdColor` varchar(7) DEFAULT NULL, `Mode` varchar(4) DEFAULT NULL, `Service` smallint(1) DEFAULT NULL, `Language` varchar(10) DEFAULT NULL, `StartPage` char(1) DEFAULT NULL, `OnColor` varchar(7) DEFAULT NULL, `OffColor` varchar(7) DEFAULT NULL, `TextHeadColor` varchar(7) DEFAULT NULL, `SelectColor` varchar(7) DEFAULT NULL, `TopBg` varchar(24) DEFAULT NULL, `AutoTrash` tinyint(1) DEFAULT NULL, `MailServer` varchar(64) DEFAULT NULL, `MailAuth` tinyint(1) DEFAULT NULL, `PGPenable` smallint(1) DEFAULT NULL, `PGPappend` smallint(1) DEFAULT NULL, `PGPsign` smallint(1) DEFAULT NULL, `SpamTreatment` varchar(10) DEFAULT NULL, `AbookTrusted` smallint(1) DEFAULT NULL, `AntiVirus` smallint(1) DEFAULT NULL, `PassCode` varchar(64) DEFAULT NULL, `DateFormat` varchar(8) DEFAULT NULL, `TimeFormat` varchar(8) DEFAULT NULL, `AutoComplete` smallint(1) DEFAULT NULL, `EmailEncoding` varchar(16) DEFAULT NULL, `DisplayImages` smallint(1) DEFAULT NULL, `Ajax` char(1) DEFAULT NULL, `UseSSL` tinyint(1) DEFAULT '0', PRIMARY KEY (`Account`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `usersettings_w` -- LOCK TABLES `usersettings_w` WRITE; /*!40000 ALTER TABLE `usersettings_w` DISABLE KEYS */; /*!40000 ALTER TABLE `usersettings_w` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `usersettings_x` -- DROP TABLE IF EXISTS `usersettings_x`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `usersettings_x` ( `Account` varchar(128) NOT NULL DEFAULT '', `MboxOrder` varchar(12) DEFAULT NULL, `RealName` varchar(40) DEFAULT NULL, `Refresh` smallint(5) DEFAULT NULL, `EmailHeaders` varchar(8) DEFAULT NULL, `TimeZone` varchar(32) DEFAULT NULL, `MsgNum` varchar(4) DEFAULT NULL, `EmptyTrash` smallint(1) DEFAULT NULL, `NewWindow` smallint(1) DEFAULT NULL, `HtmlEditor` smallint(1) DEFAULT NULL, `ReplyTo` varchar(255) DEFAULT NULL, `Signature` text, `FontStyle` varchar(21) DEFAULT NULL, `LeaveMsgs` smallint(1) DEFAULT NULL, `LoginType` varchar(12) DEFAULT NULL, `Advanced` smallint(1) DEFAULT NULL, `PrimaryColor` varchar(7) DEFAULT NULL, `SecondaryColor` varchar(7) DEFAULT NULL, `LinkColor` varchar(7) DEFAULT NULL, `VlinkColor` varchar(7) DEFAULT NULL, `BgColor` varchar(7) DEFAULT NULL, `TextColor` varchar(7) DEFAULT NULL, `HeaderColor` varchar(7) DEFAULT NULL, `HeadColor` varchar(7) DEFAULT NULL, `MailType` varchar(4) DEFAULT NULL, `ThirdColor` varchar(7) DEFAULT NULL, `Mode` varchar(4) DEFAULT NULL, `Service` smallint(1) DEFAULT NULL, `Language` varchar(10) DEFAULT NULL, `StartPage` char(1) DEFAULT NULL, `OnColor` varchar(7) DEFAULT NULL, `OffColor` varchar(7) DEFAULT NULL, `TextHeadColor` varchar(7) DEFAULT NULL, `SelectColor` varchar(7) DEFAULT NULL, `TopBg` varchar(24) DEFAULT NULL, `AutoTrash` tinyint(1) DEFAULT NULL, `MailServer` varchar(64) DEFAULT NULL, `MailAuth` tinyint(1) DEFAULT NULL, `PGPenable` smallint(1) DEFAULT NULL, `PGPappend` smallint(1) DEFAULT NULL, `PGPsign` smallint(1) DEFAULT NULL, `SpamTreatment` varchar(10) DEFAULT NULL, `AbookTrusted` smallint(1) DEFAULT NULL, `AntiVirus` smallint(1) DEFAULT NULL, `PassCode` varchar(64) DEFAULT NULL, `DateFormat` varchar(8) DEFAULT NULL, `TimeFormat` varchar(8) DEFAULT NULL, `AutoComplete` smallint(1) DEFAULT NULL, `EmailEncoding` varchar(16) DEFAULT NULL, `DisplayImages` smallint(1) DEFAULT NULL, `Ajax` char(1) DEFAULT NULL, `UseSSL` tinyint(1) DEFAULT '0', PRIMARY KEY (`Account`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `usersettings_x` -- LOCK TABLES `usersettings_x` WRITE; /*!40000 ALTER TABLE `usersettings_x` DISABLE KEYS */; /*!40000 ALTER TABLE `usersettings_x` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `usersettings_y` -- DROP TABLE IF EXISTS `usersettings_y`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `usersettings_y` ( `Account` varchar(128) NOT NULL DEFAULT '', `MboxOrder` varchar(12) DEFAULT NULL, `RealName` varchar(40) DEFAULT NULL, `Refresh` smallint(5) DEFAULT NULL, `EmailHeaders` varchar(8) DEFAULT NULL, `TimeZone` varchar(32) DEFAULT NULL, `MsgNum` varchar(4) DEFAULT NULL, `EmptyTrash` smallint(1) DEFAULT NULL, `NewWindow` smallint(1) DEFAULT NULL, `HtmlEditor` smallint(1) DEFAULT NULL, `ReplyTo` varchar(255) DEFAULT NULL, `Signature` text, `FontStyle` varchar(21) DEFAULT NULL, `LeaveMsgs` smallint(1) DEFAULT NULL, `LoginType` varchar(12) DEFAULT NULL, `Advanced` smallint(1) DEFAULT NULL, `PrimaryColor` varchar(7) DEFAULT NULL, `SecondaryColor` varchar(7) DEFAULT NULL, `LinkColor` varchar(7) DEFAULT NULL, `VlinkColor` varchar(7) DEFAULT NULL, `BgColor` varchar(7) DEFAULT NULL, `TextColor` varchar(7) DEFAULT NULL, `HeaderColor` varchar(7) DEFAULT NULL, `HeadColor` varchar(7) DEFAULT NULL, `MailType` varchar(4) DEFAULT NULL, `ThirdColor` varchar(7) DEFAULT NULL, `Mode` varchar(4) DEFAULT NULL, `Service` smallint(1) DEFAULT NULL, `Language` varchar(10) DEFAULT NULL, `StartPage` char(1) DEFAULT NULL, `OnColor` varchar(7) DEFAULT NULL, `OffColor` varchar(7) DEFAULT NULL, `TextHeadColor` varchar(7) DEFAULT NULL, `SelectColor` varchar(7) DEFAULT NULL, `TopBg` varchar(24) DEFAULT NULL, `AutoTrash` tinyint(1) DEFAULT NULL, `MailServer` varchar(64) DEFAULT NULL, `MailAuth` tinyint(1) DEFAULT NULL, `PGPenable` smallint(1) DEFAULT NULL, `PGPappend` smallint(1) DEFAULT NULL, `PGPsign` smallint(1) DEFAULT NULL, `SpamTreatment` varchar(10) DEFAULT NULL, `AbookTrusted` smallint(1) DEFAULT NULL, `AntiVirus` smallint(1) DEFAULT NULL, `PassCode` varchar(64) DEFAULT NULL, `DateFormat` varchar(8) DEFAULT NULL, `TimeFormat` varchar(8) DEFAULT NULL, `AutoComplete` smallint(1) DEFAULT NULL, `EmailEncoding` varchar(16) DEFAULT NULL, `DisplayImages` smallint(1) DEFAULT NULL, `Ajax` char(1) DEFAULT NULL, `UseSSL` tinyint(1) DEFAULT '0', PRIMARY KEY (`Account`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `usersettings_y` -- LOCK TABLES `usersettings_y` WRITE; /*!40000 ALTER TABLE `usersettings_y` DISABLE KEYS */; /*!40000 ALTER TABLE `usersettings_y` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `usersettings_z` -- DROP TABLE IF EXISTS `usersettings_z`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `usersettings_z` ( `Account` varchar(128) NOT NULL DEFAULT '', `MboxOrder` varchar(12) DEFAULT NULL, `RealName` varchar(40) DEFAULT NULL, `Refresh` smallint(5) DEFAULT NULL, `EmailHeaders` varchar(8) DEFAULT NULL, `TimeZone` varchar(32) DEFAULT NULL, `MsgNum` varchar(4) DEFAULT NULL, `EmptyTrash` smallint(1) DEFAULT NULL, `NewWindow` smallint(1) DEFAULT NULL, `HtmlEditor` smallint(1) DEFAULT NULL, `ReplyTo` varchar(255) DEFAULT NULL, `Signature` text, `FontStyle` varchar(21) DEFAULT NULL, `LeaveMsgs` smallint(1) DEFAULT NULL, `LoginType` varchar(12) DEFAULT NULL, `Advanced` smallint(1) DEFAULT NULL, `PrimaryColor` varchar(7) DEFAULT NULL, `SecondaryColor` varchar(7) DEFAULT NULL, `LinkColor` varchar(7) DEFAULT NULL, `VlinkColor` varchar(7) DEFAULT NULL, `BgColor` varchar(7) DEFAULT NULL, `TextColor` varchar(7) DEFAULT NULL, `HeaderColor` varchar(7) DEFAULT NULL, `HeadColor` varchar(7) DEFAULT NULL, `MailType` varchar(4) DEFAULT NULL, `ThirdColor` varchar(7) DEFAULT NULL, `Mode` varchar(4) DEFAULT NULL, `Service` smallint(1) DEFAULT NULL, `Language` varchar(10) DEFAULT NULL, `StartPage` char(1) DEFAULT NULL, `OnColor` varchar(7) DEFAULT NULL, `OffColor` varchar(7) DEFAULT NULL, `TextHeadColor` varchar(7) DEFAULT NULL, `SelectColor` varchar(7) DEFAULT NULL, `TopBg` varchar(24) DEFAULT NULL, `AutoTrash` tinyint(1) DEFAULT NULL, `MailServer` varchar(64) DEFAULT NULL, `MailAuth` tinyint(1) DEFAULT NULL, `PGPenable` smallint(1) DEFAULT NULL, `PGPappend` smallint(1) DEFAULT NULL, `PGPsign` smallint(1) DEFAULT NULL, `SpamTreatment` varchar(10) DEFAULT NULL, `AbookTrusted` smallint(1) DEFAULT NULL, `AntiVirus` smallint(1) DEFAULT NULL, `PassCode` varchar(64) DEFAULT NULL, `DateFormat` varchar(8) DEFAULT NULL, `TimeFormat` varchar(8) DEFAULT NULL, `AutoComplete` smallint(1) DEFAULT NULL, `EmailEncoding` varchar(16) DEFAULT NULL, `DisplayImages` smallint(1) DEFAULT NULL, `Ajax` char(1) DEFAULT NULL, `UseSSL` tinyint(1) DEFAULT '0', PRIMARY KEY (`Account`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `usersettings_z` -- LOCK TABLES `usersettings_z` WRITE; /*!40000 ALTER TABLE `usersettings_z` DISABLE KEYS */; /*!40000 ALTER TABLE `usersettings_z` ENABLE KEYS */; UNLOCK TABLES; -- -- Current Database: `coppermine_mygallery` -- CREATE DATABASE /*!32312 IF NOT EXISTS*/ `coppermine_mygallery` /*!40100 DEFAULT CHARACTER SET latin1 */; USE `coppermine_mygallery`; -- -- Table structure for table `cpg14x_albums` -- DROP TABLE IF EXISTS `cpg14x_albums`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `cpg14x_albums` ( `aid` int(11) NOT NULL AUTO_INCREMENT, `title` varchar(255) NOT NULL DEFAULT '', `description` text NOT NULL, `visibility` int(11) NOT NULL DEFAULT '0', `uploads` enum('YES','NO') NOT NULL DEFAULT 'NO', `comments` enum('YES','NO') NOT NULL DEFAULT 'YES', `votes` enum('YES','NO') NOT NULL DEFAULT 'YES', `pos` int(11) NOT NULL DEFAULT '0', `category` int(11) NOT NULL DEFAULT '0', `thumb` int(11) NOT NULL DEFAULT '0', `keyword` varchar(50) DEFAULT NULL, `alb_password` varchar(32) DEFAULT NULL, `alb_password_hint` text, PRIMARY KEY (`aid`), KEY `alb_category` (`category`) ) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=latin1 COMMENT='Used to store albums'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `cpg14x_albums` -- LOCK TABLES `cpg14x_albums` WRITE; /*!40000 ALTER TABLE `cpg14x_albums` DISABLE KEYS */; INSERT INTO `cpg14x_albums` VALUES (1,'Rotterdam_Reunion_2008','',10001,'NO','YES','YES',1,0,26,'Rotterdam Erasmus Students Reunion','tulabis','combination of tulip & cannabis'); /*!40000 ALTER TABLE `cpg14x_albums` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `cpg14x_banned` -- DROP TABLE IF EXISTS `cpg14x_banned`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `cpg14x_banned` ( `ban_id` int(11) NOT NULL AUTO_INCREMENT, `user_id` int(11) DEFAULT NULL, `ip_addr` tinytext, `expiry` datetime DEFAULT NULL, `brute_force` tinyint(5) NOT NULL DEFAULT '0', PRIMARY KEY (`ban_id`) ) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=latin1 COMMENT='Data about banned users'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `cpg14x_banned` -- LOCK TABLES `cpg14x_banned` WRITE; /*!40000 ALTER TABLE `cpg14x_banned` DISABLE KEYS */; /*!40000 ALTER TABLE `cpg14x_banned` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `cpg14x_bridge` -- DROP TABLE IF EXISTS `cpg14x_bridge`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `cpg14x_bridge` ( `name` varchar(40) NOT NULL DEFAULT '0', `value` varchar(255) NOT NULL DEFAULT '', UNIQUE KEY `name` (`name`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1 COMMENT='Stores the bridging data, not used when unbridged'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `cpg14x_bridge` -- LOCK TABLES `cpg14x_bridge` WRITE; /*!40000 ALTER TABLE `cpg14x_bridge` DISABLE KEYS */; INSERT INTO `cpg14x_bridge` VALUES ('short_name',''),('license_number',''),('db_database_name',''),('db_hostname',''),('db_username',''),('db_password',''),('full_forum_url',''),('relative_path_of_forum_from_webroot',''),('relative_path_to_config_file',''),('logout_flag',''),('use_post_based_groups',''),('cookie_prefix',''),('table_prefix',''),('user_table',''),('session_table',''),('group_table',''),('group_relation_table',''),('group_mapping_table',''),('use_standard_groups','1'),('validating_group',''),('guest_group',''),('member_group',''),('admin_group',''),('banned_group',''),('global_moderators_group',''),('recovery_logon_failures','0'),('recovery_logon_timestamp',''); /*!40000 ALTER TABLE `cpg14x_bridge` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `cpg14x_categories` -- DROP TABLE IF EXISTS `cpg14x_categories`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `cpg14x_categories` ( `cid` int(11) NOT NULL AUTO_INCREMENT, `owner_id` int(11) NOT NULL DEFAULT '0', `name` varchar(255) NOT NULL DEFAULT '', `description` text NOT NULL, `pos` int(11) NOT NULL DEFAULT '0', `parent` int(11) NOT NULL DEFAULT '0', `thumb` int(11) NOT NULL DEFAULT '0', PRIMARY KEY (`cid`), KEY `cat_parent` (`parent`), KEY `cat_pos` (`pos`), KEY `cat_owner_id` (`owner_id`) ) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=latin1 COMMENT='Used to store categories'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `cpg14x_categories` -- LOCK TABLES `cpg14x_categories` WRITE; /*!40000 ALTER TABLE `cpg14x_categories` DISABLE KEYS */; INSERT INTO `cpg14x_categories` VALUES (1,0,'User galleries','This category contains albums that belong to Coppermine users.',0,0,0); /*!40000 ALTER TABLE `cpg14x_categories` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `cpg14x_comments` -- DROP TABLE IF EXISTS `cpg14x_comments`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `cpg14x_comments` ( `pid` mediumint(10) NOT NULL DEFAULT '0', `msg_id` mediumint(10) NOT NULL AUTO_INCREMENT, `msg_author` varchar(25) NOT NULL DEFAULT '', `msg_body` text NOT NULL, `msg_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `msg_raw_ip` tinytext, `msg_hdr_ip` tinytext, `author_md5_id` varchar(32) NOT NULL DEFAULT '', `author_id` int(11) NOT NULL DEFAULT '0', PRIMARY KEY (`msg_id`), KEY `com_pic_id` (`pid`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1 COMMENT='Used to store comments made on pics'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `cpg14x_comments` -- LOCK TABLES `cpg14x_comments` WRITE; /*!40000 ALTER TABLE `cpg14x_comments` DISABLE KEYS */; /*!40000 ALTER TABLE `cpg14x_comments` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `cpg14x_config` -- DROP TABLE IF EXISTS `cpg14x_config`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `cpg14x_config` ( `name` varchar(40) NOT NULL DEFAULT '', `value` varchar(255) NOT NULL DEFAULT '', PRIMARY KEY (`name`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1 COMMENT='Used to store the configuration options'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `cpg14x_config` -- LOCK TABLES `cpg14x_config` WRITE; /*!40000 ALTER TABLE `cpg14x_config` DISABLE KEYS */; INSERT INTO `cpg14x_config` VALUES ('albums_per_page','12'),('album_list_cols','4'),('display_pic_info','1'),('alb_list_thumb_size','50'),('allowed_mov_types','ALL'),('allowed_doc_types','doc/txt/rtf/pdf/xls/pps/ppt/zip/gz/mdb'),('allowed_snd_types','mp3/midi/mid/wma/wav/ogg'),('allowed_img_types','ALL'),('allow_private_albums','1'),('allow_user_registration','0'),('allow_unlogged_access','0'),('allow_duplicate_emails_addr','1'),('caption_in_thumbview','1'),('views_in_thumbview','1'),('charset','utf-8'),('cookie_name','coppermine'),('cookie_path','/'),('debug_mode','0'),('debug_notice','0'),('default_dir_mode','0755'),('default_file_mode','0644'),('default_sort_order','na'),('ecards_more_pic_target','http://mygallery.mamweb.at/'),('home_target','index.php'),('custom_lnk_name',''),('custom_lnk_url',''),('enable_smilies','1'),('filter_bad_words','0'),('forbiden_fname_char','$/\\\\:*?"'<>|` &'),('fullpath','albums/'),('gallery_admin_email','mam@heimam.at'),('gallery_description','my online photo album'),('gallery_name','Coppermine Photo Gallery'),('im_options','-antialias'),('impath',''),('jpeg_qual','80'),('keep_votes_time','30'),('lang','english'),('main_page_layout','breadcrumb/catlist/alblist/random,1/lastup,1'),('main_table_width','100%'),('make_intermediate','1'),('max_com_lines','10'),('max_com_size','512'),('max_com_wlength','38'),('max_img_desc_length','512'),('max_tabs','25'),('max_upl_size','1024'),('max_upl_width_height','2048'),('auto_resize','0'),('min_votes_for_rating','1'),('normal_pfx','normal_'),('offline','0'),('picture_table_width','600'),('picture_width','400'),('read_exif_data','1'),('reg_requires_valid_email','1'),('subcat_level','2'),('theme','rainy_day'),('thumbcols','4'),('thumbrows','3'),('thumb_method','gd2'),('thumb_pfx','thumb_'),('thumb_width','100'),('userpics','userpics/'),('vanity_block','1'),('user_profile1_name','Location'),('user_profile2_name','Interests'),('user_profile3_name','Website'),('user_profile4_name','Occupation'),('user_profile5_name','Nickname'),('user_profile6_name','Biography'),('user_field1_name',''),('user_field2_name',''),('user_field3_name',''),('user_field4_name',''),('display_comment_count','1'),('show_private','1'),('first_level','1'),('display_film_strip','1'),('display_film_strip_filename','1'),('max_film_strip_items','5'),('thumb_use','any'),('read_iptc_data','1'),('reg_notify_admin_email','1'),('disable_comment_flood_protect','0'),('upl_notify_admin_email','0'),('display_uploader','0'),('display_filename','1'),('language_list','0'),('language_flags','0'),('theme_list','0'),('language_reset','0'),('theme_reset','0'),('allow_memberlist','1'),('display_faq','1'),('show_bbcode_help','1'),('log_ecards','1'),('email_comment_notification','1'),('enable_zipdownload','1'),('slideshow_interval','5000'),('log_mode','2'),('media_autostart','1'),('enable_encrypted_passwords','1'),('time_offset','1'),('ban_private_ip','0'),('smtp_host',''),('smtp_username',''),('smtp_password',''),('enable_plugins','1'),('enable_help','1'),('categories_alpha_sort','1'),('login_threshold','3'),('login_expiry','10'),('allow_email_change','1'),('clickable_keyword_search','1'),('users_can_edit_pics','0'),('show_which_exif','|0|0|0|0|0|0|0|0|1|0|1|1|0|0|0|0|0|0|0|0|0|0|0|1|0|0|0|1|0|0|0|1|1|0|0|0|0|1|0|0|0|1|0|0|1|1|0|0|0|0|0|1|0|1|1'),('link_pic_count','1'),('bridge_enable','0'),('language_fallback','1'),('vote_details','1'),('hit_details','1'),('browse_batch_add','0'),('custom_header_path',''),('custom_footer_path',''),('comments_sort_descending','0'),('report_post','1'),('comments_anon_pfx','Guest_'),('admin_activation','1'); /*!40000 ALTER TABLE `cpg14x_config` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `cpg14x_dict` -- DROP TABLE IF EXISTS `cpg14x_dict`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `cpg14x_dict` ( `keyId` bigint(20) NOT NULL AUTO_INCREMENT, `keyword` varchar(60) NOT NULL DEFAULT '', PRIMARY KEY (`keyId`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1 COMMENT='Holds the keyword dictionary'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `cpg14x_dict` -- LOCK TABLES `cpg14x_dict` WRITE; /*!40000 ALTER TABLE `cpg14x_dict` DISABLE KEYS */; /*!40000 ALTER TABLE `cpg14x_dict` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `cpg14x_ecards` -- DROP TABLE IF EXISTS `cpg14x_ecards`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `cpg14x_ecards` ( `eid` int(11) NOT NULL AUTO_INCREMENT, `sender_name` varchar(50) NOT NULL DEFAULT '', `sender_email` text NOT NULL, `recipient_name` varchar(50) NOT NULL DEFAULT '', `recipient_email` text NOT NULL, `link` text NOT NULL, `date` tinytext NOT NULL, `sender_ip` tinytext NOT NULL, PRIMARY KEY (`eid`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1 COMMENT='Used to log ecards'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `cpg14x_ecards` -- LOCK TABLES `cpg14x_ecards` WRITE; /*!40000 ALTER TABLE `cpg14x_ecards` DISABLE KEYS */; /*!40000 ALTER TABLE `cpg14x_ecards` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `cpg14x_exif` -- DROP TABLE IF EXISTS `cpg14x_exif`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `cpg14x_exif` ( `filename` varchar(255) NOT NULL DEFAULT '', `exifData` text NOT NULL, UNIQUE KEY `filename` (`filename`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1 COMMENT='Stores EXIF data from individual pics'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `cpg14x_exif` -- LOCK TABLES `cpg14x_exif` WRITE; /*!40000 ALTER TABLE `cpg14x_exif` DISABLE KEYS */; INSERT INTO `cpg14x_exif` VALUES ('albums/Rotterdam_Reunion_2008/DSCN0064.JPG','a:19:{s:13:\"VerboseOutput\";i:0;s:6:\"Errors\";i:0;s:9:\"ValidJpeg\";i:1;s:13:\"ValidIPTCData\";i:0;s:13:\"ValidJFIFData\";i:0;s:13:\"ValidEXIFData\";i:1;s:13:\"ValidAPP2Data\";i:0;s:12:\"ValidCOMData\";i:0;s:8:\"APP1Size\";i:39493;s:6:\"Endien\";s:5:\"Intel\";s:11:\"IFD0NumTags\";i:11;s:4:\"IFD0\";a:11:{s:16:\"ImageDescription\";s:32:\" \0\";s:4:\"Make\";s:6:\"NIKON\0\";s:5:\"Model\";s:14:\"COOLPIX P5100\0\";s:11:\"Orientation\";s:14:\"Normal (O deg)\";s:11:\"xResolution\";s:27:\"300 dots per ResolutionUnit\";s:11:\"yResolution\";s:27:\"300 dots per ResolutionUnit\";s:14:\"ResolutionUnit\";s:4:\"Inch\";s:8:\"Software\";s:32:\"COOLPIX P5100V1.1 \0\";s:8:\"DateTime\";s:20:\"2008:09:19 14:06:15\0\";s:16:\"YCbCrPositioning\";s:11:\"Datum Point\";s:10:\"ExifOffset\";i:266;}s:10:\"IFD1Offset\";i:914;s:13:\"SubIFDNumTags\";i:35;s:6:\"SubIFD\";a:36:{s:12:\"ExposureTime\";s:9:\"1/404 sec\";s:7:\"FNumber\";s:5:\"f 5.8\";s:15:\"ExposureProgram\";s:7:\"Program\";s:15:\"ISOSpeedRatings\";i:64;s:11:\"ExifVersion\";s:11:\"version 2.2\";s:16:\"DateTimeOriginal\";s:20:\"2008:09:19 14:06:15\0\";s:17:\"DateTimedigitized\";s:20:\"2008:09:19 14:06:15\0\";s:23:\"ComponentsConfiguration\";s:5:\"YCbCr\";s:22:\"CompressedBitsPerPixel\";i:2;s:17:\"ExposureBiasValue\";s:4:\"0 EV\";s:16:\"MaxApertureValue\";s:5:\"f 2.7\";s:12:\"MeteringMode\";s:13:\"Multi-Segment\";s:11:\"LightSource\";s:15:\"Unknown or Auto\";s:5:\"Flash\";s:8:\"No Flash\";s:11:\"FocalLength\";s:7:\"26.3 mm\";s:9:\"MakerNote\";a:36:{s:12:\"unknown:0001\";i:0;s:10:\"ISOSetting\";i:0;s:9:\"ColorMode\";s:6:\"COLOR\0\";s:7:\"Quality\";s:8:\"NORMAL \0\";s:12:\"Whitebalance\";s:14:\"AUTO \0\";s:15:\"ImageSharpening\";s:8:\"AUTO \0\";s:9:\"FocusMode\";s:8:\"AF-S \0\";s:12:\"FlashSetting\";s:8:\"NORMAL \0\";s:12:\"unknown:000a\";d:9.2829999999999994741983755375258624553680419921875;s:12:\"ISOSelection\";s:8:\"AUTO \0\";s:8:\"DataDump\";s:2540:\"\0\0\0\0\0\0\0\0\0\0\01.1\0\0\0\0\0\0\0a1\0\0V\0\0)¯\0\0ž\0\0 ´\0\0 ¯\0\0 \0\0 ®\0k\0Ó\0@: \0\0\0\0\0\0\0\0\0\08,\0\0\0\0\0 \0\0\0\0\0 \0\0\0\0\0\08D@µþ\n\0\0\0\0\0\0\0\06\0 \0\0dG…=´\"\"\"\"ÿôÿµÿæÿÁŸØ\0à~û,\0\Znô0S\0R\0\0P\0\0T\0\0J\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0ÄuÆk\0\0eô\n\0\0©\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0ˆˆð\0Ÿ\0\0 \0\0Ø\0 \0 \0\0™\0\0\0Pñ™\0½\0p\0€æ®è\0\0\0\0\0\0\0\0 PÒP\0\0\0\0\0\0\0\0›¾åί\0\0\0\0\0\0˜ \0 G 2ñ\0\0\0\0\0\0wwww\0¼E\0»GŠ\0\nÑ\0\0\0d\0\0\0\ng`l\Zn\0\0\0\0\0\0\0å\0\0\0\0\0\0Ã;\0È\0ëm\0\0\0\0\0ÅF\0Å=\0Å=ô\0\0qk\0\0\0\0\0° ½\0ˆE\0\0\0\0\0\0\0\0\0\0\0\0™\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0¯Û\0ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿæ®è\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0›¾åί\0\0\0\0\0\0ÿÿ\0\0ªªªª\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0O\0O\0 \0O\0d\0\0\0\0.ö\0\0\"W\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0»»»»\0 \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0ÌÌÌÌ\0ÄI\0ÂIi\0ó_rÏ_/ÅW\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0ÝÝÝÝ\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0îîîî\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0T\0\0\0\0\0\0p\0p\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0peoœ\0Ä\0Ä\0Â\0Ä\0Ã\0À\0Á\0À\0Â\0¿\0Ã\0Â\0¿\0¿\0Â\0À\0Ä\0Ä\0Â\0Ä\0Ã\0À\0Á\0À\0Â\0¿\0Ã\0Â\0¿\0¿\0Â\0À\0Ã\0Â\0À\0Á\0À\0À\0Á\0¾\0Ã\0Ã\0À\0Ã\0Á\0Â\0¿\0À\0À\0Ä\0¾\0¾\0Æ\0Å\0»\0©\0Á\0¿\0¾\0À\0º\0¾\0¼\0½\0Á\0Á\0Â\0¿\0¼\0¸\0Å\0¹\0¿\0À\0Á\0Â\0¼\0¾\0½\0º\0À\0¾\0¿\0Æ\0¶\0³\0¯\0²\0Â\0Ä\0¿\0Á\0¾\0¿\0¼\0¾\0È\0Ã\0À\0É\0º\0¹\0§\0©\0Á\0Ñ\0¾\0¿\0¿\0¾\0·\0¼\0É\0È\0Ã\0Ç\0º\0¶\0Å\0·\0¿\0Ã\0¿\0Á\0À\0¿\0¸\0½\0Ì\0Ê\0Æ\0Ç\0¸\0À\0±\0­\0½\0Ç\0»\0¿\0º\0º\0¹\0¸\0Í\0Í\0Æ\0Ç\0¼\0»\0À\0¶\0¾\0Ð\0¸\0¿\0´\0¶\0´\0±\0Ë\0Ì\0»\0Â\0µ\0µ\0\0¯\0À\0É\0À\0¾\0À\0½\0À\0¿\0Ì\0Ð\0Ã\0Ç\0»\0À\0°\0¶\0À\0Ç\0¿\0¿\0Ã\0Ã\0Â\0Ã\0Ï\0Í\0»\0Æ\0¸\0´\0¤\0¹\0À\0Ü\0¿\0Á\0Ä\0Â\0Á\0Â\0Ï\0Ê\0½\0¿\0¾\0¶\0¦\0¯\0Ã\0ß\0Â\0¿\0Ä\0Â\0Î\0¿\0Ñ\0×\0ã\0Ù\0¾\0Á\0¾\0Á\0Â\0Ò\0Â\0Ã\0Ò\0Ã\0×\0ç\0é\0ú\0Ï\0ò\0É\0Ð\0Ö\0ñ\0Ã\0Å\0ß\0Ç\0ó\0ÇKIIKHGFGIFIGHHIFKIIKHGFGIFIGHHIFFJGHLGHGGHGFIGDDJGHIPMH=HHGHGGGEGEJGRELPGFGGCFCCLDILGEDFIJIGEHDGNIGNNCEGFDGGEFBGKKKQOLFJFEHGDFBDKKIPLH?LGDBFCDDCPLNMNJFHDDDECDACRNTOIG=GFCDGGGEFNLOTQJIHFIHGHHGGONONMLGDGGHGEFFFMKOSKJHCGDGFIFJHTZhXJLJIKQFGTHiN^\\…|axdhVxHIQH_P\";s:12:\"unknown:0011\";i:3432;s:12:\"unknown:001a\";s:40:\" \0 \0\";s:12:\"unknown:0021\";s:106:\"\0@ð\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\";s:15:\"ImageAdjustment\";s:14:\"AUTO \0\";s:16:\"ToneCompensation\";s:10:\"AUTO \0\";s:7:\"Adapter\";s:14:\"OFF \0\";s:19:\"ManualFocusDistance\";s:3:\"0 m\";s:11:\"DigitalZoom\";s:2:\"1x\";s:15:\"AFFocusPosition\";s:6:\"Center\";s:12:\"unknown:008f\";s:16:\" \0\";s:12:\"unknown:0091\";s:18:\"\0\0\0\0\0\0\0\0\0\0\0\0\0DC\0\0\";s:10:\"Saturation\";i:0;s:14:\"NoiseReduction\";s:6:\"OFF \0\";s:12:\"unknown:009b\";s:8:\"00000000\";s:12:\"unknown:009c\";s:20:\" \0\";s:12:\"unknown:009d\";i:0;s:12:\"unknown:009e\";i:0;s:12:\"unknown:00a8\";s:20:\"0100\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\";s:12:\"unknown:00a9\";s:16:\"NORMAL \0\";s:12:\"unknown:00aa\";s:16:\"NORMAL \0\";s:12:\"unknown:00ac\";s:14:\"VR-ON \0\0\";s:12:\"unknown:00ad\";s:10:\"STANDARD \0\";s:12:\"unknown:00ae\";s:12:\"\0\0\0\0\0\0\0\0\0\0\0\";s:12:\"unknown:00b2\";s:10:\"ÿÿÿÿÿÿÿÿÿ\0\";s:12:\"unknown:00b3\";s:8:\"OFF \0\";}s:10:\"KnownMaker\";i:1;s:14:\"UserCommentOld\";s:126:\"\0\0\0\0\0\0\0\0 \0\";s:15:\"FlashPixVersion\";s:9:\"version 1\";s:10:\"ColorSpace\";s:4:\"sRGB\";s:14:\"ExifImageWidth\";s:11:\"1280 pixels\";s:15:\"ExifImageHeight\";s:10:\"960 pixels\";s:26:\"ExifInteroperabilityOffset\";i:1008;s:10:\"FileSource\";s:20:\"Digital Still Camera\";s:9:\"SceneType\";s:21:\"Directly Photographed\";s:14:\"CustomerRender\";i:0;s:12:\"ExposureMode\";i:0;s:12:\"WhiteBalance\";i:0;s:16:\"DigitalZoomRatio\";i:0;s:12:\"unknown:a405\";i:123;s:16:\"SceneCaptureMode\";i:0;s:11:\"GainControl\";i:1;s:8:\"Contrast\";i:0;s:10:\"Saturation\";i:0;s:9:\"Sharpness\";i:0;s:12:\"unknown:a40c\";i:0;}s:11:\"IFD1NumTags\";i:6;s:4:\"IFD1\";a:6:{s:11:\"Compression\";s:16:\"Jpeg Compression\";s:11:\"xResolution\";s:27:\"300 dots per ResolutionUnit\";s:11:\"yResolution\";s:27:\"300 dots per ResolutionUnit\";s:14:\"ResolutionUnit\";s:4:\"Inch\";s:12:\"JpegIFOffset\";i:8692;s:15:\"JpegIFByteCount\";i:3746;}s:26:\"InteroperabilityIFDNumTags\";i:2;s:19:\"InteroperabilityIFD\";a:2:{s:21:\"InteroperabilityIndex\";s:4:\"R98\0\";s:23:\"InteroperabilityVersion\";s:9:\"version 1\";}}'),('albums/Rotterdam_Reunion_2008/DSCN0066.JPG','a:17:{s:13:\"VerboseOutput\";i:0;s:6:\"Errors\";i:0;s:9:\"ValidJpeg\";i:1;s:13:\"ValidIPTCData\";i:0;s:13:\"ValidJFIFData\";i:0;s:13:\"ValidEXIFData\";i:1;s:13:\"ValidAPP2Data\";i:0;s:12:\"ValidCOMData\";i:0;s:8:\"APP1Size\";i:9480;s:6:\"Endien\";s:5:\"Intel\";s:11:\"IFD0NumTags\";i:21;s:4:\"IFD0\";a:21:{s:16:\"ImageDescription\";s:32:\" \0\";s:4:\"Make\";s:6:\"NIKON\0\";s:5:\"Model\";s:14:\"COOLPIX P5100\0\";s:11:\"xResolution\";s:27:\"300 dots per ResolutionUnit\";s:11:\"yResolution\";s:27:\"300 dots per ResolutionUnit\";s:14:\"ResolutionUnit\";i:12648450;s:8:\"Software\";s:32:\"COOLPIX P5100V1.1 \0\";s:8:\"DateTime\";s:20:\"2008:09:19 14:46:36\0\";s:16:\"YCbCrPositioning\";s:11:\"Datum Point\";s:10:\"ExifOffset\";i:394;s:14:\"CustomerRender\";i:10682368;s:12:\"ExposureMode\";i:17301504;s:12:\"WhiteBalance\";i:0;s:16:\"DigitalZoomRatio\";i:0;s:12:\"unknown:a405\";i:10682403;s:16:\"SceneCaptureMode\";i:17301504;s:11:\"GainControl\";i:1;s:8:\"Contrast\";i:12648448;s:10:\"Saturation\";i:10682368;s:9:\"Sharpness\";i:17301504;s:12:\"unknown:a40c\";i:0;}s:10:\"IFD1Offset\";i:4438;s:13:\"SubIFDNumTags\";i:23;s:6:\"SubIFD\";a:24:{s:12:\"ExposureTime\";s:9:\"1/248 sec\";s:7:\"FNumber\";s:5:\"f 5.4\";s:15:\"ExposureProgram\";s:7:\"Program\";s:15:\"ISOSpeedRatings\";i:12648512;s:11:\"ExifVersion\";s:11:\"version 2.2\";s:16:\"DateTimeOriginal\";s:20:\"2008:09:19 14:46:36\0\";s:17:\"DateTimedigitized\";s:20:\"2008:09:19 14:46:36\0\";s:23:\"ComponentsConfiguration\";s:5:\"YCbCr\";s:22:\"CompressedBitsPerPixel\";i:2;s:17:\"ExposureBiasValue\";s:4:\"0 EV\";s:16:\"MaxApertureValue\";s:5:\"f 2.7\";s:12:\"MeteringMode\";s:17:\"Unknown: 12648453\";s:11:\"LightSource\";s:17:\"Unknown: 10682368\";s:5:\"Flash\";s:17:\"Unknown: 17301528\";s:11:\"FocalLength\";s:6:\"7.5 mm\";s:9:\"MakerNote\";a:36:{s:12:\"unknown:0001\";i:0;s:10:\"ISOSetting\";i:0;s:9:\"ColorMode\";s:6:\"COLOR\0\";s:7:\"Quality\";s:8:\"NORMAL \0\";s:12:\"Whitebalance\";s:14:\"AUTO \0\";s:15:\"ImageSharpening\";s:8:\"AUTO \0\";s:9:\"FocusMode\";s:8:\"AF-S \0\";s:12:\"FlashSetting\";s:8:\"NORMAL \0\";s:12:\"unknown:000a\";d:9.2829999999999994741983755375258624553680419921875;s:12:\"ISOSelection\";s:8:\"AUTO \0\";s:8:\"DataDump\";s:2540:\"\0\0\0\0\0\0\0\0ÿ\0\01.1\0\0\0\0\0\0\0a1\0\0Ë\0\0+$\0\0\0—\0\0Š\0\0(\0\0 \0\0º\0k\0Ó\0@68\0\0\0\0\0\0\0\0\0\0$\'\0\0\0\0\0\0\0\0\0\0\0\0 \0\0\0\0\0\0$?1ãœ\0\0\0\0\0\0\0\0\0Bp G\0d\\,\"9I\"\"\"\"ÿôÿµÿæÿÁèå\0\0à~û,\0ô0S\0R\0\0P\0\0T\0\0J\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0ÄuÆk\0\0eô\n\0\0©\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0ˆˆð\0è\0\0\0 \0\0å\0 \0 \0\0\"\0\0\0øÔ\"\0èØ\0à \'\0\0â\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0¦ a à w\0\0\0\0\0\0\0\0(Q \0\0\0\0\0\0\0\0wwww\0ÇL\0¸K‚\07\0\0\0d\0%\0\0\ng„o‚\0\0\0\0\0\0R\0\0\0\0\0\0Ã;\0È\0ëm4\0I\0\n\0ËR\0Ë>\0Ë>8ôd\020G\0\0\0\r* \0° ½\0ˆE\0\0\0\0\0\0\0\0\0\0\0\0™\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0¯Û\0ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ¦ a à w\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0ÿÿ\0\0ªªªª\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0O\0O\08\0O\0d\0\0\0\08Ó\0\01x\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0»»»»\0 ‹ÊëÇ\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0/0#\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0Dƒ‘r\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0i‡Ÿ˜\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0ËÌŵ\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0mŒ‹\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0PUTM\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0¸\r ã\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0ÌÌÌÌ\0ÕK\0ÔO\0Àl\0¸q>ïÙ2%\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0ÝÝÝÝ\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0îîîî\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0T\0\0\0\0\0\0p\0p\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0peoœ\0Ò\0Õ\0ä\0Ö\0è\0ã\0í\0í\0Ù\0û\0ø\0ú\0ð\0ç\0Ô\0á\0Ò\0Õ\0ä\0Ö\0è\0ã\0í\0í\0Ù\0û\0ø\0ú\0ð\0ç\0Ô\0á\0Ø\0×\0Ó\0Ñ\0Æ\0É\0Þ\0Ê\0Ö\0Þ\0å\0í\0ä\0ï\0ñ\0ê\0~\0~\0\0~\0\0€\0²\0„\0¹\0¶\0Æ\0ï\0î\0ù\0ò\0}\0\0}\0|\0€\0€\0Â\0š\0Ë\0´\0Î\0Û\0è\0ù\0÷\0~\0\0~\0}\0\0€\0Ï\0°\0ã\0¹\0ç\0Û\0ë\0÷\0ö\0ú\0€\0\0\0\0°\0\0Î\0Í\0Í\0Ý\0ñ\0Ý\0á\0¯\0ð\0ø\0\0‚\0ž\0•\0•\0—\0Ë\0À\0Á\0³\0œ\0»\0Ï\0ß\0ç\0ç\0‚\0ƒ\0¢\0‰\0›\0š\0Ç\0Ë\0Â\0Æ\0¾\0Á\0Û\0Ä\0ä\0À\0ƒ\0‡\0©\0\0™\0˜\0Ï\0¾\0Â\0Ñ\0Ó\0Ô\0Ö\0Ë\0Ë\0ß\0„\0Ï\0\0\0–\0”\0Ï\0§\0Î\0Ê\0¸\0Ô\0¹\0½\0·\0Ã\0\0É\0‡\0‰\0…\0†\0Ã\0…\0Ë\0Ó\0Í\0Ì\0½\0Ø\0½\0´\0Ë\0Ê\0†\0•\0ž\0‡\0¸\0\0À\0»\0Â\0Ë\0Ó\0Ú\0Í\0À\0Å\0Ã\0™\0Â\0®\0¤\0’\0Ž\0º\0±\0¹\0Ë\0´\0Ý\0À\0¾\0Ô\0Ç\0˜\0³\0”\0±\0£\0œ\0«\0¯\0»\0À\0Ì\0·\0À\0¶\0¨\0¯\0°\0£\0™\0¹\0¨\0Ÿ\0±\0ª\0Ç\0¶\0Ò\0Å\0¸\0ÄMKLMLMJMKLOORLOBMKLMLMJMKLOORLOBMKKMCDWDRYf`^rTR.*,./-V5RD“nnYP,(--/.Y8GG€RXSW-*/,0.:W^JmXaŒSO,-10G/]JBjjQ\\gTV,,A6?DR:KULOS†RM-0B3G@I3NEUN`”SO.2:-E@MDQS…PWtJI.L61B>LFKNVVL€XD0M2121Q2NQaPY}U?9T56?2I6QRYLH|VCTI4=F@;7WHSOM=_PUFJE;F@>9FWRRfl>IEF<9C@5:B[MOXqN\";s:12:\"unknown:0011\";i:3432;s:12:\"unknown:001a\";s:40:\" \0 \0\";s:12:\"unknown:0021\";s:106:\"\0@ð\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\";s:15:\"ImageAdjustment\";s:14:\"AUTO \0\";s:16:\"ToneCompensation\";s:10:\"AUTO \0\";s:7:\"Adapter\";s:14:\"OFF \0\";s:19:\"ManualFocusDistance\";s:3:\"0 m\";s:11:\"DigitalZoom\";s:2:\"1x\";s:15:\"AFFocusPosition\";s:6:\"Center\";s:12:\"unknown:008f\";s:16:\" \0\";s:12:\"unknown:0091\";s:18:\"\0\0\0\0\0\0\0\0\0\0\0\0\0\0DC\0\0\";s:10:\"Saturation\";i:0;s:14:\"NoiseReduction\";s:6:\"OFF \0\";s:12:\"unknown:009b\";s:8:\"00000000\";s:12:\"unknown:009c\";s:20:\" \0\";s:12:\"unknown:009d\";i:0;s:12:\"unknown:009e\";i:0;s:12:\"unknown:00a8\";s:20:\"0100\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\";s:12:\"unknown:00a9\";s:16:\"NORMAL \0\";s:12:\"unknown:00aa\";s:16:\"NORMAL \0\";s:12:\"unknown:00ac\";s:14:\"VR-ON \0\0\";s:12:\"unknown:00ad\";s:10:\"STANDARD \0\";s:12:\"unknown:00ae\";s:12:\"\0\0\0\0\0\0\0\0\0\0\0\";s:12:\"unknown:00b2\";s:10:\"ÿÿÿÿÿÿÿÿÿ\0\";s:12:\"unknown:00b3\";s:8:\"OFF \0\";}s:10:\"KnownMaker\";i:1;s:14:\"UserCommentOld\";s:126:\"\0\0\0\0\0\0\0\0 \0\";s:15:\"FlashPixVersion\";s:9:\"version 1\";s:10:\"ColorSpace\";s:4:\"sRGB\";s:14:\"ExifImageWidth\";s:10:\"960 pixels\";s:15:\"ExifImageHeight\";s:11:\"1280 pixels\";s:10:\"FileSource\";s:26:\"Digital Still Camera010801\";s:9:\"SceneType\";s:23:\"Directly Photographeda4\";}s:11:\"IFD1NumTags\";i:6;s:4:\"IFD1\";a:6:{s:11:\"Compression\";s:16:\"Jpeg Compression\";s:11:\"xResolution\";s:27:\"300 dots per ResolutionUnit\";s:11:\"yResolution\";s:27:\"300 dots per ResolutionUnit\";s:14:\"ResolutionUnit\";s:4:\"Inch\";s:12:\"JpegIFOffset\";i:4532;s:15:\"JpegIFByteCount\";i:4940;}}'),('albums/Rotterdam_Reunion_2008/DSCN0067.JPG','a:17:{s:13:\"VerboseOutput\";i:0;s:6:\"Errors\";i:0;s:9:\"ValidJpeg\";i:1;s:13:\"ValidIPTCData\";i:0;s:13:\"ValidJFIFData\";i:0;s:13:\"ValidEXIFData\";i:1;s:13:\"ValidAPP2Data\";i:0;s:12:\"ValidCOMData\";i:0;s:8:\"APP1Size\";i:8771;s:6:\"Endien\";s:5:\"Intel\";s:11:\"IFD0NumTags\";i:21;s:4:\"IFD0\";a:21:{s:16:\"ImageDescription\";s:32:\" \0\";s:4:\"Make\";s:6:\"NIKON\0\";s:5:\"Model\";s:14:\"COOLPIX P5100\0\";s:11:\"xResolution\";s:27:\"300 dots per ResolutionUnit\";s:11:\"yResolution\";s:27:\"300 dots per ResolutionUnit\";s:14:\"ResolutionUnit\";i:12648450;s:8:\"Software\";s:32:\"COOLPIX P5100V1.1 \0\";s:8:\"DateTime\";s:20:\"2008:09:19 15:02:56\0\";s:16:\"YCbCrPositioning\";s:11:\"Datum Point\";s:10:\"ExifOffset\";i:394;s:14:\"CustomerRender\";i:10682368;s:12:\"ExposureMode\";i:17301504;s:12:\"WhiteBalance\";i:0;s:16:\"DigitalZoomRatio\";i:0;s:12:\"unknown:a405\";i:10682403;s:16:\"SceneCaptureMode\";i:17301504;s:11:\"GainControl\";i:1;s:8:\"Contrast\";i:12648448;s:10:\"Saturation\";i:10682368;s:9:\"Sharpness\";i:17301504;s:12:\"unknown:a40c\";i:0;}s:10:\"IFD1Offset\";i:4438;s:13:\"SubIFDNumTags\";i:23;s:6:\"SubIFD\";a:24:{s:12:\"ExposureTime\";s:9:\"1/284 sec\";s:7:\"FNumber\";s:5:\"f 5.4\";s:15:\"ExposureProgram\";s:7:\"Program\";s:15:\"ISOSpeedRatings\";i:12648512;s:11:\"ExifVersion\";s:11:\"version 2.2\";s:16:\"DateTimeOriginal\";s:20:\"2008:09:19 15:02:56\0\";s:17:\"DateTimedigitized\";s:20:\"2008:09:19 15:02:56\0\";s:23:\"ComponentsConfiguration\";s:5:\"YCbCr\";s:22:\"CompressedBitsPerPixel\";i:2;s:17:\"ExposureBiasValue\";s:4:\"0 EV\";s:16:\"MaxApertureValue\";s:5:\"f 2.7\";s:12:\"MeteringMode\";s:17:\"Unknown: 12648453\";s:11:\"LightSource\";s:17:\"Unknown: 10682368\";s:5:\"Flash\";s:17:\"Unknown: 17301528\";s:11:\"FocalLength\";s:6:\"7.5 mm\";s:9:\"MakerNote\";a:36:{s:12:\"unknown:0001\";i:0;s:10:\"ISOSetting\";i:0;s:9:\"ColorMode\";s:6:\"COLOR\0\";s:7:\"Quality\";s:8:\"NORMAL \0\";s:12:\"Whitebalance\";s:14:\"AUTO \0\";s:15:\"ImageSharpening\";s:8:\"AUTO \0\";s:9:\"FocusMode\";s:8:\"AF-S \0\";s:12:\"FlashSetting\";s:8:\"NORMAL \0\";s:12:\"unknown:000a\";d:9.2829999999999994741983755375258624553680419921875;s:12:\"ISOSelection\";s:8:\"AUTO \0\";s:8:\"DataDump\";s:2540:\"\0\0\0\0\0\0\0\0\0\0\01.1\0\0\0\0\0\0\0a1\0\0Ü\0\0K\0\0\0„\0\0\0\0 `\0\0 \0\0\rÂ\0k\0Ó\0@68\0\0\0\0\0\0\0\0\0\0)W\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0)o\'b é\0\0\0\0\0\0\0\0\0?@th\0d(W\"Ò\"\"\"\"ÿôÿµÿæÿÁææ\0\0à~û,\0\"}ô0S\0R\0\0P\0\0T\0\0J\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0ÄuÆk\0\0eô\n\0\0©\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0ˆˆð\0æ\0\0\0 \0\0æ\0 \0 \0\0$\0\0\0$Ô$\0æÔ\0Ò\0{\0\0ÜÔæ\0JXfa]N?/ O\n F :\ng \rk»\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0wwww\0|-\0˜7„\0\rM\0\0\0d\0\0\0\ngæI\"}²\n\0\0\0\0\n\0\08\0\0\0\0\0\0Ã;\0È\0ëmI\n \0\0\0\0z,\0z6\0z67ö\0\0&b\0\0° ½\0ˆE\0\0\0\0\0\0\0\0\0\0\0\0™\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0¯Û\0ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿJXfa]N?/\'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0ÿÿ\0\0ªªªª\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0O\0O\08\0O\0d\0\0\0\0§\0\0\Z]\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0»»»»\0 \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0ÌÌÌÌ\0x+\0ÃI\0ä^d$EÈ\\K\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0ÝÝÝÝ\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0îîîî\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0T\0\0\0\0\0\0p\0p\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0peoœ\0x\0x\0z\0w\0y\0z\0x\0y\0œ\0\0¼\0¬\0Ê\0Ã\0Ã\0À\0x\0x\0z\0w\0y\0z\0x\0y\0œ\0\0¼\0¬\0Ê\0Ã\0Ã\0À\0w\0z\0y\0x\0}\0}\0«\0\0¯\0²\0Á\0»\0Ò\0Á\0Ñ\0Í\0}\0v\0‹\0Œ\0”\0Œ\0š\0“\0“\0—\0±\0¯\0Å\0³\0Ì\0Ç\0|\0x\0Š\0Š\0‰\0ˆ\0Ž\0\0‘\0\0®\0›\0Ê\0³\0Ò\0Ï\0x\0y\0—\0”\0\0”\0•\0š\0’\0‘\0«\0›\0Ù\0¼\0Ô\0Ø\0v\0x\0u\0v\0ƒ\0u\0{\0{\0‚\0}\0Ë\0Œ\0Õ\0Ï\0Ñ\0Ú\0w\0z\0u\0t\0v\0u\0z\0x\0|\0z\0Õ\0®\0Ù\0ê\0Õ\0x\0w\0u\0v\0v\0w\0w\0x\0~\0{\0ê\0³‘\0ï3\0v\0u\0x\0x\0‹\0†\0\0ƒ\0‡\0}R\0Ü\0Ø\0Ça\0s\0t\0Í\0”\0\0Ž\0‹\0Š\0Ž\0Šˆ\0Ú\0Ø\0Ù\0v\0x\0Œ\0†\0‰\0ˆ\0ˆ\0ˆ\0\0…\0ä\0ª\0×\0à\0üO\0v\0t\0ƒ\0y\0ˆ\0†\0ˆ\0‡\0Œ\0…\0ª\0™\0á\0Þ\0ûj\0w\0v\0s\0v\0z\0v\0…\0†\0Š\0Œ\0Ž\0Œ\0á\0å\0õ+\0t\0u\0s\0s\0u\0r\0†\0|\0‹\0‰\0—\0\0þ\0ë\0ä\0v\0t\0¡\0…\0t\0r\0…\0z\0‡\0‰\0“\0ŠI\0Ô(+,**+-*?2EMMLIS(+,**+-*?2EMMLIS)),(1,C6CCFGHNeO.)79=;<;7DFANNBN\'\'<798;>?>MCRJ[T)\'GAHHGJ@IHD^Of`+&(&3.2//F5XNOV(&&)**,)/,SAVLbQ%&\'(,()*.+KCHsB&)*\'40023/ ;VV„o*(-,4078:2 FVVkf\'%:1837268HFSUdq(+/(828775?>_\\c\'&*%,(5298<5^‚`i(&(\'\'&5-;4B<]x^e%%2)+(4.<6@;rPdg\";s:12:\"unknown:0011\";i:3432;s:12:\"unknown:001a\";s:40:\" \0 \0\";s:12:\"unknown:0021\";s:106:\"\0@ð\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\";s:15:\"ImageAdjustment\";s:14:\"AUTO \0\";s:16:\"ToneCompensation\";s:10:\"AUTO \0\";s:7:\"Adapter\";s:14:\"OFF \0\";s:19:\"ManualFocusDistance\";s:3:\"0 m\";s:11:\"DigitalZoom\";s:2:\"1x\";s:15:\"AFFocusPosition\";s:6:\"Center\";s:12:\"unknown:008f\";s:16:\" \0\";s:12:\"unknown:0091\";s:18:\"\0\0\0\0\0\0\0\0\0\0\0\0\0\0DC\0\0\";s:10:\"Saturation\";i:0;s:14:\"NoiseReduction\";s:6:\"OFF \0\";s:12:\"unknown:009b\";s:8:\"00000000\";s:12:\"unknown:009c\";s:20:\" \0\";s:12:\"unknown:009d\";i:0;s:12:\"unknown:009e\";i:0;s:12:\"unknown:00a8\";s:20:\"0100\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\";s:12:\"unknown:00a9\";s:16:\"NORMAL \0\";s:12:\"unknown:00aa\";s:16:\"NORMAL \0\";s:12:\"unknown:00ac\";s:14:\"VR-ON \0\0\";s:12:\"unknown:00ad\";s:10:\"STANDARD \0\";s:12:\"unknown:00ae\";s:12:\"\0\0\0\0\0\0\0\0\0\0\0\";s:12:\"unknown:00b2\";s:10:\"ÿÿÿÿÿÿÿÿÿ\0\";s:12:\"unknown:00b3\";s:8:\"OFF \0\";}s:10:\"KnownMaker\";i:1;s:14:\"UserCommentOld\";s:126:\"\0\0\0\0\0\0\0\0 \0\";s:15:\"FlashPixVersion\";s:9:\"version 1\";s:10:\"ColorSpace\";s:4:\"sRGB\";s:14:\"ExifImageWidth\";s:10:\"960 pixels\";s:15:\"ExifImageHeight\";s:11:\"1280 pixels\";s:10:\"FileSource\";s:26:\"Digital Still Camera010801\";s:9:\"SceneType\";s:23:\"Directly Photographeda4\";}s:11:\"IFD1NumTags\";i:6;s:4:\"IFD1\";a:6:{s:11:\"Compression\";s:16:\"Jpeg Compression\";s:11:\"xResolution\";s:27:\"300 dots per ResolutionUnit\";s:11:\"yResolution\";s:27:\"300 dots per ResolutionUnit\";s:14:\"ResolutionUnit\";s:4:\"Inch\";s:12:\"JpegIFOffset\";i:4532;s:15:\"JpegIFByteCount\";i:4231;}}'),('albums/Rotterdam_Reunion_2008/DSCN0071.JPG','a:17:{s:13:\"VerboseOutput\";i:0;s:6:\"Errors\";i:0;s:9:\"ValidJpeg\";i:1;s:13:\"ValidIPTCData\";i:0;s:13:\"ValidJFIFData\";i:0;s:13:\"ValidEXIFData\";i:1;s:13:\"ValidAPP2Data\";i:0;s:12:\"ValidCOMData\";i:0;s:8:\"APP1Size\";i:8594;s:6:\"Endien\";s:5:\"Intel\";s:11:\"IFD0NumTags\";i:21;s:4:\"IFD0\";a:21:{s:16:\"ImageDescription\";s:32:\" \0\";s:4:\"Make\";s:6:\"NIKON\0\";s:5:\"Model\";s:14:\"COOLPIX P5100\0\";s:11:\"xResolution\";s:27:\"300 dots per ResolutionUnit\";s:11:\"yResolution\";s:27:\"300 dots per ResolutionUnit\";s:14:\"ResolutionUnit\";i:12648450;s:8:\"Software\";s:32:\"COOLPIX P5100V1.1 \0\";s:8:\"DateTime\";s:20:\"2008:09:19 18:44:49\0\";s:16:\"YCbCrPositioning\";s:11:\"Datum Point\";s:10:\"ExifOffset\";i:394;s:14:\"CustomerRender\";i:10682368;s:12:\"ExposureMode\";i:17301504;s:12:\"WhiteBalance\";i:0;s:16:\"DigitalZoomRatio\";i:0;s:12:\"unknown:a405\";i:10682455;s:16:\"SceneCaptureMode\";i:17301504;s:11:\"GainControl\";i:1;s:8:\"Contrast\";i:12648448;s:10:\"Saturation\";i:10682368;s:9:\"Sharpness\";i:17301504;s:12:\"unknown:a40c\";i:0;}s:10:\"IFD1Offset\";i:4438;s:13:\"SubIFDNumTags\";i:23;s:6:\"SubIFD\";a:24:{s:12:\"ExposureTime\";s:9:\"1/251 sec\";s:7:\"FNumber\";s:5:\"f 5.3\";s:15:\"ExposureProgram\";s:7:\"Program\";s:15:\"ISOSpeedRatings\";i:12648512;s:11:\"ExifVersion\";s:11:\"version 2.2\";s:16:\"DateTimeOriginal\";s:20:\"2008:09:19 18:44:49\0\";s:17:\"DateTimedigitized\";s:20:\"2008:09:19 18:44:49\0\";s:23:\"ComponentsConfiguration\";s:5:\"YCbCr\";s:22:\"CompressedBitsPerPixel\";i:2;s:17:\"ExposureBiasValue\";s:4:\"0 EV\";s:16:\"MaxApertureValue\";s:5:\"f 2.7\";s:12:\"MeteringMode\";s:17:\"Unknown: 12648453\";s:11:\"LightSource\";s:17:\"Unknown: 10682368\";s:5:\"Flash\";s:17:\"Unknown: 17301528\";s:11:\"FocalLength\";s:7:\"18.6 mm\";s:9:\"MakerNote\";a:36:{s:12:\"unknown:0001\";i:0;s:10:\"ISOSetting\";i:0;s:9:\"ColorMode\";s:6:\"COLOR\0\";s:7:\"Quality\";s:8:\"NORMAL \0\";s:12:\"Whitebalance\";s:14:\"AUTO \0\";s:15:\"ImageSharpening\";s:8:\"AUTO \0\";s:9:\"FocusMode\";s:8:\"AF-S \0\";s:12:\"FlashSetting\";s:8:\"NORMAL \0\";s:12:\"unknown:000a\";d:9.2829999999999994741983755375258624553680419921875;s:12:\"ISOSelection\";s:8:\"AUTO \0\";s:8:\"DataDump\";s:2540:\"\0\0\0\0\0\0\0\0ÿ\0\01.1\0\0\0\0\0\0\0a1\0\0‰\0\0,ò\0\0¸\0\0\nP\0\0\0\0Ü\0\0Š\0k\0Ó\0@5#\0\0\0\0\0\0\0\0\0\0.P\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0.h?”¯\0\0\0\0\0\0\0\0/a\n\0\0d¯>ˆ.\"\"\"\"ÿôÿµÿæÿÁ¹`\0à~û,\0|ô0S\0R\0\0P\0\0T\0\0J\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0ÄuÆk\0\0eô\n\0\0©\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0ˆˆð\0¹\0\0 \0\0`\0 \0 \0\0²\0\0@\n¶²¶¶\0\0\0B\0\0u0¶¶\0€ï¬t3\0\0\0\0\0\0\0\0K€¾\0\0\0\0\0\0\0\0¹è& Ï\0\0\0\0\0\0…°cè\0\0\0\0\0\0wwww\0½O\0ÄP…\0z\0\0\0d\0\0\0\ngx{|W\0\0\0\0\0\0l\0\0\0\0\0\0Ã;\0È\0ëm*\0\r\0\n\0°L\0°;\0°;<\0\0L1J\0 \n\0° ½\0ˆE\0\0\0\0\0\0\0\0\0\0\0\0™\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0¯Û\0ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿï¬t3\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0¹è& Ï\0\0\0\0\0\0ÿÿ\0\0ªªªª\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0O\0O\0#\0O\0d\0\0\0\08¢\0\09Ø\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0»»»»\0 \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0ÌÌÌÌ\0: Z\0ÐM\0¸K.Ê/a\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0ÝÝÝÝ\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0îîîî\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0T\0\0\0\0\0\0p\0p\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0peoœ\0\0\0“\0\0ž\0—\0¨\0¡\0¹\0³\0Ï\0Ã\0õ\0ß \0\0\0“\0\0ž\0—\0¨\0¡\0¹\0³\0Ï\0Ã\0õ\0ß \0Ž\0Œ\0”\0’\0ž\0–\0©\0 \0Û\0±\0ö\0ù \0ð\0\0Ž\0”\0\0¦\0˜\0§\0£+N\n \0ð\0í\0\0\0“\0‘\0\0˜\0¯\0¤\0þ\0ì\0ö\0þ\r\0ë\0¯\0Ü\0‹\0‹\0“\0‘\0\0—\0³\0£\0»\0½\0Ö\0Ë \0¹\0Ç\0\0‹\0•\0‘\0\0˜\0«\0¢\0º\0µ\0Ó\0È\0ê\0Ö\0§\0\0Œ\0”\0’\0 \0™\0°\0£\0¿\0´\0Ó\0Å\0ü\0î \0«\0\0Œ\0™\0‘\0¦\0\0®\0«\0Ñ\0¼\0è\0â\0Õ\0ò5\0Î\0\0\0¼\0§\0Å\0·\0Ü\0Ï\0Û\0ê\0é\0×\0Ä\0ò \"\0â\0Ü\0ø\0û\0í\0ö\0­\0Á\0Á\0Ñ\0Ò\0Ç\0È\0Ç\'C\0Ž\0Ž\0•\0\0Ë\0±\0ñ\0ã\0Ò\0ð\0ê\0Ò\0î\0ç86\0‘\0Œ\0”\0’\0\0š\0«\0¢\0î\0Ï\0í\0ù\0ê(6\0‘\0\0”\0“\0Ÿ\0˜\0¬\0¥\0¾\0³\0÷\0Æ\0÷\0‘\0\0•\0“\0¡\0˜\0«\0¦\0¾\0´\0Î\0÷S\0Ð\0û\0\0Ž\0š\0’\0 \0œ\0¬\0¦\0Á\0´y\0Ò\0åQ\0¸\0è<:A>EBLJQNRTRYZ\\<:A>EBLJQNRTRYZ\\<>A>EBKHUNYZZ^\\\\=9DAOA@DRLPe^YV]=9@>FCPHaaQbW`CU>7A@HCNJXFRUbTHM9<?>F?NHMLPX^TRC=;E>GDLKOSQOWQcG><BADBNMRPYWU\\gL=;KERKUWSYWTKUnjXUY]]_KSPVPPKFhq>:?BPH]TQ\\UUJVm`@<CAFCNH\\SZ^\\Vhe=<A>ECLFRO[O\\[`a=:@?FBLHPN3POAMV<;>@FEJGOL5NS<KJ\";s:12:\"unknown:0011\";i:3432;s:12:\"unknown:001a\";s:40:\" \0 \0\";s:12:\"unknown:0021\";s:106:\"\0@ð\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\";s:15:\"ImageAdjustment\";s:14:\"AUTO \0\";s:16:\"ToneCompensation\";s:10:\"AUTO \0\";s:7:\"Adapter\";s:14:\"OFF \0\";s:19:\"ManualFocusDistance\";s:3:\"0 m\";s:11:\"DigitalZoom\";s:2:\"1x\";s:15:\"AFFocusPosition\";s:6:\"Center\";s:12:\"unknown:008f\";s:16:\" \0\";s:12:\"unknown:0091\";s:18:\"\0\0\0\0\0\0\0\0\0\0\0\0\0DC\0\0\";s:10:\"Saturation\";i:0;s:14:\"NoiseReduction\";s:6:\"OFF \0\";s:12:\"unknown:009b\";s:8:\"00000000\";s:12:\"unknown:009c\";s:20:\" \0\";s:12:\"unknown:009d\";i:0;s:12:\"unknown:009e\";i:0;s:12:\"unknown:00a8\";s:20:\"0100\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\";s:12:\"unknown:00a9\";s:16:\"NORMAL \0\";s:12:\"unknown:00aa\";s:16:\"NORMAL \0\";s:12:\"unknown:00ac\";s:14:\"VR-ON \0\0\";s:12:\"unknown:00ad\";s:10:\"STANDARD \0\";s:12:\"unknown:00ae\";s:12:\"\0\0\0\0\0\0\0\0\0\0\0\";s:12:\"unknown:00b2\";s:10:\"ÿÿÿÿÿÿÿÿÿ\0\";s:12:\"unknown:00b3\";s:8:\"OFF \0\";}s:10:\"KnownMaker\";i:1;s:14:\"UserCommentOld\";s:126:\"\0\0\0\0\0\0\0\0 \0\";s:15:\"FlashPixVersion\";s:9:\"version 1\";s:10:\"ColorSpace\";s:4:\"sRGB\";s:14:\"ExifImageWidth\";s:10:\"960 pixels\";s:15:\"ExifImageHeight\";s:11:\"1280 pixels\";s:10:\"FileSource\";s:26:\"Digital Still Camera010801\";s:9:\"SceneType\";s:23:\"Directly Photographeda4\";}s:11:\"IFD1NumTags\";i:6;s:4:\"IFD1\";a:6:{s:11:\"Compression\";s:16:\"Jpeg Compression\";s:11:\"xResolution\";s:27:\"300 dots per ResolutionUnit\";s:11:\"yResolution\";s:27:\"300 dots per ResolutionUnit\";s:14:\"ResolutionUnit\";s:4:\"Inch\";s:12:\"JpegIFOffset\";i:4532;s:15:\"JpegIFByteCount\";i:4054;}}'),('albums/Rotterdam_Reunion_2008/DSCN0073.JPG','a:19:{s:13:\"VerboseOutput\";i:0;s:6:\"Errors\";i:0;s:9:\"ValidJpeg\";i:1;s:13:\"ValidIPTCData\";i:0;s:13:\"ValidJFIFData\";i:0;s:13:\"ValidEXIFData\";i:1;s:13:\"ValidAPP2Data\";i:0;s:12:\"ValidCOMData\";i:0;s:8:\"APP1Size\";i:39493;s:6:\"Endien\";s:5:\"Intel\";s:11:\"IFD0NumTags\";i:11;s:4:\"IFD0\";a:11:{s:16:\"ImageDescription\";s:32:\" \0\";s:4:\"Make\";s:6:\"NIKON\0\";s:5:\"Model\";s:14:\"COOLPIX P5100\0\";s:11:\"Orientation\";s:14:\"Normal (O deg)\";s:11:\"xResolution\";s:27:\"300 dots per ResolutionUnit\";s:11:\"yResolution\";s:27:\"300 dots per ResolutionUnit\";s:14:\"ResolutionUnit\";s:4:\"Inch\";s:8:\"Software\";s:32:\"COOLPIX P5100V1.1 \0\";s:8:\"DateTime\";s:20:\"2008:09:19 18:45:54\0\";s:16:\"YCbCrPositioning\";s:11:\"Datum Point\";s:10:\"ExifOffset\";i:266;}s:10:\"IFD1Offset\";i:914;s:13:\"SubIFDNumTags\";i:35;s:6:\"SubIFD\";a:36:{s:12:\"ExposureTime\";s:9:\"1/220 sec\";s:7:\"FNumber\";s:5:\"f 4.8\";s:15:\"ExposureProgram\";s:7:\"Program\";s:15:\"ISOSpeedRatings\";i:64;s:11:\"ExifVersion\";s:11:\"version 2.2\";s:16:\"DateTimeOriginal\";s:20:\"2008:09:19 18:45:54\0\";s:17:\"DateTimedigitized\";s:20:\"2008:09:19 18:45:54\0\";s:23:\"ComponentsConfiguration\";s:5:\"YCbCr\";s:22:\"CompressedBitsPerPixel\";i:2;s:17:\"ExposureBiasValue\";s:4:\"0 EV\";s:16:\"MaxApertureValue\";s:5:\"f 2.7\";s:12:\"MeteringMode\";s:13:\"Multi-Segment\";s:11:\"LightSource\";s:15:\"Unknown or Auto\";s:5:\"Flash\";s:8:\"No Flash\";s:11:\"FocalLength\";s:7:\"15.7 mm\";s:9:\"MakerNote\";a:36:{s:12:\"unknown:0001\";i:0;s:10:\"ISOSetting\";i:0;s:9:\"ColorMode\";s:6:\"COLOR\0\";s:7:\"Quality\";s:8:\"NORMAL \0\";s:12:\"Whitebalance\";s:14:\"AUTO \0\";s:15:\"ImageSharpening\";s:8:\"AUTO \0\";s:9:\"FocusMode\";s:8:\"AF-S \0\";s:12:\"FlashSetting\";s:8:\"NORMAL \0\";s:12:\"unknown:000a\";d:9.2829999999999994741983755375258624553680419921875;s:12:\"ISOSelection\";s:8:\"AUTO \0\";s:8:\"DataDump\";s:2540:\"\0\0\0\0\0\0\0\0ÿ\0\01.1\0\0\0\0\0\0\0a1\0\0y\0\0\'\0\0O\0\0\rÚ\0\0¤\0\0˜\0\0Ê\0k\0Ó\0@0#\0\0\0\0\0\0\0\0\0\011\0\0\0\0\0\0\0\0\0\0\0\0\0\0 \0\0\0\0\01I8„\n´\0\0\0\0\0\0\0\0; m\'\0d›9ß!q\"\"\"\"ÿôÿµÿæÿÁÄá\0à~û,\0Ilô0S\0R\0\0P\0\0T\0\0J\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0ÄuÆk\0\0eô\n\0\0©\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0ˆˆð\0Ä\0\0 \0\0á\0 \0 \0\0©\0\0@©ÂÂ\0Ü\0á\0\0œ@ÂÂ\0€~>[\0\0\0\0\0\0\0\0\n?ö¹à\0\0\0\0\0\0\0\0•9(×\0\0\0\0\0\0 é - À Š\nÁ\0\0\0\0\0\0wwww\0ÃJ\0ÎMy\0ˆ\0\0Z<\0)\0\01ZsvIl\n\0\0\0\n\0\0Ý\0\0\0\0\0Ã;\0¾\0ëm\0\0\0\n\0·I\0·<\0·<h\Z\0\\\"K\0\0(\0° ½\0ˆE\0\0\0\0\0\0\0\0\0\0\0\0™\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0¯Û\0ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ~>[\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0•9(×\0\0\0\0\0\0ÿÿ\0\0ªªªª\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0O\0O\0#\0O\0d\0\0\0\02ø\0\00V\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0»»»»\0 \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0ÌÌÌÌ\0ºP\0¹T\0­L\0¬HP\\Q\Zv\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0ÝÝÝÝ\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0îîîî\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0T\0\0\0\0\0\0p\0p\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0peoœ\0¸\0º\0¸\0¸\0¸\0¹\0¹\0¸\0¹\0µ\0º\0¹\0¸\0·\0¹\0·\0¸\0º\0¸\0¸\0¸\0¹\0¹\0¸\0¹\0µ\0º\0¹\0¸\0·\0¹\0·\0Ã\0Â\0Ã\0Á\0Ã\0Á\0Â\0Â\0Ã\0Á\0À\0Ã\0Â\0Â\0Ã\0Á\0Ì\0Ê\0Ë\0Ê\0Ë\0Ë\0Ë\0Ê\0Ë\0Ë\0Ê\0Ê\0Ë\0Ë\0Ë\0É\0Í\0Î\0Ï\0Ð\0Ð\0Î\0Ñ\0Ï\0Î\0Ñ\0Ò\0Ñ\0Ð\0Ò\0Ó\0Ï\0Ð\0ê\0ì\0â\0Î\0Í\0Ï\0Ò\0Ñ\0Ï\0â\0Ò\0Ó\0Ó\0Ó\0Ó\0á\Z\0 \0Ú\0é\0à\0Ù\0Ú\0ø \0¨\0ª\0Ê\0¿\0®\0£\0·\0à\0Ù\0¿-0.\0£\0\0£\0¤\0¡\0£\0¢\0¤\0\0¦\0Ò\0¥\0¦\0Ø\0ª\0¦\0¡\0£\0œ\0\0¤\0 \0¥\0¥\0¡\0 :=\0¢\'\0¥\0¥\0¢\0¦\0£\0£\0§\0¥\0¨\0¨\0Ï\0¬U^\0âX\0¬\0¨\0­\0©\0§\0¬\0¨\0«\0ª\0¤\0®\0¨\0ø\0ã\0Þ\0ª\0ª\0­\0­\0©\0¨\0­\0«\0«\0¨\0¯\0­\0»\0°\0ª\0Å\0©\0¬\0­\0°\0®\0¬\0§\0®\0§\0«\0®\0¬\0³\0¶\0­\0°\0­\0®\0¯\0¶\0®\0°\0°\0«\0©\0°\0³\0®\0®\0·\0¯\0¹\0­\0®\0®\0²\0®\0­\0¯\0¯\0®\0«\0¯\0¯\0³\0«\0±\0»\0¬\0©QPSTQQPQPQRQPRTQQPSTQQPQPQRQPRTQUSSSTQOURUTRTUSTRRPSTRRTQTSVTVVUQMPMORROTQTRTSUSPQELQQSPOQLSSTSSS^NHTH`gXTMQRRY`JFJICBI@A=TLQXYbEBEGLJDEADNBHNHGFGABCMFMKFdSFYINCCIEEDKDJHfa_eIKMCLHMNEJGKSUU\\IJMGILJMGIILIPKKKIKJIHIFLGHIKKJFKGJDGGGJJKIHGMGHLGIHLRGGGLHNGKMKHL\";s:12:\"unknown:0011\";i:3432;s:12:\"unknown:001a\";s:40:\" \0 \0\";s:12:\"unknown:0021\";s:106:\"\0@ð\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\";s:15:\"ImageAdjustment\";s:14:\"AUTO \0\";s:16:\"ToneCompensation\";s:10:\"AUTO \0\";s:7:\"Adapter\";s:14:\"OFF \0\";s:19:\"ManualFocusDistance\";s:3:\"0 m\";s:11:\"DigitalZoom\";s:2:\"1x\";s:15:\"AFFocusPosition\";s:6:\"Center\";s:12:\"unknown:008f\";s:16:\" \0\";s:12:\"unknown:0091\";s:18:\"\0\0\0\0\0\0\0\0\0\0\0\0\0DC\0\0\";s:10:\"Saturation\";i:0;s:14:\"NoiseReduction\";s:6:\"OFF \0\";s:12:\"unknown:009b\";s:8:\"00000000\";s:12:\"unknown:009c\";s:20:\" \0\";s:12:\"unknown:009d\";i:0;s:12:\"unknown:009e\";i:0;s:12:\"unknown:00a8\";s:20:\"0100\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\";s:12:\"unknown:00a9\";s:16:\"NORMAL \0\";s:12:\"unknown:00aa\";s:16:\"NORMAL \0\";s:12:\"unknown:00ac\";s:14:\"VR-ON \0\0\";s:12:\"unknown:00ad\";s:10:\"STANDARD \0\";s:12:\"unknown:00ae\";s:12:\"\0\0\0\0\0\0\0\0\0\0\0\";s:12:\"unknown:00b2\";s:10:\"ÿÿÿÿÿÿÿÿ\0\";s:12:\"unknown:00b3\";s:8:\"OFF \0\";}s:10:\"KnownMaker\";i:1;s:14:\"UserCommentOld\";s:126:\"\0\0\0\0\0\0\0\0 \0\";s:15:\"FlashPixVersion\";s:9:\"version 1\";s:10:\"ColorSpace\";s:4:\"sRGB\";s:14:\"ExifImageWidth\";s:11:\"1280 pixels\";s:15:\"ExifImageHeight\";s:10:\"960 pixels\";s:26:\"ExifInteroperabilityOffset\";i:1008;s:10:\"FileSource\";s:20:\"Digital Still Camera\";s:9:\"SceneType\";s:21:\"Directly Photographed\";s:14:\"CustomerRender\";i:0;s:12:\"ExposureMode\";i:0;s:12:\"WhiteBalance\";i:0;s:16:\"DigitalZoomRatio\";i:0;s:12:\"unknown:a405\";i:74;s:16:\"SceneCaptureMode\";i:0;s:11:\"GainControl\";i:1;s:8:\"Contrast\";i:0;s:10:\"Saturation\";i:0;s:9:\"Sharpness\";i:0;s:12:\"unknown:a40c\";i:0;}s:11:\"IFD1NumTags\";i:6;s:4:\"IFD1\";a:6:{s:11:\"Compression\";s:16:\"Jpeg Compression\";s:11:\"xResolution\";s:27:\"300 dots per ResolutionUnit\";s:11:\"yResolution\";s:27:\"300 dots per ResolutionUnit\";s:14:\"ResolutionUnit\";s:4:\"Inch\";s:12:\"JpegIFOffset\";i:8692;s:15:\"JpegIFByteCount\";i:3306;}s:26:\"InteroperabilityIFDNumTags\";i:2;s:19:\"InteroperabilityIFD\";a:2:{s:21:\"InteroperabilityIndex\";s:4:\"R98\0\";s:23:\"InteroperabilityVersion\";s:9:\"version 1\";}}'),('albums/Rotterdam_Reunion_2008/DSCN0075.JPG','a:17:{s:13:\"VerboseOutput\";i:0;s:6:\"Errors\";i:0;s:9:\"ValidJpeg\";i:1;s:13:\"ValidIPTCData\";i:0;s:13:\"ValidJFIFData\";i:0;s:13:\"ValidEXIFData\";i:1;s:13:\"ValidAPP2Data\";i:0;s:12:\"ValidCOMData\";i:0;s:8:\"APP1Size\";i:8057;s:6:\"Endien\";s:5:\"Intel\";s:11:\"IFD0NumTags\";i:21;s:4:\"IFD0\";a:21:{s:16:\"ImageDescription\";s:32:\" \0\";s:4:\"Make\";s:6:\"NIKON\0\";s:5:\"Model\";s:14:\"COOLPIX P5100\0\";s:11:\"xResolution\";s:27:\"300 dots per ResolutionUnit\";s:11:\"yResolution\";s:27:\"300 dots per ResolutionUnit\";s:14:\"ResolutionUnit\";i:12648450;s:8:\"Software\";s:32:\"COOLPIX P5100V1.1 \0\";s:8:\"DateTime\";s:20:\"2008:09:19 18:48:54\0\";s:16:\"YCbCrPositioning\";s:11:\"Datum Point\";s:10:\"ExifOffset\";i:394;s:14:\"CustomerRender\";i:10682368;s:12:\"ExposureMode\";i:17301504;s:12:\"WhiteBalance\";i:0;s:16:\"DigitalZoomRatio\";i:0;s:12:\"unknown:a405\";i:10682442;s:16:\"SceneCaptureMode\";i:17301504;s:11:\"GainControl\";i:1;s:8:\"Contrast\";i:12648448;s:10:\"Saturation\";i:10682368;s:9:\"Sharpness\";i:17301504;s:12:\"unknown:a40c\";i:0;}s:10:\"IFD1Offset\";i:4438;s:13:\"SubIFDNumTags\";i:23;s:6:\"SubIFD\";a:24:{s:12:\"ExposureTime\";s:9:\"1/212 sec\";s:7:\"FNumber\";s:5:\"f 5.4\";s:15:\"ExposureProgram\";s:7:\"Program\";s:15:\"ISOSpeedRatings\";i:12648512;s:11:\"ExifVersion\";s:11:\"version 2.2\";s:16:\"DateTimeOriginal\";s:20:\"2008:09:19 18:48:54\0\";s:17:\"DateTimedigitized\";s:20:\"2008:09:19 18:48:54\0\";s:23:\"ComponentsConfiguration\";s:5:\"YCbCr\";s:22:\"CompressedBitsPerPixel\";i:2;s:17:\"ExposureBiasValue\";s:4:\"0 EV\";s:16:\"MaxApertureValue\";s:5:\"f 2.7\";s:12:\"MeteringMode\";s:17:\"Unknown: 12648453\";s:11:\"LightSource\";s:17:\"Unknown: 10682368\";s:5:\"Flash\";s:17:\"Unknown: 17301528\";s:11:\"FocalLength\";s:7:\"15.7 mm\";s:9:\"MakerNote\";a:36:{s:12:\"unknown:0001\";i:0;s:10:\"ISOSetting\";i:0;s:9:\"ColorMode\";s:6:\"COLOR\0\";s:7:\"Quality\";s:8:\"NORMAL \0\";s:12:\"Whitebalance\";s:14:\"AUTO \0\";s:15:\"ImageSharpening\";s:8:\"AUTO \0\";s:9:\"FocusMode\";s:8:\"AF-S \0\";s:12:\"FlashSetting\";s:8:\"NORMAL \0\";s:12:\"unknown:000a\";d:9.2829999999999994741983755375258624553680419921875;s:12:\"ISOSelection\";s:8:\"AUTO \0\";s:8:\"DataDump\";s:2540:\"\0\0\0\0\0\0\0\0\0\0\01.1\0\0\0\0\0\0\0a1\0\0\rÞ\0\0\"„\0\0Å\0\0\nž\0\0ª\0\0˜\0\0l\0k\0Ó\0@6(\0\0\0\0\0\0\0\0\0\0/`\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0/xE¼\n\0\0\0\0\0\0\0\0*X\0\0dœ@…\Z\"\"\"\"ÿôÿµÿæÿÁËá\0à~û,\0{ô0S\0R\0\0P\0\0T\0\0J\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0ÄuÆk\0\0eô\n\0\0©\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0ˆˆð\0Ë\0\0 \0\0á\0 \0 \0\0©\0\0@©ÇÂ\0À\0†\0\0²ÂÇ\0€)úþÓ\0\0\0\0\0\0\0\0žü/\0\0\0\0\0\0\0\0Þ%>H\r\0\0\0\0\0\0n÷\"£\0\0\0\0\0\0wwww\0œ>\0ªBƒ\0ß\0\0\0d\0\n\0\0\ngí@{¹ \0\0\0\0 \0\0,\0\0\0\0\0\0Ã;\0È\0ëmL \r\0\0\0\0\0Š;\0Š7\0Š7-\0\0>l\0\0\0 \0\0° ½\0ˆE\0\0\0\0\0\0\0\0\0\0\0\0™\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0¯Û\0ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ)úþÓ\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0Þ%>H\r\0\0\0\0\0\0ÿÿ\0\0ªªªª\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0O\0O\0(\0O\0d\0\0\0\01—\0\08Ý\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0»»»»\0 \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0ÌÌÌÌ\0‡1\0˜D\0™B\0š>r5A769596<<?<B@15<646:5<7<9<<D@:54568;577;8??CB53;397;7<9>;?@A?86979869:=><AAWL21@7LEOQNQVT\\VZZ30N2_Z_]]][_FTCB511254MG`V]_QWBL0234528578K:^VV_123383538897@;\\Q1342726776<;<:B@1/1584848698=>>A\";s:12:\"unknown:0011\";i:3432;s:12:\"unknown:001a\";s:40:\" \0 \0\";s:12:\"unknown:0021\";s:106:\"\0@ð\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\";s:15:\"ImageAdjustment\";s:14:\"AUTO \0\";s:16:\"ToneCompensation\";s:10:\"AUTO \0\";s:7:\"Adapter\";s:14:\"OFF \0\";s:19:\"ManualFocusDistance\";s:3:\"0 m\";s:11:\"DigitalZoom\";s:2:\"1x\";s:15:\"AFFocusPosition\";s:6:\"Center\";s:12:\"unknown:008f\";s:16:\" \0\";s:12:\"unknown:0091\";s:18:\"\0\0\0\0\0\0\0\0\0\0\0\0\0DC\0\0\";s:10:\"Saturation\";i:0;s:14:\"NoiseReduction\";s:6:\"OFF \0\";s:12:\"unknown:009b\";s:8:\"00000000\";s:12:\"unknown:009c\";s:20:\" \0\";s:12:\"unknown:009d\";i:0;s:12:\"unknown:009e\";i:0;s:12:\"unknown:00a8\";s:20:\"0100\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\";s:12:\"unknown:00a9\";s:16:\"NORMAL \0\";s:12:\"unknown:00aa\";s:16:\"NORMAL \0\";s:12:\"unknown:00ac\";s:14:\"VR-ON \0\0\";s:12:\"unknown:00ad\";s:10:\"STANDARD \0\";s:12:\"unknown:00ae\";s:12:\"\0\0\0\0\0\0\0\0\0\0\0\";s:12:\"unknown:00b2\";s:10:\"ÿÿÿÿÿÿÿÿÿ\0\";s:12:\"unknown:00b3\";s:8:\"OFF \0\";}s:10:\"KnownMaker\";i:1;s:14:\"UserCommentOld\";s:126:\"\0\0\0\0\0\0\0\0 \0\";s:15:\"FlashPixVersion\";s:9:\"version 1\";s:10:\"ColorSpace\";s:4:\"sRGB\";s:14:\"ExifImageWidth\";s:10:\"960 pixels\";s:15:\"ExifImageHeight\";s:11:\"1280 pixels\";s:10:\"FileSource\";s:26:\"Digital Still Camera010801\";s:9:\"SceneType\";s:23:\"Directly Photographeda4\";}s:11:\"IFD1NumTags\";i:6;s:4:\"IFD1\";a:6:{s:11:\"Compression\";s:16:\"Jpeg Compression\";s:11:\"xResolution\";s:27:\"300 dots per ResolutionUnit\";s:11:\"yResolution\";s:27:\"300 dots per ResolutionUnit\";s:14:\"ResolutionUnit\";s:4:\"Inch\";s:12:\"JpegIFOffset\";i:4532;s:15:\"JpegIFByteCount\";i:3517;}}'),('albums/Rotterdam_Reunion_2008/DSCN0080.JPG','a:19:{s:13:\"VerboseOutput\";i:0;s:6:\"Errors\";i:0;s:9:\"ValidJpeg\";i:1;s:13:\"ValidIPTCData\";i:0;s:13:\"ValidJFIFData\";i:0;s:13:\"ValidEXIFData\";i:1;s:13:\"ValidAPP2Data\";i:0;s:12:\"ValidCOMData\";i:0;s:8:\"APP1Size\";i:39493;s:6:\"Endien\";s:5:\"Intel\";s:11:\"IFD0NumTags\";i:11;s:4:\"IFD0\";a:11:{s:16:\"ImageDescription\";s:32:\" \0\";s:4:\"Make\";s:6:\"NIKON\0\";s:5:\"Model\";s:14:\"COOLPIX P5100\0\";s:11:\"Orientation\";s:14:\"Normal (O deg)\";s:11:\"xResolution\";s:27:\"300 dots per ResolutionUnit\";s:11:\"yResolution\";s:27:\"300 dots per ResolutionUnit\";s:14:\"ResolutionUnit\";s:4:\"Inch\";s:8:\"Software\";s:32:\"COOLPIX P5100V1.1 \0\";s:8:\"DateTime\";s:20:\"2008:09:20 12:26:53\0\";s:16:\"YCbCrPositioning\";s:11:\"Datum Point\";s:10:\"ExifOffset\";i:266;}s:10:\"IFD1Offset\";i:914;s:13:\"SubIFDNumTags\";i:35;s:6:\"SubIFD\";a:36:{s:12:\"ExposureTime\";s:9:\"1/275 sec\";s:7:\"FNumber\";s:5:\"f 6.1\";s:15:\"ExposureProgram\";s:7:\"Program\";s:15:\"ISOSpeedRatings\";i:64;s:11:\"ExifVersion\";s:11:\"version 2.2\";s:16:\"DateTimeOriginal\";s:20:\"2008:09:20 12:26:53\0\";s:17:\"DateTimedigitized\";s:20:\"2008:09:20 12:26:53\0\";s:23:\"ComponentsConfiguration\";s:5:\"YCbCr\";s:22:\"CompressedBitsPerPixel\";i:2;s:17:\"ExposureBiasValue\";s:4:\"0 EV\";s:16:\"MaxApertureValue\";s:5:\"f 2.7\";s:12:\"MeteringMode\";s:13:\"Multi-Segment\";s:11:\"LightSource\";s:15:\"Unknown or Auto\";s:5:\"Flash\";s:8:\"No Flash\";s:11:\"FocalLength\";s:6:\"7.5 mm\";s:9:\"MakerNote\";a:36:{s:12:\"unknown:0001\";i:0;s:10:\"ISOSetting\";i:0;s:9:\"ColorMode\";s:6:\"COLOR\0\";s:7:\"Quality\";s:8:\"NORMAL \0\";s:12:\"Whitebalance\";s:14:\"AUTO \0\";s:15:\"ImageSharpening\";s:8:\"AUTO \0\";s:9:\"FocusMode\";s:8:\"AF-S \0\";s:12:\"FlashSetting\";s:8:\"NORMAL \0\";s:12:\"unknown:000a\";d:9.2829999999999994741983755375258624553680419921875;s:12:\"ISOSelection\";s:8:\"AUTO \0\";s:8:\"DataDump\";s:2540:\"\0\0\0\0\0\0\0\0\0\0\01.1\0\0\0\0\0\0\0a1\0\0\0\03þ\0\0\0m\0\0Ž\0\0 ï\0\0 \0\04\0k\0Ó\0@=?\0\0\0\0\0\0\0\0\0\0(6\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0(N*Ìš\0\0\0\0\0\0\0\0\0@ `j\0d\'+$/â\"\"\"\"ÿôÿµÿæÿÁÝå\0\0à~û,\0„ô0S\0R\0\0P\0\0T\0\0J\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0ÄuÆk\0\0eô\n\0\0©\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0ˆˆð\0Ý\0\0\0 \0\0å\0 \0 \0\0%\0\0\0Ô%\0 ÝÔ\0¸ì\0\0N ÔÝ\0€¥µ¢zP-ïž( #\r\r± ê ª\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0wwwwF C‡\0\nü\0\0\0d\0\'\0\0\ngÔš„’!\0\0\0 \0\0+\0\0\0\0\0\0Ã;\0È\0ëm= \r\01\0\0\0Þ@\0Þ@\0Þ@ød\0\r?\00 \r(\0\0° ½\0ˆE\0\0\0\0\0\0\0\0\0\0\0\0™\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0¯Û\0ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ¥µ¢zP-ïž\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0ÿÿ\0\0ªªªª\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0O\0O\0?\0O\0d\0\0\0\04¶\0\0-¼\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0»»»»\0 \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0ÌÌÌÌ\0ÞMO\0ÄP\0ÚS_Á®\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0ÝÝÝÝ\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0îîîî\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0T\0\0\0\0\0p\0p\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0peoœ\0å\0Þ\0ç\0â \0Ü\0¹\0ì\0Ñ\0ÕD\0å\0Þ\0ç\0â \0Ü\0¹\0ì\0Ñ\0ÕD\0ýA#\0Õ\0è\0·\0Ç\0¶\0¥\0ÿ\0ýP/\0F5\0ñ\0Â;\0¥\0Ä\0—\0¥ A<3!<1\0ÀÌ\0æ\0â\0¦\0Ú\0Ð\0²5\0é04)2#5\0þà\0ã\0Û\0Â\0ß\0Ç\0Ó7\0æ7681<;\0ðF\0ã\0ä\0Ö\0Þ\0Â\0Ç0\0Ö17/ 7.\0Þ\0á2=\0Ý\0Ò7\0ß6F\0÷\r7\0à0\0Ü78\0ä41\0Ý6<\0Ú\0û.)K1\0æO\0à6$\0ï\0á\0ì\r\'PM\0ñP\0ã\0Þ5E\0Ö\0ã\0ç 12X C\0Ù\0Û)\0Ç \0õ\0Å\0ÿ\0ú\0êS6B\0×\0ç\0½\0Ë\0È\0í\0Ì\0ì\0í\0ð\0æ\0â\0èC\0Ô\0Ý\0Ñ\0¼\0ß\0ç\0±\0ë\0ì\0ð\0è\0Ã\0Ñ\0Ý\0Þ\0ß\0Ø\0Ä\0Ò\0Ú\0ê\0ã\0ð\0î\0é\0ë\0¡\0½\0Ð\0Ø\0ó\0î\0Ú\0ÁFMRH1=M2UJ>E<VO\'FMRH1=M2UJ>E<VO\'IE@D\'DX<C;:4UE1@B9?B J(EI<=DY>>@@B>I\0äURAJ@LAOA>C6<?O\0âPTBTHC;JE=9<8:J1WQARF>CMA=CED:G3@WA=\"88V<6JLH:ILFO=DMB5P=5FODKOKL;7GS;AQ?C8?A4IDQK4:M<OOD3EJR;MMDIA3UFLPKA@PIWFTVI6IUBJCP;ILJ?VUWXEIVK*LIGEMRhWUVTHE@GHOPLJLVLXWTUC;HDNYSH\";s:12:\"unknown:0011\";i:3432;s:12:\"unknown:001a\";s:40:\" \0 \0\";s:12:\"unknown:0021\";s:106:\"\0@ð\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\";s:15:\"ImageAdjustment\";s:14:\"AUTO \0\";s:16:\"ToneCompensation\";s:10:\"AUTO \0\";s:7:\"Adapter\";s:14:\"OFF \0\";s:19:\"ManualFocusDistance\";s:3:\"0 m\";s:11:\"DigitalZoom\";s:2:\"1x\";s:15:\"AFFocusPosition\";s:6:\"Center\";s:12:\"unknown:008f\";s:16:\" \0\";s:12:\"unknown:0091\";s:18:\"\0\0\0\0\0\0\0\0\0\0\0\0\0\0DC\0\0\";s:10:\"Saturation\";i:0;s:14:\"NoiseReduction\";s:6:\"OFF \0\";s:12:\"unknown:009b\";s:8:\"00000000\";s:12:\"unknown:009c\";s:20:\" \0\";s:12:\"unknown:009d\";i:0;s:12:\"unknown:009e\";i:0;s:12:\"unknown:00a8\";s:20:\"0100\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\";s:12:\"unknown:00a9\";s:16:\"NORMAL \0\";s:12:\"unknown:00aa\";s:16:\"NORMAL \0\";s:12:\"unknown:00ac\";s:14:\"VR-ON \0\0\";s:12:\"unknown:00ad\";s:10:\"STANDARD \0\";s:12:\"unknown:00ae\";s:12:\"\0\0\0\0\0\0\0\0\0\0\0\";s:12:\"unknown:00b2\";s:10:\"ÿÿÿÿÿÿÿÿÿ\0\";s:12:\"unknown:00b3\";s:8:\"OFF \0\";}s:10:\"KnownMaker\";i:1;s:14:\"UserCommentOld\";s:126:\"\0\0\0\0\0\0\0\0 \0\";s:15:\"FlashPixVersion\";s:9:\"version 1\";s:10:\"ColorSpace\";s:4:\"sRGB\";s:14:\"ExifImageWidth\";s:11:\"1280 pixels\";s:15:\"ExifImageHeight\";s:10:\"960 pixels\";s:26:\"ExifInteroperabilityOffset\";i:1008;s:10:\"FileSource\";s:20:\"Digital Still Camera\";s:9:\"SceneType\";s:21:\"Directly Photographed\";s:14:\"CustomerRender\";i:0;s:12:\"ExposureMode\";i:0;s:12:\"WhiteBalance\";i:0;s:16:\"DigitalZoomRatio\";i:0;s:12:\"unknown:a405\";i:35;s:16:\"SceneCaptureMode\";i:0;s:11:\"GainControl\";i:1;s:8:\"Contrast\";i:0;s:10:\"Saturation\";i:0;s:9:\"Sharpness\";i:0;s:12:\"unknown:a40c\";i:0;}s:11:\"IFD1NumTags\";i:6;s:4:\"IFD1\";a:6:{s:11:\"Compression\";s:16:\"Jpeg Compression\";s:11:\"xResolution\";s:27:\"300 dots per ResolutionUnit\";s:11:\"yResolution\";s:27:\"300 dots per ResolutionUnit\";s:14:\"ResolutionUnit\";s:4:\"Inch\";s:12:\"JpegIFOffset\";i:8692;s:15:\"JpegIFByteCount\";i:6203;}s:26:\"InteroperabilityIFDNumTags\";i:2;s:19:\"InteroperabilityIFD\";a:2:{s:21:\"InteroperabilityIndex\";s:4:\"R98\0\";s:23:\"InteroperabilityVersion\";s:9:\"version 1\";}}'),('albums/Rotterdam_Reunion_2008/DSCN0081.JPG','a:19:{s:13:\"VerboseOutput\";i:0;s:6:\"Errors\";i:0;s:9:\"ValidJpeg\";i:1;s:13:\"ValidIPTCData\";i:0;s:13:\"ValidJFIFData\";i:0;s:13:\"ValidEXIFData\";i:1;s:13:\"ValidAPP2Data\";i:0;s:12:\"ValidCOMData\";i:0;s:8:\"APP1Size\";i:39493;s:6:\"Endien\";s:5:\"Intel\";s:11:\"IFD0NumTags\";i:11;s:4:\"IFD0\";a:11:{s:16:\"ImageDescription\";s:32:\" \0\";s:4:\"Make\";s:6:\"NIKON\0\";s:5:\"Model\";s:14:\"COOLPIX P5100\0\";s:11:\"Orientation\";s:14:\"Normal (O deg)\";s:11:\"xResolution\";s:27:\"300 dots per ResolutionUnit\";s:11:\"yResolution\";s:27:\"300 dots per ResolutionUnit\";s:14:\"ResolutionUnit\";s:4:\"Inch\";s:8:\"Software\";s:32:\"COOLPIX P5100V1.1 \0\";s:8:\"DateTime\";s:20:\"2008:09:20 12:34:35\0\";s:16:\"YCbCrPositioning\";s:11:\"Datum Point\";s:10:\"ExifOffset\";i:266;}s:10:\"IFD1Offset\";i:914;s:13:\"SubIFDNumTags\";i:35;s:6:\"SubIFD\";a:36:{s:12:\"ExposureTime\";s:9:\"1/142 sec\";s:7:\"FNumber\";s:5:\"f 3.8\";s:15:\"ExposureProgram\";s:7:\"Program\";s:15:\"ISOSpeedRatings\";i:64;s:11:\"ExifVersion\";s:11:\"version 2.2\";s:16:\"DateTimeOriginal\";s:20:\"2008:09:20 12:34:35\0\";s:17:\"DateTimedigitized\";s:20:\"2008:09:20 12:34:35\0\";s:23:\"ComponentsConfiguration\";s:5:\"YCbCr\";s:22:\"CompressedBitsPerPixel\";i:2;s:17:\"ExposureBiasValue\";s:4:\"0 EV\";s:16:\"MaxApertureValue\";s:5:\"f 2.7\";s:12:\"MeteringMode\";s:13:\"Multi-Segment\";s:11:\"LightSource\";s:15:\"Unknown or Auto\";s:5:\"Flash\";s:8:\"No Flash\";s:11:\"FocalLength\";s:6:\"7.5 mm\";s:9:\"MakerNote\";a:36:{s:12:\"unknown:0001\";i:0;s:10:\"ISOSetting\";i:0;s:9:\"ColorMode\";s:6:\"COLOR\0\";s:7:\"Quality\";s:8:\"NORMAL \0\";s:12:\"Whitebalance\";s:14:\"AUTO \0\";s:15:\"ImageSharpening\";s:8:\"AUTO \0\";s:9:\"FocusMode\";s:8:\"AF-S \0\";s:12:\"FlashSetting\";s:8:\"NORMAL \0\";s:12:\"unknown:000a\";d:9.2829999999999994741983755375258624553680419921875;s:12:\"ISOSelection\";s:8:\"AUTO \0\";s:8:\"DataDump\";s:2540:\"\0\0\0\0\0\0\0\0\0\0\01.1\0\0\0\0\0\0\0a1\0\0E\0\0^\0\0§\0\0ê\0\0 z\0\0\0\0Š\0k\0Ó\0@&(\0\0\0\0\0\0\0\0\0\0,’\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 ,ª&Ê`\0\0\0\0\0\0\0\0\0J\0\0 \0di)_3¼\"\"\"\"ÿôÿµÿæÿÁäæ\0\0à~û,\0O\\ô0S\0R\0\0P\0\0T\0\0J\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0ÄuÆk\0\0eô\n\0\0©\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0ˆˆð\0ä\0\0\0 \0\0æ\0 \0 \0\0$\0\0\0Ô$\0äÔ\0·\0\0*Ôä\0€þnÇüÄné‡ìÀ8C놏\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0wwww\0óE\0äAj\0Dn\0\0d\0\0\0\06YýO\\•\0\0\0\0/\0\0+\0\0\0\0\0Ã;\0¯\0ëmL/0\06\0$R$G$G\"³\0\0@\0\01\0° ½\0ˆE\0\0\0\0\0\0\0\0\0\0\0\0™\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0¯Û\0ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿþnÇüÄnégé\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0ÿÿ\0\0ªªªª\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0O\0O\0(\0O\0d\0\0\0\04\0\0Î\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0»»»»\0 \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0ÌÌÌÌWW\0Ù;\0ÂAO<î½ á\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0ÝÝÝÝ\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0îîîî\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0T\0\0\0\0\0\0p\0p\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0peoœ \' /8#7&  \' /8#7& \0÷ \0ü\0\0ÿ\Z!> \0þ$ (\0õ\0ô!\0ÿ\r \0ý\n\0ÿU?\0\0î\0ü\0ò\0ö3%3E(=1 \0ö\0õ\0ñ\0­\0«2-OJ8.Vb\0(\0É\0ä\0˜8$\0œC[\0í0\0²\0Ì\0\" &\0Ë\0ó\0“\0ï\0é\0›$\0’\0ì\0­\0¼\0é\0µ5-\0á%\0–\0¸\0Å\0¥\0È\0Ê\0Ÿ\0«\0°\0¸\0Ö\0ªI:\0ò\0½\0¹\0¹\0ž\0»\0Ç\0™\0\0¥\0©\0²\0¯G:\0ö\0¦\0Á\0Ÿ\0’\0“\0Ÿ\0š\0¤\0ß\0á\0É\0³>@,\0š\0Ó\0Î\0œ\0Û \0\0°\0û\0ý\0¿\0¶:<\0ò/\0à\0î\0Ê\0“\0ã\0ß\0‚\0®\0ø\0ó\0Î\0¶5#\0ó#\0s\0ñ\0n\0–\0Ê\0{\0‰\0®\0ß\0÷\0Ù\0´ /\0ü \0k\0ð\0¥\0\0Å\0Æ\0š\0¥\0•\0ÂTWUM^ELYU`b_[UW;TWUM^ELYU`b_[UW;OWRS`OHYMZ[V^C^M=cONLEL[HSLLUJQFTRIWURKRYFUX?Mc$\0ùAA&VQZW?ML@SL\0ýO@4Z:bf9ST<RVLJLF6&R4YU1WA?C>C;J?4F<2?5.F:CJ<>FHB8C<0>=/::B=7C.JK*I4)>7=;6>8?K;CG8@S%LQ3BroF@M?JJ=L|*^Œ,>šœ??M0LjJo*I66—™@B#(M!QMa%If-=s‘;?:\nM0fKI,PG4?88A9\";s:12:\"unknown:0011\";i:3432;s:12:\"unknown:001a\";s:40:\" \0 \0\";s:12:\"unknown:0021\";s:106:\"\0@ð\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\";s:15:\"ImageAdjustment\";s:14:\"AUTO \0\";s:16:\"ToneCompensation\";s:10:\"AUTO \0\";s:7:\"Adapter\";s:14:\"OFF \0\";s:19:\"ManualFocusDistance\";s:3:\"0 m\";s:11:\"DigitalZoom\";s:2:\"1x\";s:15:\"AFFocusPosition\";s:6:\"Center\";s:12:\"unknown:008f\";s:16:\" \0\";s:12:\"unknown:0091\";s:18:\"\0\0\0\0\0\0\0\0\0\0\0\0\0\0DC\0\0\";s:10:\"Saturation\";i:0;s:14:\"NoiseReduction\";s:6:\"OFF \0\";s:12:\"unknown:009b\";s:8:\"00000000\";s:12:\"unknown:009c\";s:20:\" \0\";s:12:\"unknown:009d\";i:0;s:12:\"unknown:009e\";i:0;s:12:\"unknown:00a8\";s:20:\"0100\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\";s:12:\"unknown:00a9\";s:16:\"NORMAL \0\";s:12:\"unknown:00aa\";s:16:\"NORMAL \0\";s:12:\"unknown:00ac\";s:14:\"VR-ON \0\0\";s:12:\"unknown:00ad\";s:10:\"STANDARD \0\";s:12:\"unknown:00ae\";s:12:\"\0\0\0\0\0\0\0\0\0\0\0\";s:12:\"unknown:00b2\";s:10:\"ÿÿÿÿÿÿÿÿÿ\0\";s:12:\"unknown:00b3\";s:8:\"OFF \0\";}s:10:\"KnownMaker\";i:1;s:14:\"UserCommentOld\";s:126:\"\0\0\0\0\0\0\0\0 \0\";s:15:\"FlashPixVersion\";s:9:\"version 1\";s:10:\"ColorSpace\";s:4:\"sRGB\";s:14:\"ExifImageWidth\";s:11:\"1280 pixels\";s:15:\"ExifImageHeight\";s:10:\"960 pixels\";s:26:\"ExifInteroperabilityOffset\";i:1008;s:10:\"FileSource\";s:20:\"Digital Still Camera\";s:9:\"SceneType\";s:21:\"Directly Photographed\";s:14:\"CustomerRender\";i:0;s:12:\"ExposureMode\";i:0;s:12:\"WhiteBalance\";i:0;s:16:\"DigitalZoomRatio\";i:0;s:12:\"unknown:a405\";i:35;s:16:\"SceneCaptureMode\";i:0;s:11:\"GainControl\";i:1;s:8:\"Contrast\";i:0;s:10:\"Saturation\";i:0;s:9:\"Sharpness\";i:0;s:12:\"unknown:a40c\";i:0;}s:11:\"IFD1NumTags\";i:6;s:4:\"IFD1\";a:6:{s:11:\"Compression\";s:16:\"Jpeg Compression\";s:11:\"xResolution\";s:27:\"300 dots per ResolutionUnit\";s:11:\"yResolution\";s:27:\"300 dots per ResolutionUnit\";s:14:\"ResolutionUnit\";s:4:\"Inch\";s:12:\"JpegIFOffset\";i:8692;s:15:\"JpegIFByteCount\";i:6266;}s:26:\"InteroperabilityIFDNumTags\";i:2;s:19:\"InteroperabilityIFD\";a:2:{s:21:\"InteroperabilityIndex\";s:4:\"R98\0\";s:23:\"InteroperabilityVersion\";s:9:\"version 1\";}}'); /*!40000 ALTER TABLE `cpg14x_exif` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `cpg14x_favpics` -- DROP TABLE IF EXISTS `cpg14x_favpics`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `cpg14x_favpics` ( `user_id` int(11) NOT NULL DEFAULT '0', `user_favpics` text NOT NULL, PRIMARY KEY (`user_id`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1 COMMENT='Stores the server side favourites'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `cpg14x_favpics` -- LOCK TABLES `cpg14x_favpics` WRITE; /*!40000 ALTER TABLE `cpg14x_favpics` DISABLE KEYS */; /*!40000 ALTER TABLE `cpg14x_favpics` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `cpg14x_filetypes` -- DROP TABLE IF EXISTS `cpg14x_filetypes`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `cpg14x_filetypes` ( `extension` varchar(7) NOT NULL DEFAULT '', `mime` varchar(30) DEFAULT NULL, `content` varchar(15) DEFAULT NULL, `player` varchar(5) DEFAULT NULL, PRIMARY KEY (`extension`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1 COMMENT='Used to store the file extensions'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `cpg14x_filetypes` -- LOCK TABLES `cpg14x_filetypes` WRITE; /*!40000 ALTER TABLE `cpg14x_filetypes` DISABLE KEYS */; INSERT INTO `cpg14x_filetypes` VALUES ('jpg','image/jpg','image',''),('jpeg','image/jpeg','image',''),('jpe','image/jpe','image',''),('gif','image/gif','image',''),('png','image/png','image',''),('bmp','image/bmp','image',''),('jpc','image/jpc','image',''),('jp2','image/jp2','image',''),('jpx','image/jpx','image',''),('jb2','image/jb2','image',''),('swc','image/swc','image',''),('iff','image/iff','image',''),('asf','video/x-ms-asf','movie','WMP'),('asx','video/x-ms-asx','movie','WMP'),('mpg','video/mpeg','movie','WMP'),('mpeg','video/mpeg','movie','WMP'),('wmv','video/x-ms-wmv','movie','WMP'),('swf','application/x-shockwave-flash','movie','SWF'),('avi','video/avi','movie','WMP'),('mov','video/quicktime','movie','QT'),('mp3','audio/mpeg3','audio','WMP'),('midi','audio/midi','audio','WMP'),('mid','audio/midi','audio','WMP'),('wma','audio/x-ms-wma','audio','WMP'),('wav','audio/wav','audio','WMP'),('ogg','audio/ogg','audio',''),('psd','image/psd','image',''),('ram','audio/x-pn-realaudio','document','RMP'),('ra','audio/x-realaudio','document','RMP'),('rm','audio/x-realmedia','document','RMP'),('tiff','image/tiff','document',''),('tif','image/tif','document',''),('doc','application/msword','document',''),('txt','text/plain','document',''),('rtf','text/richtext','document',''),('pdf','application/pdf','document',''),('xls','application/excel','document',''),('pps','application/powerpoint','document',''),('ppt','application/powerpoint','document',''),('zip','application/zip','document',''),('rar','application/rar','document',''),('gz','application/gz','document',''),('mdb','application/msaccess','document',''); /*!40000 ALTER TABLE `cpg14x_filetypes` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `cpg14x_hit_stats` -- DROP TABLE IF EXISTS `cpg14x_hit_stats`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `cpg14x_hit_stats` ( `sid` int(11) NOT NULL AUTO_INCREMENT, `pid` varchar(100) NOT NULL DEFAULT '', `ip` varchar(20) NOT NULL DEFAULT '', `search_phrase` varchar(255) NOT NULL DEFAULT '', `sdate` bigint(20) NOT NULL DEFAULT '0', `referer` text NOT NULL, `browser` varchar(255) NOT NULL DEFAULT '', `os` varchar(50) NOT NULL DEFAULT '', PRIMARY KEY (`sid`) ) ENGINE=MyISAM AUTO_INCREMENT=9 DEFAULT CHARSET=latin1 COMMENT='Detailed stats about hits, only used when enabled'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `cpg14x_hit_stats` -- LOCK TABLES `cpg14x_hit_stats` WRITE; /*!40000 ALTER TABLE `cpg14x_hit_stats` DISABLE KEYS */; INSERT INTO `cpg14x_hit_stats` VALUES (1,'41','193.80.57.6','',1254849148,'http%3A%2F%2Fmygallery.mamweb.at%2Fthumbnails.php%3Falbum%3D1%26page%3D3','Unknown','Windows XP'),(2,'34','193.80.57.6','',1254849160,'http%3A%2F%2Fmygallery.mamweb.at%2Fdisplayimage.php%3Falbum%3D1%26pos%3D26','Unknown','Windows XP'),(3,'36','193.80.57.6','',1254849162,'http%3A%2F%2Fmygallery.mamweb.at%2Fdisplayimage.php%3Falbum%3D1%26pos%3D27','Unknown','Windows XP'),(4,'40','193.80.57.6','',1254849165,'http%3A%2F%2Fmygallery.mamweb.at%2Fdisplayimage.php%3Falbum%3D1%26pos%3D28','Unknown','Windows XP'),(5,'6','193.80.57.6','',1254849167,'http%3A%2F%2Fmygallery.mamweb.at%2Fdisplayimage.php%3Falbum%3D1%26pos%3D29','Unknown','Windows XP'),(6,'33','193.80.57.6','',1254849169,'http%3A%2F%2Fmygallery.mamweb.at%2Fdisplayimage.php%3Falbum%3D1%26pos%3D30','Unknown','Windows XP'),(7,'38','193.80.57.6','',1254849171,'http%3A%2F%2Fmygallery.mamweb.at%2Fdisplayimage.php%3Falbum%3D1%26pos%3D31','Unknown','Windows XP'),(8,'32','193.80.57.6','',1254849176,'http%3A%2F%2Fmygallery.mamweb.at%2Fdisplayimage.php%3Falbum%3D1%26pos%3D32','Unknown','Windows XP'); /*!40000 ALTER TABLE `cpg14x_hit_stats` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `cpg14x_pictures` -- DROP TABLE IF EXISTS `cpg14x_pictures`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `cpg14x_pictures` ( `pid` int(11) NOT NULL AUTO_INCREMENT, `aid` int(11) NOT NULL DEFAULT '0', `filepath` varchar(255) NOT NULL DEFAULT '', `filename` varchar(255) NOT NULL DEFAULT '', `filesize` int(11) NOT NULL DEFAULT '0', `total_filesize` int(11) NOT NULL DEFAULT '0', `pwidth` smallint(6) NOT NULL DEFAULT '0', `pheight` smallint(6) NOT NULL DEFAULT '0', `hits` int(10) NOT NULL DEFAULT '0', `mtime` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `ctime` int(11) NOT NULL DEFAULT '0', `owner_id` int(11) NOT NULL DEFAULT '0', `owner_name` varchar(40) NOT NULL DEFAULT '', `pic_rating` int(11) NOT NULL DEFAULT '0', `votes` int(11) NOT NULL DEFAULT '0', `title` varchar(255) NOT NULL DEFAULT '', `caption` text NOT NULL, `keywords` varchar(255) NOT NULL DEFAULT '', `approved` enum('YES','NO') NOT NULL DEFAULT 'NO', `galleryicon` int(11) NOT NULL DEFAULT '0', `user1` varchar(255) NOT NULL DEFAULT '', `user2` varchar(255) NOT NULL DEFAULT '', `user3` varchar(255) NOT NULL DEFAULT '', `user4` varchar(255) NOT NULL DEFAULT '', `url_prefix` tinyint(4) NOT NULL DEFAULT '0', `pic_raw_ip` tinytext, `pic_hdr_ip` tinytext, `lasthit_ip` tinytext, `position` int(11) NOT NULL DEFAULT '0', PRIMARY KEY (`pid`), KEY `owner_id` (`owner_id`), KEY `pic_hits` (`hits`), KEY `pic_rate` (`pic_rating`), KEY `aid_approved` (`aid`,`approved`), KEY `pic_aid` (`aid`), FULLTEXT KEY `search` (`title`,`caption`,`keywords`,`filename`) ) ENGINE=MyISAM AUTO_INCREMENT=78 DEFAULT CHARSET=latin1 COMMENT='Used to store data about individual pics'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `cpg14x_pictures` -- LOCK TABLES `cpg14x_pictures` WRITE; /*!40000 ALTER TABLE `cpg14x_pictures` DISABLE KEYS */; INSERT INTO `cpg14x_pictures` VALUES (1,1,'Rotterdam_Reunion_2008/','DSCN0016.JPG',192780,211269,960,1280,0,'0000-00-00 00:00:00',1230411032,1,'admin',0,0,'','','','YES',0,'','','','',0,'','',NULL,0),(2,1,'Rotterdam_Reunion_2008/','DSCN0048.JPG',243004,271003,960,1280,0,'0000-00-00 00:00:00',1230411050,1,'admin',0,0,'','','','YES',0,'','','','',0,'','',NULL,0),(3,1,'Rotterdam_Reunion_2008/','DSCN0037.JPG',279478,305508,1280,960,0,'0000-00-00 00:00:00',1230411050,1,'admin',0,0,'','','','YES',0,'','','','',0,'','',NULL,0),(4,1,'Rotterdam_Reunion_2008/','DSCN0044.JPG',278219,307747,1280,960,0,'0000-00-00 00:00:00',1230411050,1,'admin',0,0,'','','','YES',0,'','','','',0,'','',NULL,0),(5,1,'Rotterdam_Reunion_2008/','DSCN0041.JPG',275908,301078,1280,960,0,'0000-00-00 00:00:00',1230411050,1,'admin',0,0,'','','','YES',0,'','','','',0,'','',NULL,0),(6,1,'Rotterdam_Reunion_2008/','DSCN0073.JPG',267653,287651,1280,960,1,'2009-10-06 19:12:47',1230411050,1,'admin',0,0,'','','','YES',0,'','','','',0,'','','193.80.57.6',0),(7,1,'Rotterdam_Reunion_2008/','DSCN0046.JPG',277067,308017,1280,960,0,'0000-00-00 00:00:00',1230411050,1,'admin',0,0,'','','','YES',0,'','','','',0,'','',NULL,0),(8,1,'Rotterdam_Reunion_2008/','DSCN0129.JPG',272491,291056,1280,960,0,'0000-00-00 00:00:00',1230411050,1,'admin',0,0,'','','','YES',0,'','','','',0,'','',NULL,0),(9,1,'Rotterdam_Reunion_2008/','DSCN0142.JPG',289935,311930,1280,960,0,'0000-00-00 00:00:00',1230411217,1,'admin',0,0,'','','','YES',0,'','','','',0,'','',NULL,0),(10,1,'Rotterdam_Reunion_2008/','DSCN0012.JPG',231271,255856,1280,960,0,'0000-00-00 00:00:00',1230411220,1,'admin',0,0,'','','','YES',0,'','','','',0,'','',NULL,0),(11,1,'Rotterdam_Reunion_2008/','DSCN0020.JPG',220101,246252,960,1280,0,'0000-00-00 00:00:00',1230411221,1,'admin',0,0,'','','','YES',0,'','','','',0,'','',NULL,0),(12,1,'Rotterdam_Reunion_2008/','DSCN0021.JPG',280810,303750,1280,960,0,'0000-00-00 00:00:00',1230411221,1,'admin',0,0,'','','','YES',0,'','','','',0,'','',NULL,0),(13,1,'Rotterdam_Reunion_2008/','DSCN0026.JPG',272523,305079,1280,960,0,'0000-00-00 00:00:00',1230411222,1,'admin',0,0,'','','','YES',0,'','','','',0,'','',NULL,0),(14,1,'Rotterdam_Reunion_2008/','DSCN0017.JPG',280196,302976,1280,960,0,'0000-00-00 00:00:00',1230411222,1,'admin',0,0,'','','','YES',0,'','','','',0,'','',NULL,0),(15,1,'Rotterdam_Reunion_2008/','DSCN0022.JPG',240802,264903,960,1280,0,'0000-00-00 00:00:00',1230411223,1,'admin',0,0,'','','','YES',0,'','','','',0,'','',NULL,0),(16,1,'Rotterdam_Reunion_2008/','DSCN0027.JPG',288940,317741,1280,960,0,'0000-00-00 00:00:00',1230411223,1,'admin',0,0,'','','','YES',0,'','','','',0,'','',NULL,0),(17,1,'Rotterdam_Reunion_2008/','DSCN0030.JPG',263251,283499,1280,960,0,'0000-00-00 00:00:00',1230411224,1,'admin',0,0,'','','','YES',0,'','','','',0,'','',NULL,0),(18,1,'Rotterdam_Reunion_2008/','DSCN0025.JPG',263841,290137,1280,960,0,'0000-00-00 00:00:00',1230411224,1,'admin',0,0,'','','','YES',0,'','','','',0,'','',NULL,0),(19,1,'Rotterdam_Reunion_2008/','DSCN0028.JPG',259415,285210,1280,960,0,'0000-00-00 00:00:00',1230411224,1,'admin',0,0,'','','','YES',0,'','','','',0,'','',NULL,0),(20,1,'Rotterdam_Reunion_2008/','DSCN0033.JPG',239479,269042,960,1280,0,'0000-00-00 00:00:00',1230411225,1,'admin',0,0,'','','','YES',0,'','','','',0,'','',NULL,0),(21,1,'Rotterdam_Reunion_2008/','DSCN0031.JPG',250327,278997,960,1280,0,'0000-00-00 00:00:00',1230411226,1,'admin',0,0,'','','','YES',0,'','','','',0,'','',NULL,0),(22,1,'Rotterdam_Reunion_2008/','DSCN0034.JPG',245192,277319,960,1280,0,'0000-00-00 00:00:00',1230411226,1,'admin',0,0,'','','','YES',0,'','','','',0,'','',NULL,0),(23,1,'Rotterdam_Reunion_2008/','DSCN0036.JPG',274718,303542,1280,960,0,'0000-00-00 00:00:00',1230411227,1,'admin',0,0,'','','','YES',0,'','','','',0,'','',NULL,0),(24,1,'Rotterdam_Reunion_2008/','DSCN0055.JPG',262255,286461,1280,960,0,'0000-00-00 00:00:00',1230411227,1,'admin',0,0,'','','','YES',0,'','','','',0,'','',NULL,0),(25,1,'Rotterdam_Reunion_2008/','DSCN0050.JPG',276218,303226,1280,960,0,'0000-00-00 00:00:00',1230411227,1,'admin',0,0,'','','','YES',0,'','','','',0,'','',NULL,0),(26,1,'Rotterdam_Reunion_2008/','DSCN0107.JPG',249532,265706,1280,960,0,'0000-00-00 00:00:00',1230413928,1,'admin',0,0,'','','','YES',0,'','','','',0,'','',NULL,0),(27,1,'Rotterdam_Reunion_2008/','DSCN0136.JPG',296996,321423,1280,960,0,'0000-00-00 00:00:00',1230413945,1,'admin',0,0,'','','','YES',0,'','','','',0,'','',NULL,0),(28,1,'Rotterdam_Reunion_2008/','DSCN0085.JPG',303437,337461,1280,960,0,'0000-00-00 00:00:00',1230413945,1,'admin',0,0,'','','','YES',0,'','','','',0,'','',NULL,0),(29,1,'Rotterdam_Reunion_2008/','DSCN0122.JPG',234549,254428,960,1280,0,'0000-00-00 00:00:00',1230413945,1,'admin',0,0,'','','','YES',0,'','','','',0,'','',NULL,0),(30,1,'Rotterdam_Reunion_2008/','DSCN0056.JPG',268043,270907,1280,960,0,'0000-00-00 00:00:00',1230413999,1,'admin',0,0,'','','','YES',0,'','','','',0,'','',NULL,0),(31,1,'Rotterdam_Reunion_2008/','DSCN0057.JPG',270226,300579,1280,960,0,'0000-00-00 00:00:00',1230414001,1,'admin',0,0,'','','','YES',0,'','','','',0,'','',NULL,0),(32,1,'Rotterdam_Reunion_2008/','DSCN0081.JPG',274663,278540,1280,960,1,'2009-10-06 19:12:56',1230414002,1,'admin',0,0,'','','','YES',0,'','','','',0,'','','193.80.57.6',0),(33,1,'Rotterdam_Reunion_2008/','DSCN0075.JPG',189364,206735,960,1280,1,'2009-10-06 19:12:49',1230414003,1,'admin',0,0,'','','','YES',0,'','','','',0,'','','193.80.57.6',0),(34,1,'Rotterdam_Reunion_2008/','DSCN0066.JPG',250553,279548,960,1280,1,'2009-10-06 19:12:40',1230414003,1,'admin',0,0,'','','','YES',0,'','','','',0,'','','193.80.57.6',0),(35,1,'Rotterdam_Reunion_2008/','DSCN0060.JPG',273125,309994,1280,960,0,'0000-00-00 00:00:00',1230414003,1,'admin',0,0,'','','','YES',0,'','','','',0,'','',NULL,0),(36,1,'Rotterdam_Reunion_2008/','DSCN0067.JPG',229928,251776,960,1280,1,'2009-10-06 19:12:42',1230414003,1,'admin',0,0,'','','','YES',0,'','','','',0,'','','193.80.57.6',0),(37,1,'Rotterdam_Reunion_2008/','DSCN0061.JPG',254545,277639,1280,960,0,'0000-00-00 00:00:00',1230414003,1,'admin',0,0,'','','','YES',0,'','','','',0,'','',NULL,0),(38,1,'Rotterdam_Reunion_2008/','DSCN0080.JPG',279774,315923,1280,960,1,'2009-10-06 19:12:51',1230414003,1,'admin',0,0,'','','','YES',0,'','','','',0,'','','193.80.57.6',0),(39,1,'Rotterdam_Reunion_2008/','DSCN0082.JPG',277475,281191,1280,960,0,'0000-00-00 00:00:00',1230414003,1,'admin',0,0,'','','','YES',0,'','','','',0,'','',NULL,0),(40,1,'Rotterdam_Reunion_2008/','DSCN0071.JPG',222709,244606,960,1280,1,'2009-10-06 19:12:45',1230414004,1,'admin',0,0,'','','','YES',0,'','','','',0,'','','193.80.57.6',0),(41,1,'Rotterdam_Reunion_2008/','DSCN0064.JPG',222975,241938,1280,960,1,'2009-10-06 19:12:28',1230414004,1,'admin',0,0,'','','','YES',0,'','','','',0,'','','193.80.57.6',0),(42,1,'Rotterdam_Reunion_2008/','DSCN0091.JPG',231106,233815,1280,960,0,'0000-00-00 00:00:00',1230414005,1,'admin',0,0,'','','','YES',0,'','','','',0,'','',NULL,0),(43,1,'Rotterdam_Reunion_2008/','DSCN0083.JPG',287782,290780,1280,960,0,'0000-00-00 00:00:00',1230414005,1,'admin',0,0,'','','','YES',0,'','','','',0,'','',NULL,0),(44,1,'Rotterdam_Reunion_2008/','DSCN0089.JPG',277897,281665,1280,960,0,'0000-00-00 00:00:00',1230414005,1,'admin',0,0,'','','','YES',0,'','','','',0,'','',NULL,0),(45,1,'Rotterdam_Reunion_2008/','DSCN0087.JPG',232370,256878,960,1280,0,'0000-00-00 00:00:00',1230414005,1,'admin',0,0,'','','','YES',0,'','','','',0,'','',NULL,0),(46,1,'Rotterdam_Reunion_2008/','DSCN0088.JPG',246581,271247,960,1280,0,'0000-00-00 00:00:00',1230414005,1,'admin',0,0,'','','','YES',0,'','','','',0,'','',NULL,0),(47,1,'Rotterdam_Reunion_2008/','DSCN0086.JPG',290255,320933,1280,960,0,'0000-00-00 00:00:00',1230414005,1,'admin',0,0,'','','','YES',0,'','','','',0,'','',NULL,0),(48,1,'Rotterdam_Reunion_2008/','DSCN0094.JPG',275181,298054,1280,960,0,'0000-00-00 00:00:00',1230414006,1,'admin',0,0,'','','','YES',0,'','','','',0,'','',NULL,0),(49,1,'Rotterdam_Reunion_2008/','DSCN0093.JPG',282508,323172,1280,960,0,'0000-00-00 00:00:00',1230414006,1,'admin',0,0,'','','','YES',0,'','','','',0,'','',NULL,0),(50,1,'Rotterdam_Reunion_2008/','DSCN0090.JPG',286350,322036,1280,960,0,'0000-00-00 00:00:00',1230414007,1,'admin',0,0,'','','','YES',0,'','','','',0,'','',NULL,0),(51,1,'Rotterdam_Reunion_2008/','DSCN0095.JPG',259612,283490,1280,960,0,'0000-00-00 00:00:00',1230414008,1,'admin',0,0,'','','','YES',0,'','','','',0,'','',NULL,0),(52,1,'Rotterdam_Reunion_2008/','DSCN0108.JPG',292705,326989,1280,960,0,'0000-00-00 00:00:00',1230414009,1,'admin',0,0,'','','','YES',0,'','','','',0,'','',NULL,0),(53,1,'Rotterdam_Reunion_2008/','DSCN0099.JPG',285591,316700,1280,960,0,'0000-00-00 00:00:00',1230414009,1,'admin',0,0,'','','','YES',0,'','','','',0,'','',NULL,0),(54,1,'Rotterdam_Reunion_2008/','DSCN0098.JPG',194013,208434,960,1280,0,'0000-00-00 00:00:00',1230414010,1,'admin',0,0,'','','','YES',0,'','','','',0,'','',NULL,0),(55,1,'Rotterdam_Reunion_2008/','DSCN0109.JPG',242718,266975,1280,960,0,'0000-00-00 00:00:00',1230414011,1,'admin',0,0,'','','','YES',0,'','','','',0,'','',NULL,0),(56,1,'Rotterdam_Reunion_2008/','DSCN0105.JPG',263273,282018,1280,960,0,'0000-00-00 00:00:00',1230414011,1,'admin',0,0,'','','','YES',0,'','','','',0,'','',NULL,0),(57,1,'Rotterdam_Reunion_2008/','DSCN0097.JPG',291110,315042,1280,960,0,'0000-00-00 00:00:00',1230414011,1,'admin',0,0,'','','','YES',0,'','','','',0,'','',NULL,0),(58,1,'Rotterdam_Reunion_2008/','DSCN0096.JPG',253305,279885,960,1280,0,'0000-00-00 00:00:00',1230414011,1,'admin',0,0,'','','','YES',0,'','','','',0,'','',NULL,0),(59,1,'Rotterdam_Reunion_2008/','DSCN0110.JPG',253272,277391,1280,960,0,'0000-00-00 00:00:00',1230414011,1,'admin',0,0,'','','','YES',0,'','','','',0,'','',NULL,0),(60,1,'Rotterdam_Reunion_2008/','DSCN0111.JPG',275173,299110,1280,960,0,'0000-00-00 00:00:00',1230414013,1,'admin',0,0,'','','','YES',0,'','','','',0,'','',NULL,0),(61,1,'Rotterdam_Reunion_2008/','DSCN0113.JPG',312650,341662,1280,960,0,'0000-00-00 00:00:00',1230414013,1,'admin',0,0,'','','','YES',0,'','','','',0,'','',NULL,0),(62,1,'Rotterdam_Reunion_2008/','DSCN0112.JPG',286461,312187,1280,960,0,'0000-00-00 00:00:00',1230414013,1,'admin',0,0,'','','','YES',0,'','','','',0,'','',NULL,0),(63,1,'Rotterdam_Reunion_2008/','DSCN0116.JPG',251229,278902,960,1280,0,'0000-00-00 00:00:00',1230414013,1,'admin',0,0,'','','','YES',0,'','','','',0,'','',NULL,0),(64,1,'Rotterdam_Reunion_2008/','DSCN0115.JPG',299865,327115,1280,960,0,'0000-00-00 00:00:00',1230414015,1,'admin',0,0,'','','','YES',0,'','','','',0,'','',NULL,0),(65,1,'Rotterdam_Reunion_2008/','DSCN0118.JPG',282407,313082,1280,960,0,'0000-00-00 00:00:00',1230414015,1,'admin',0,0,'','','','YES',0,'','','','',0,'','',NULL,0),(66,1,'Rotterdam_Reunion_2008/','DSCN0117.JPG',230885,252163,1280,960,0,'0000-00-00 00:00:00',1230414015,1,'admin',0,0,'','','','YES',0,'','','','',0,'','',NULL,0),(67,1,'Rotterdam_Reunion_2008/','DSCN0125.JPG',239248,265209,960,1280,0,'0000-00-00 00:00:00',1230414015,1,'admin',0,0,'','','','YES',0,'','','','',0,'','',NULL,0),(68,1,'Rotterdam_Reunion_2008/','DSCN0124.JPG',217857,234190,960,1280,0,'0000-00-00 00:00:00',1230414015,1,'admin',0,0,'','','','YES',0,'','','','',0,'','',NULL,0),(69,1,'Rotterdam_Reunion_2008/','DSCN0131.JPG',298188,300567,1280,960,0,'0000-00-00 00:00:00',1230414016,1,'admin',0,0,'','','','YES',0,'','','','',0,'','',NULL,0),(70,1,'Rotterdam_Reunion_2008/','DSCN0126.JPG',260516,292208,960,1280,0,'0000-00-00 00:00:00',1230414016,1,'admin',0,0,'','','','YES',0,'','','','',0,'','',NULL,0),(71,1,'Rotterdam_Reunion_2008/','DSCN0119.JPG',293978,326735,1280,960,0,'0000-00-00 00:00:00',1230414016,1,'admin',0,0,'','','','YES',0,'','','','',0,'','',NULL,0),(72,1,'Rotterdam_Reunion_2008/','DSCN0130.JPG',266303,286248,1280,960,0,'0000-00-00 00:00:00',1230414016,1,'admin',0,0,'','','','YES',0,'','','','',0,'','',NULL,0),(73,1,'Rotterdam_Reunion_2008/','DSCN0127.JPG',227880,239868,1280,960,0,'0000-00-00 00:00:00',1230414016,1,'admin',0,0,'','','','YES',0,'','','','',0,'','',NULL,0),(74,1,'Rotterdam_Reunion_2008/','DSCN0128.JPG',277131,298560,1280,960,0,'0000-00-00 00:00:00',1230414016,1,'admin',0,0,'','','','YES',0,'','','','',0,'','',NULL,0),(75,1,'Rotterdam_Reunion_2008/','DSCN0132.JPG',294438,319511,1280,960,0,'0000-00-00 00:00:00',1230414017,1,'admin',0,0,'','','','YES',0,'','','','',0,'','',NULL,0),(76,1,'Rotterdam_Reunion_2008/','DSCN0138.JPG',297253,318239,1280,960,0,'0000-00-00 00:00:00',1230414017,1,'admin',0,0,'','','','YES',0,'','','','',0,'','',NULL,0),(77,1,'Rotterdam_Reunion_2008/','DSCN0133.JPG',307196,326536,1280,960,0,'0000-00-00 00:00:00',1230414018,1,'admin',0,0,'','','','YES',0,'','','','',0,'','',NULL,0); /*!40000 ALTER TABLE `cpg14x_pictures` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `cpg14x_plugins` -- DROP TABLE IF EXISTS `cpg14x_plugins`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `cpg14x_plugins` ( `plugin_id` int(10) unsigned NOT NULL AUTO_INCREMENT, `name` varchar(64) NOT NULL DEFAULT '', `path` varchar(128) NOT NULL DEFAULT '', `priority` int(10) unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`plugin_id`), UNIQUE KEY `name` (`name`), UNIQUE KEY `path` (`path`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1 COMMENT='Stores the plugins'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `cpg14x_plugins` -- LOCK TABLES `cpg14x_plugins` WRITE; /*!40000 ALTER TABLE `cpg14x_plugins` DISABLE KEYS */; /*!40000 ALTER TABLE `cpg14x_plugins` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `cpg14x_sessions` -- DROP TABLE IF EXISTS `cpg14x_sessions`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `cpg14x_sessions` ( `session_id` varchar(40) NOT NULL DEFAULT '', `user_id` int(11) DEFAULT '0', `time` int(11) DEFAULT NULL, `remember` int(1) DEFAULT '0', PRIMARY KEY (`session_id`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1 COMMENT='Used to store sessions'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `cpg14x_sessions` -- LOCK TABLES `cpg14x_sessions` WRITE; /*!40000 ALTER TABLE `cpg14x_sessions` DISABLE KEYS */; INSERT INTO `cpg14x_sessions` VALUES ('6a8caca1ae5141c87ed6d18859d17096',0,1254850064,0); /*!40000 ALTER TABLE `cpg14x_sessions` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `cpg14x_temp_data` -- DROP TABLE IF EXISTS `cpg14x_temp_data`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `cpg14x_temp_data` ( `unique_ID` varchar(8) NOT NULL DEFAULT '', `encoded_string` blob NOT NULL, `timestamp` int(11) unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`unique_ID`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1 COMMENT='Holds temporary file data for multiple file uploads'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `cpg14x_temp_data` -- LOCK TABLES `cpg14x_temp_data` WRITE; /*!40000 ALTER TABLE `cpg14x_temp_data` DISABLE KEYS */; /*!40000 ALTER TABLE `cpg14x_temp_data` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `cpg14x_usergroups` -- DROP TABLE IF EXISTS `cpg14x_usergroups`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `cpg14x_usergroups` ( `group_id` int(11) NOT NULL AUTO_INCREMENT, `group_name` varchar(255) NOT NULL DEFAULT '', `group_quota` int(11) NOT NULL DEFAULT '0', `has_admin_access` tinyint(4) NOT NULL DEFAULT '0', `can_rate_pictures` tinyint(4) NOT NULL DEFAULT '0', `can_send_ecards` tinyint(4) NOT NULL DEFAULT '0', `can_post_comments` tinyint(4) NOT NULL DEFAULT '0', `can_upload_pictures` tinyint(4) NOT NULL DEFAULT '0', `can_create_albums` tinyint(4) NOT NULL DEFAULT '0', `pub_upl_need_approval` tinyint(4) NOT NULL DEFAULT '1', `priv_upl_need_approval` tinyint(4) NOT NULL DEFAULT '1', `upload_form_config` tinyint(4) NOT NULL DEFAULT '3', `custom_user_upload` tinyint(4) NOT NULL DEFAULT '0', `num_file_upload` tinyint(4) NOT NULL DEFAULT '5', `num_URI_upload` tinyint(4) NOT NULL DEFAULT '3', PRIMARY KEY (`group_id`) ) ENGINE=MyISAM AUTO_INCREMENT=5 DEFAULT CHARSET=latin1 COMMENT='Used to store user groups'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `cpg14x_usergroups` -- LOCK TABLES `cpg14x_usergroups` WRITE; /*!40000 ALTER TABLE `cpg14x_usergroups` DISABLE KEYS */; INSERT INTO `cpg14x_usergroups` VALUES (1,'Administrators',0,1,1,1,1,1,1,0,0,3,0,5,3),(2,'Registered',1024,0,1,1,1,1,1,1,0,3,0,5,3),(3,'Guests',0,0,1,0,0,0,0,1,1,0,0,5,3),(4,'Banned',0,0,0,0,0,0,0,1,1,0,0,5,3); /*!40000 ALTER TABLE `cpg14x_usergroups` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `cpg14x_users` -- DROP TABLE IF EXISTS `cpg14x_users`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `cpg14x_users` ( `user_id` int(11) NOT NULL AUTO_INCREMENT, `user_group` int(11) NOT NULL DEFAULT '2', `user_active` enum('YES','NO') NOT NULL DEFAULT 'NO', `user_name` varchar(25) NOT NULL DEFAULT '', `user_password` varchar(40) NOT NULL DEFAULT '', `user_lastvisit` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `user_regdate` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `user_group_list` varchar(255) NOT NULL DEFAULT '', `user_email` varchar(255) NOT NULL DEFAULT '', `user_profile1` varchar(255) NOT NULL DEFAULT '', `user_profile2` varchar(255) NOT NULL DEFAULT '', `user_profile3` varchar(255) NOT NULL DEFAULT '', `user_profile4` varchar(255) NOT NULL DEFAULT '', `user_profile5` varchar(255) NOT NULL DEFAULT '', `user_profile6` text NOT NULL, `user_actkey` varchar(32) NOT NULL DEFAULT '', PRIMARY KEY (`user_id`), UNIQUE KEY `user_name` (`user_name`) ) ENGINE=MyISAM AUTO_INCREMENT=68 DEFAULT CHARSET=latin1 COMMENT='Used to store users, not used when bridged'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `cpg14x_users` -- LOCK TABLES `cpg14x_users` WRITE; /*!40000 ALTER TABLE `cpg14x_users` DISABLE KEYS */; INSERT INTO `cpg14x_users` VALUES (1,1,'YES','admin','5a9361b28ee51795f1e82d9054919034','2008-12-28 09:05:24','2008-12-27 21:40:38','','mam@heimam.at','Vienna','','www.mamweb.at','Systems Engineer','','',''),(2,2,'YES','mam','5a9361b28ee51795f1e82d9054919034','2009-10-06 19:12:02','2008-12-27 22:04:32','','mam@heimam.at','Vienna','','www.mamweb.at','','','',''),(3,2,'YES','karin','d4946f9c99d961c10dd8db4c0b91aa33','0000-00-00 00:00:00','2008-12-27 22:05:04','','','','','','','','',''),(4,2,'YES','catarina','a904adf1911e772becd62cf072a37b94','0000-00-00 00:00:00','2008-12-27 22:05:36','','','','','','','','',''),(5,2,'YES','gerold','aacd8fc0b356d81797c994075694f398','0000-00-00 00:00:00','2008-12-27 22:05:47','','','','','','','','',''),(6,2,'YES','konstantin','7053e538d5e8e038e5a91235f6a335f3','0000-00-00 00:00:00','2008-12-27 22:05:56','','','','','','','','',''),(7,2,'YES','igor','426fcc01c635e7642b0df22e5b5e1880','0000-00-00 00:00:00','2008-12-27 22:06:12','','','','','','','','',''),(8,2,'YES','erica','abaecf8ca3f98dc13eeecbac263cd3ed','0000-00-00 00:00:00','2008-12-27 22:07:55','','','','','','','','',''),(9,2,'YES','roman','3ce806e27698b430c1d5a4a07790b2da','0000-00-00 00:00:00','2008-12-27 22:08:06','','','','','','','','',''),(10,2,'YES','smita','2a6571da26602a67be14ea8c5ab82349','0000-00-00 00:00:00','2008-12-27 22:08:15','','','','','','','','',''),(11,2,'YES','gael','3cb8d12d60cbcfa37fbc606ed8c88b00','0000-00-00 00:00:00','2008-12-27 22:08:25','','','','','','','','',''),(12,2,'YES','alexandra','ea34e980776660c55815059cb8015f59','0000-00-00 00:00:00','2008-12-27 22:08:53','','','','','','','','',''),(13,2,'YES','annelaure','78d6810e1299959f3a8db157045aa926','0000-00-00 00:00:00','2008-12-27 22:09:12','','','','','','','','',''),(14,2,'YES','beatriz','4c6aa22ff0ca8ef5faf7abe3e9716bdf','0000-00-00 00:00:00','2008-12-27 22:09:30','','','','','','','','',''),(15,2,'YES','elisa','5dc1ce281a339e6ebe5156199993b452','0000-00-00 00:00:00','2008-12-27 22:10:01','','','','','','','','',''),(16,2,'YES','frida','37ae07b72ac788774102660b5dd1fc93','0000-00-00 00:00:00','2008-12-27 22:10:23','','','','','','','','',''),(17,2,'YES','gloria','e438d4969c839b982c4fcd32e7e97d45','0000-00-00 00:00:00','2008-12-27 22:10:39','','','','','','','','',''),(18,2,'YES','gunnar','9ec7be155e47ef11a200ee078c29ee00','0000-00-00 00:00:00','2008-12-27 22:10:51','','','','','','','','',''),(19,2,'YES','jennica','3ee36693d570e7ea575f9dd2e5fb447d','0000-00-00 00:00:00','2008-12-27 22:11:17','','','','','','','','',''),(20,2,'YES','joaquin','0b4a7db11aaab6d963f000655d26bf3f','0000-00-00 00:00:00','2008-12-27 22:11:49','','','','','','','','',''),(21,2,'YES','tuire','026cc06e42ab066abcdc498a1700639b','0000-00-00 00:00:00','2008-12-27 22:12:56','','','','','','','','',''),(22,2,'YES','viviane','abd3f2d29a532038e8db84f5c44dc414','0000-00-00 00:00:00','2008-12-27 22:13:41','','','','','','','','',''),(23,2,'YES','virena','cc3493321322a56361602755a75346bb','0000-00-00 00:00:00','2008-12-27 22:13:57','','','','','','','','',''),(24,2,'YES','vera','daa4cddf5f67fb3c3ce7bad115438b59','0000-00-00 00:00:00','2008-12-27 22:14:20','','','','','','','','',''),(25,2,'YES','sebastian','e1401e10c85fb88bbf0bef8911c414cf','0000-00-00 00:00:00','2008-12-27 22:14:38','','','','','','','','',''),(26,2,'YES','sann','5d9e5f27b6ea8fb6f6cea630802793e1','0000-00-00 00:00:00','2008-12-27 22:14:51','','','','','','','','',''),(27,2,'YES','rupa','37b9f8362a97361b252890c49c479966','0000-00-00 00:00:00','2008-12-27 22:15:08','','','','','','','','',''),(28,2,'YES','robertw','307770c2e1d461fd4befbb8a3ef0d43d','0000-00-00 00:00:00','2008-12-27 22:15:27','','','','','','','','',''),(29,2,'YES','robertb','40b786ed28d33859ff7b7198d1fc362a','0000-00-00 00:00:00','2008-12-27 22:15:47','','','','','','','','',''),(30,2,'YES','regine','c5fb70fd266a2bf3b452b93b9a2fd956','0000-00-00 00:00:00','2008-12-27 22:16:20','','','','','','','','',''),(31,2,'YES','quentin','c76b1aec604e87039ca3050a374a0fd0','0000-00-00 00:00:00','2008-12-27 22:16:40','','','','','','','','',''),(32,2,'YES','piia','123b6b946288027f23a08144742bf5a3','0000-00-00 00:00:00','2008-12-27 22:16:56','','','','','','','','',''),(33,2,'YES','pehr','c24dcdcfb596bb65b3838902caec19d9','0000-00-00 00:00:00','2008-12-27 22:17:08','','','','','','','','',''),(34,2,'YES','pau','c73a0790189a86fc02742513fda312e2','0000-00-00 00:00:00','2008-12-27 22:17:22','','','','','','','','',''),(35,2,'YES','nathalie','908563cabd95885ff63516e8a3155625','0000-00-00 00:00:00','2008-12-27 22:17:35','','','','','','','','',''),(36,2,'YES','mika','236e0e89a521b843522bcedd8a52ed1a','0000-00-00 00:00:00','2008-12-27 22:17:49','','','','','','','','',''),(37,2,'YES','miguel','4b998d19fbd8b56dc128fcde446ae2f3','0000-00-00 00:00:00','2008-12-27 22:18:27','','','','','','','','',''),(38,2,'YES','michael','7d3a7ccd2ff276c8d047696d64297b2b','0000-00-00 00:00:00','2008-12-27 22:18:45','','','','','','','','',''),(39,2,'YES','marylene','51c2183525406e4fba5411fa5bd91ba8','0000-00-00 00:00:00','2008-12-27 22:18:58','','','','','','','','',''),(40,2,'YES','martinf','0a8e3638e3c0deb4e5e49c72286a5b83','0000-00-00 00:00:00','2008-12-27 22:19:17','','','','','','','','',''),(41,2,'YES','martinb','1608857b7041dda436214dbb0f2966b7','0000-00-00 00:00:00','2008-12-27 22:19:31','','','','','','','','',''),(42,2,'YES','markusw','f9ca3873fac8d32b652041c53c2d02a1','0000-00-00 00:00:00','2008-12-27 22:19:43','','','','','','','','',''),(43,2,'YES','markuss','f2333d74c32c0b2fb70165c93706cd9d','0000-00-00 00:00:00','2008-12-27 22:19:56','','','','','','','','',''),(44,2,'YES','marion','05290bfa958f1ea1f56871a2697712b1','0000-00-00 00:00:00','2008-12-27 22:20:14','','','','','','','','',''),(45,2,'YES','mariajose','10c8d7f5b408913a41f7969ea9e997e1','0000-00-00 00:00:00','2008-12-27 22:20:47','','','','','','','','',''),(46,2,'YES','margherita','2aff60ee2c4494a846e320090e70fbd5','0000-00-00 00:00:00','2008-12-27 22:21:01','','','','','','','','',''),(47,2,'YES','marco','55b7e8b895d047537e672250dd781555','0000-00-00 00:00:00','2008-12-27 22:21:22','','','','','','','','',''),(48,2,'YES','marc','7c8d66b98e508bcd782288188103d108','0000-00-00 00:00:00','2008-12-27 22:21:32','','','','','','','','',''),(49,2,'YES','lucia','d7180fd20069768f3de9cbec6300c7eb','0000-00-00 00:00:00','2008-12-27 22:21:49','','','','','','','','',''),(50,2,'YES','katja','ca5048cea74e8bc0f329c08c2164cab5','0000-00-00 00:00:00','2008-12-27 22:22:01','','','','','','','','',''),(51,2,'YES','kajsa','6040035e7cc8ce1413ae7f2f80d9fec4','0000-00-00 00:00:00','2008-12-27 22:22:14','','','','','','','','',''),(52,2,'YES','jim','2c94281ca7bd540c256040e51923278d','0000-00-00 00:00:00','2008-12-27 22:22:50','','','','','','','','',''),(53,2,'YES','ian','829a56cc8ffa56209e3a10b80d0bbdf8','0000-00-00 00:00:00','2008-12-27 22:24:35','','','','','','','','',''),(54,2,'YES','hannes','23ba6002aa3583a61db26e957b1fbe43','0000-00-00 00:00:00','2008-12-27 22:24:47','','','','','','','','',''),(55,2,'YES','guy','c571f11c190f4c056c3488245fc85b71','0000-00-00 00:00:00','2008-12-27 22:24:57','','','','','','','','',''),(56,2,'YES','erlend','c492d854ee830951a9c60db4b8ae3ee0','0000-00-00 00:00:00','2008-12-27 22:25:16','','','','','','','','',''),(57,2,'YES','giuliano','446d167844c9a718d3a7ac03e8f66b98','0000-00-00 00:00:00','2008-12-27 22:26:58','','','','','','','','',''),(58,2,'YES','dagmar','07f1bb6707346b37c32cfddd969e1bcd','0000-00-00 00:00:00','2008-12-27 22:27:11','','','','','','','','',''),(59,2,'YES','cristina','e7513c8ca3026a54fbc0dd65a9445dc0','0000-00-00 00:00:00','2008-12-27 22:27:36','','','','','','','','',''),(60,2,'YES','caroline','fc11351a8293ab0751cb7fa4f7e70d84','0000-00-00 00:00:00','2008-12-27 22:27:50','','','','','','','','',''),(61,2,'YES','dan','1e9c32b7ba6fefa76773d5c79bcdaad0','0000-00-00 00:00:00','2008-12-27 22:28:15','','','','','','','','',''),(62,2,'YES','christine','279c0c0926955e8edad9fe888c816745','0000-00-00 00:00:00','2008-12-27 22:28:50','','','','','','','','',''),(63,2,'YES','anne','0e77708dcceac08503460f4db8b2a645','0000-00-00 00:00:00','2008-12-27 22:29:12','','','','','','','','',''),(64,2,'YES','ulf','bff00032b1c67ad82f523d76638a94b1','0000-00-00 00:00:00','2008-12-27 22:29:28','','','','','','','','',''),(65,2,'YES','bettina','532619426cbaad17a4ca84c5de51c0a7','0000-00-00 00:00:00','2008-12-27 22:29:39','','','','','','','','',''),(66,2,'YES','emma','f97bfbdb32325f0e3e867bea04af98ba','0000-00-00 00:00:00','2008-12-27 22:31:58','','','','','','','','',''),(67,2,'YES','filipa','a9873b581b9153e77de0dc7486a5cd35','0000-00-00 00:00:00','2008-12-27 22:32:06','','','','','','','','',''); /*!40000 ALTER TABLE `cpg14x_users` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `cpg14x_vote_stats` -- DROP TABLE IF EXISTS `cpg14x_vote_stats`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `cpg14x_vote_stats` ( `sid` int(11) NOT NULL AUTO_INCREMENT, `pid` varchar(100) NOT NULL DEFAULT '', `rating` smallint(6) NOT NULL DEFAULT '0', `ip` varchar(20) NOT NULL DEFAULT '', `sdate` bigint(20) NOT NULL DEFAULT '0', `referer` text NOT NULL, `browser` varchar(255) NOT NULL DEFAULT '', `os` varchar(50) NOT NULL DEFAULT '', PRIMARY KEY (`sid`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1 COMMENT='Detailed stats about votes, only used when enabled'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `cpg14x_vote_stats` -- LOCK TABLES `cpg14x_vote_stats` WRITE; /*!40000 ALTER TABLE `cpg14x_vote_stats` DISABLE KEYS */; /*!40000 ALTER TABLE `cpg14x_vote_stats` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `cpg14x_votes` -- DROP TABLE IF EXISTS `cpg14x_votes`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `cpg14x_votes` ( `pic_id` mediumint(9) NOT NULL DEFAULT '0', `user_md5_id` varchar(32) NOT NULL DEFAULT '', `vote_time` int(11) NOT NULL DEFAULT '0', PRIMARY KEY (`pic_id`,`user_md5_id`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1 COMMENT='Stores votes for individual pics'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `cpg14x_votes` -- LOCK TABLES `cpg14x_votes` WRITE; /*!40000 ALTER TABLE `cpg14x_votes` DISABLE KEYS */; /*!40000 ALTER TABLE `cpg14x_votes` ENABLE KEYS */; UNLOCK TABLES; -- -- Current Database: `dvddb_moviedb` -- CREATE DATABASE /*!32312 IF NOT EXISTS*/ `dvddb_moviedb` /*!40100 DEFAULT CHARACTER SET latin1 */; USE `dvddb_moviedb`; -- -- Table structure for table `config` -- DROP TABLE IF EXISTS `config`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `config` ( `item` varchar(255) DEFAULT NULL, `value` varchar(255) DEFAULT NULL, `comments` varchar(255) DEFAULT NULL, `visible` tinyint(1) DEFAULT '1' ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `config` -- LOCK TABLES `config` WRITE; /*!40000 ALTER TABLE `config` DISABLE KEYS */; INSERT INTO `config` VALUES ('sitename','mam\'s movieDB','',1),('webmaster','mam@heimam.at','',1),('home','http://moviedb.mamweb.at/index.html','No trailing slash on the URL',1),('approvalemail','mam@heimam.at','Address to which new user requests are sent',1),('siteemail','mam@heimam.at','Address from which site emails are sent',1),('lowdate','1900','Lowest date for date dropdowns',1),('defregion','2','Default region for new DVDs',1),('showall','1','Enable show all link on movie list page',1),('numperpage','10','Number of results per page',1),('version','0.6','Database version - Do not change this',0),('graphwidth','600','Width of stats graphs, in pixels',1),('dateformat','%W %D %M, %Y','Format used to display date fields. See the mysql docs for more options.',1),('defmedia','1','Default media type. See table edit for values',1),('yearwindow','100','Number of years back to display on stats page. Will be rounded down to the nearest decade',1),('theme','indusiv','Layout theme. See themes to change this setting',0),('commentchars','365','Number of characters of comment to display on list DVD page',1),('movcolumns','2047','Columns to display on list movies page.',0),('mysqlversion','4.0','Mysql version',0),('allowadminedit','1','Allow admin to edit all movies in the system, regardless of owner.',1),('movienav','3','Show movie navigation at top/bottom or both. Bitmask value. 1=top, 2=bottom, 3=both',1); /*!40000 ALTER TABLE `config` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `country` -- DROP TABLE IF EXISTS `country`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `country` ( `code` char(2) NOT NULL DEFAULT '', `name` varchar(255) NOT NULL DEFAULT '', KEY `code` (`code`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `country` -- LOCK TABLES `country` WRITE; /*!40000 ALTER TABLE `country` DISABLE KEYS */; INSERT INTO `country` VALUES ('AT','Austria'),('EU','other (Europe)'); /*!40000 ALTER TABLE `country` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `genre` -- DROP TABLE IF EXISTS `genre`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `genre` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(64) NOT NULL DEFAULT '', PRIMARY KEY (`id`) ) ENGINE=MyISAM AUTO_INCREMENT=23 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `genre` -- LOCK TABLES `genre` WRITE; /*!40000 ALTER TABLE `genre` DISABLE KEYS */; INSERT INTO `genre` VALUES (1,'Science Fiction'),(2,'Drama'),(3,'Horror'),(4,'Action'),(5,'Comedy'),(6,'Non Fiction'),(7,'Western'),(8,'Film Noir'),(9,'Musical'),(22,'Thriller'),(11,'Adventure'),(12,'Animation'),(13,'Anime'),(14,'Fantasy'),(15,'Mystery'),(16,'Romance'),(17,'War'),(21,'Music Videos'); /*!40000 ALTER TABLE `genre` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `loan` -- DROP TABLE IF EXISTS `loan`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `loan` ( `id` int(11) NOT NULL AUTO_INCREMENT, `movieid` int(11) NOT NULL DEFAULT '0', `userid` int(11) NOT NULL DEFAULT '0', `loanee` varchar(255) DEFAULT NULL, `loaneeemail` varchar(255) DEFAULT NULL, `loandate` date NOT NULL DEFAULT '0000-00-00', PRIMARY KEY (`id`), KEY `dvdid` (`movieid`), KEY `userid` (`userid`), KEY `movieid` (`movieid`) ) ENGINE=MyISAM AUTO_INCREMENT=14 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `loan` -- LOCK TABLES `loan` WRITE; /*!40000 ALTER TABLE `loan` DISABLE KEYS */; /*!40000 ALTER TABLE `loan` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `media` -- DROP TABLE IF EXISTS `media`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `media` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(32) DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM AUTO_INCREMENT=4 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `media` -- LOCK TABLES `media` WRITE; /*!40000 ALTER TABLE `media` DISABLE KEYS */; INSERT INTO `media` VALUES (1,'DVD'),(2,'VHS'); /*!40000 ALTER TABLE `media` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `movie` -- DROP TABLE IF EXISTS `movie`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `movie` ( `id` int(11) NOT NULL AUTO_INCREMENT, `userid` int(11) NOT NULL DEFAULT '0', `title` varchar(255) NOT NULL DEFAULT '', `reldate` year(4) NOT NULL DEFAULT '0000', `comments` text, `rating` int(11) NOT NULL DEFAULT '0', `genreid` varchar(255) NOT NULL DEFAULT '', `region` int(11) DEFAULT NULL, `insertdate` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `runtime` int(11) DEFAULT NULL, `mediaid` int(11) NOT NULL DEFAULT '0', `director` varchar(255) DEFAULT NULL, `author` varchar(255) DEFAULT NULL, `sound` varchar(255) DEFAULT NULL, `video` varchar(255) DEFAULT NULL, `extra` varchar(255) DEFAULT NULL, PRIMARY KEY (`id`), KEY `userid` (`userid`), KEY `genreid` (`genreid`), KEY `region` (`region`), KEY `insertdate` (`insertdate`), FULLTEXT KEY `title` (`title`), FULLTEXT KEY `director` (`director`), FULLTEXT KEY `sound` (`sound`), FULLTEXT KEY `comments` (`comments`), FULLTEXT KEY `extra` (`extra`), FULLTEXT KEY `author` (`author`) ) ENGINE=MyISAM AUTO_INCREMENT=275 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `movie` -- LOCK TABLES `movie` WRITE; /*!40000 ALTER TABLE `movie` DISABLE KEYS */; INSERT INTO `movie` VALUES (1,1,'About a Boy - oder: Der Tag der toten Ente [OT: About a Boy]',2002,'1. Writing credits (WGA):\r\nNick Hornby (novel)\r\nPeter Hedges, Chris Weitz, Paul Weitz (screenplay)\r\n\r\n2. Cast (in credits order) complete, awaiting verification:\r\nHugh Grant .... Will \r\nToni Collette .... Fiona \r\nNicholas Hoult .... Marcus \r\nRachel Weisz .... Rachel \r\nSharon Small .... Christine \r\nMadison Cook .... Imogen \r\nJordan Cook .... Imogen \r\nNicholas Hutchison .... John \r\nRyan Speechley .... Barney \r\nJoseph Speechley .... Barney \r\nNat Gastiain Tena .... Ellie \r\nLaura Kennington .... Ellie\'s Friend \r\nTanika Swaby .... Ellie\'s Friend \r\nPeter McNicholl .... Ellie\'s Friend \r\nChristopher Webster .... Ellie\'s Friend \r\nBen Ridgeway .... Lee, The Bully \r\nJack Warren .... Lee\'s Sidekick \r\nRussell Barr .... Maitre D\' \r\nIsabel Brook .... Angie \r\nOrlando Thor Newman .... Angie\'s Kid \r\nPaulette Williams .... Bitter Ex-Girlfriend \r\nFritha Goodey .... Bitter Ex-Girlfriend \r\nSusannah Doyle .... Bitter Ex-Girlfriend \r\nDelma Walsh .... Bitter Ex-Girlfriend \r\nJonathan Franklin .... Mark \r\nJohn Kamal .... Nicky \r\nTessa Vale .... Class Teacher \r\nLorna Dallison .... Woman in Supermarket \r\nBethany Muir .... Child in Supermarket \r\nBruce Alexander .... Husband in Supermarket \r\nJoyce Henderson .... Moira/SPAT \r\nJenny Galloway .... Frances/SPAT \r\nJanine Duvitski .... Caroline/SPAT \r\nSue Hyams .... Additional SPAT Woman \r\nMaggie Kahal .... Additional SPAT Woman \r\nLynn Askew .... Additional SPAT Woman \r\nBeverly Milward .... Additional SPAT Woman \r\nDanielle Harvey .... Additional SPAT Woman \r\nAnna Maria Credenzone Philip .... Additional SPAT Woman \r\nSarah King .... Additional SPAT Woman \r\nSusan Ghamsary .... Additional SPAT Woman \r\nEdna Johnson .... Additional SPAT Woman \r\nVictoria Smurfit .... Suzie \r\nFrog Stone .... Mothercare Shop Assistant \r\nBuddy Hunter .... Family Member in Mothercare Car Park \r\nKristine Perrin .... Family Member in Mothercare Car Park \r\nNathan Perrin-Hunter .... Family Member in Mothercare Car Park \r\nRachael Perrin-Hunter .... Family Member in Mothercare Car Park \r\nAmy Craven .... Suzie\'s Baby Morgan \r\nRebecca Craven .... Suzie\'s Baby Megan \r\nSydney Livingstone .... Park Keeper (as Sidney Livingstone) \r\nCathy Murphy .... Nurse \r\nJoanne Petitt .... Hairdresser \r\nJason Salkey .... Tom/Amnesty International Worker \r\nAnnabelle Apsion .... Amnesty International Worker \r\nMatt Wilkinson .... Amnesty International Worker \r\nPeter Roy .... Will\'s Dad \r\nMatthew Thomas .... Candy Thrower \r\nAaron Keeling .... Candy Thrower \r\nScott Charles .... Candy Thrower \r\nClaire Harman .... Skechers Shopgirl \r\nSian Martin .... Cute Waitress \r\nMark Drewry .... Clive \r\nDenise Stephenson .... Lindsey \r\nRosalind Knight .... Lindsey\'s Mum \r\nMurray Lachlan Young .... New Year\'s Eve Party Guest \r\nAugustus Prew .... Ali \r\nAlex Kew .... Simon Cosgrove \r\nMark Heap .... Maths Teacher \r\nSunanda Biswas .... Def Penalty Kru \r\nJames Marshall-Gunn .... Def Penalty Kru \r\nJamie Mayer .... Def Penalty Kru \r\nKorede Obashju .... Def Penalty Kru \r\nRoger Brierley .... Mr. Chalmers, The MC \r\nSteffan Pejic .... Apple Thrower \r\nrest of cast listed alphabetically \r\nChris Tarrant .... Himself (uncredited) \r\nCarol Vorderman .... Herself (uncredited) \r\nRichard Whiteley .... Himself (uncredited) \r\n\r\n3. Original Music by:\r\nDamon Gough (Badly Drawn Boy) (songs) (cited as Gough) \r\n \r\n4. Non-Original Music by:\r\nBono (song \"Zoo Station\") (as Hewson) \r\nAdam Clayton (song \"Zoo Station\") (as Clayton) \r\nJosé Feliciano (song \"Feliz Navidad\") (as Feliciano) \r\nCharles Fox (song \"Killing Me Softly with His Song\") (as Fox) \r\nChad Hugo (song \"Shake Ya Ass\") (as Hugo) \r\nLarry Mullen Jr. (song \"Zoo Station\") (as Mullen) \r\nMystikal (song \"Shake Ya Ass\") (as Tyler) \r\nThe Edge (song \"Zoo Station\") (as Evans) \r\nPaul Williams (song \"Rainy Days And Mondays\") \r\nPharrell Williams (song \"Shake Ya Ass\") (as Williams)',0,'5',2,'2004-09-18 20:01:34',97,1,'Chris & Paul Weitz','Nick Hornby (novel) / Peter Hedges, Chris Weitz, Paul Weitz (screenplay)','Damon Gough (Badly Drawn Boy)','PAL - Anamorph Widescreen (2,35:1)','Audio: German (5.1), English (5.1) - Subtitles: German, English, Hebrew'),(2,1,'Alles über meine Mutter [OT: Todo sobra mi madre]',1999,'1. Writing credits:\r\nPedro Almodóvar \r\n\r\n2. Cast (in credits order) verified as complete:\r\nCecilia Roth .... Manuela Coleman Echevarría \r\nMarisa Paredes .... Huma Rojo \r\nCandela Peña .... Nina Cruz \r\nAntonia San Juan .... Agrado \r\nPenélope Cruz .... Sister María Rosa Sanz \r\nRosa María Sardà .... Rosa\'s Mother (as Rosa María Sardá) \r\nFernando Fernán Gómez .... Rosa\'s Father \r\nFernando Guillén .... Doctor in \'Streetcar Named Desire\' \r\nToni Cantó .... Lola \r\nEloy Azorín .... Esteban Coleman Echevarría \r\nCarlos Lozano .... Mario \r\nManuel Morón .... Doctor 1 \r\nJosé Luis Torrijo .... Doctor 2 \r\nJuan José Otegui .... Ginecólogo \r\nCarmen Balagué \r\nMalena Gutiérrez .... Malena \r\nYael Barnatán .... Yael (as Yael Bernatán) \r\nCarmen Fortuny .... Carmen \r\nPatxi Freytez .... Farmacéutico/Boticarian \r\nJuan Márquez \r\nMichel Ruben \r\nDaniel Lanchas \r\nRosa Manaut \r\nCarlos García Cambero (as Carlos G. Cambero) \r\nAgustín Almodóvar \r\nPaz Sufrategui \r\nLola García \r\nEsther García \r\nInmaculada Subira \r\nrest of cast listed alphabetically \r\nPedro Almodóvar .... Voice saying \'Eva al desnudo\' (voice) (uncredited) \r\nCayetana Guillén Cuervo .... Mamen (uncredited) \r\nFito Páez .... Espectador (uncredited) \r\nLluís Pascual .... (uncredited) \r\n\r\n3. Original Music by :\r\nAlberto Iglesias',0,'2',2,'2004-09-18 20:30:47',97,1,'Pedro Almodóvar','Pedro Almodóvar','Alberto Iglesias','PAL - Anamorph Widescreen (2,35:1) [16:9]','Audio: German (5.1), Spanish (5.1) - Subtitles: German'),(3,1,'American Beauty [OT: American Beauty]',1999,'1. Writing credits (WGA):\r\nAlan Ball (written by)\r\n \r\n2. Cast (in credits order) verified as completed:\r\nKevin Spacey .... Lester Burnham \r\nAnnette Bening .... Carolyn Burnham \r\nThora Birch .... Jane Burnham \r\nWes Bentley .... Ricky Fitts \r\nMena Suvari .... Angela Hayes \r\nChris Cooper .... Col. Frank Fitts, USMC \r\nPeter Gallagher .... Buddy Kane \r\nAllison Janney .... Barbara Fitts \r\nScott Bakula .... Jim Olmeyer \r\nSam Robards .... Jim Berkley \r\nBarry Del Sherman .... Brad Dupree \r\nAra Celi .... Sale House Woman #1 \r\nJohn Cho .... Sale House Man #1 \r\nFort Atkinson .... Sale House Man #2 \r\nSue Casey .... Sale House Woman #2 \r\nKent Faulcon .... Sale House Man #3 \r\nBrenda Wehle .... Sale House Woman #4 \r\nLisa Cloud .... Sale House Woman #5 \r\nAlison Faulk .... Spartanette #1 \r\nKrista Goodsitt .... Spartanette #2 \r\nLily Houtkin .... Spartanette #3 \r\nCarolina Lancaster .... Spartanette #4 \r\nRomana Leah .... Spartanette #5 \r\nChekeshka Van Putten .... Spartanette #6 (as Chekesa Van Putten) \r\nEmily Zachary .... Spartanette #7 \r\nNancy Anderson .... Spartanette #8 \r\nReshma Gajjar .... Spartanette #9 \r\nStephanie Rizzo .... Spartanette #10 \r\nHeather Joy Sher .... Playground Girl #1 \r\nChelsea Hertford .... Playground Girl #2 \r\nAmber Smith .... Christy Kane \r\nJoel McCrary .... Catering Boss \r\nMarissa Jaret Winokur .... Mr. Smiley\'s Counter Girl \r\nDennis Anderson .... Mr. Smiley\'s Manager \r\nMatthew Kimbrough .... Firing Range Attendant \r\nErin Cathryn Strubbe .... Young Jane Burnham \r\nrest of cast listed alphabetically \r\nElaine Corral Kendall .... Newscaster (uncredited) \r\n\r\n3. Original Music by:\r\nThomas Newman \r\n\r\n4. Non-Original Music by: \r\nRick Arbuckle (song \"Tenderfoot\") \r\nRandy Bachman (song \"American Woman\") \r\nIan Ball (song \"We Haven\'t Turned Around\") \r\nPaul Blackburn (song \"We Haven\'t Turned Around\") \r\nBetty Carter (song \"Open The Door\") \r\nBurton Cummings (song \"American Woman\") \r\nBobby Darin (song \"As Long As I\'m Singing\") \r\nBob Dylan (song \"All Along The Watchtower\") \r\nMark Everett (song \"Cancer For The Cure\") (as E) \r\nAndy Fraser (song \"All Right Now\") \r\nThomas Gray (song \"We Haven\'t Turned Around\") \r\nJim Kole (song \"American Woman\") (as Jim Kale) \r\nJohn Lennon (song \"Because\") \r\nBarry Mann (song \"On Broadway\") \r\nPaul McCartney (song \"Because\") \r\nBenjamin Ottewell (song \"We Haven\'t Turned Around\") \r\nOliver Peacock (song \"We Haven\'t Turned Around\") \r\nGary Peterson (song \"American Woman\") \r\nMickey Petralia (song \"Cancer For The Cure\") \r\nPaul Rodgers (song \"All Right Now\") \r\nRichard Rodgers (song \"Bali Ha\'i\") \r\nHilton Ruiz (song \"Something Grand\") \r\nMike Stoller (song \"On Broadway\") \r\nJule Styne (song \"Don\'t Rain On My Parade\") \r\nPete Townshend (song \"The Seeker\") \r\nJimmy Van Heusen (song \"Call Me Irresponsible\" from film \"Papa\'s Delicate Condition (1963)\") \r\nJimmy Van Heusen (song \"Where Love Has Gone\" from same title\'s film) \r\nBill Withers (song \"Use Me\") \r\nNeil Young (song \"Don\'t Let It Bring You Down\")',0,'2',2,'2004-09-18 20:37:54',117,1,'Sam Mendes','Alan Ball','Thomas Newman','PAL - Anamorph Widescreen (2,35:1)','Audio: German (5.1), English (5.1) - Subtitles: German, English (aurally handicapped)'),(4,1,'American History X [OT: American History X]',1998,'1. Writing credits (WGA):\r\nDavid McKenna (written by)\r\n\r\n2. Cast (in credits order) verified as complete:\r\nEdward Norton .... Derek Vinyard \r\nEdward Furlong .... Danny Vinyard \r\nBeverly D\'Angelo .... Doris Vinyard \r\nAvery Brooks .... Dr. Bob Sweeney \r\nJennifer Lien .... Davina Vinyard \r\nEthan Suplee .... Seth Ryan \r\nStacy Keach .... Cameron Alexander \r\nFairuza Balk .... Stacey \r\nElliott Gould .... Murray \r\nGuy Torry .... Lamont \r\nWilliam Russ .... Dennis Vinyard \r\nJoseph Cortese .... Rasmussen (as Joe Cortese) \r\nJason Bose Smith .... Little Henry (as Jason Bose-Smith) \r\nAntonio David Lyons .... Lawrence \r\nAlex Sol .... Mitch McCormick \r\nKeram Malicki-Sánchez .... Chris (as Keram Malicki-Sanchez) \r\nGiuseppe Andrews .... Jason \r\nMichelle Christine White .... Lizzy \r\nJonathan Fowler Jr. .... Jerome \r\nChristopher Masterson .... Daryl Dawson (as Chris Masterson) \r\nNicholas R. Oleson .... Huge Aryan \r\nJordan Marder .... Curtis \r\nPaul Le Mat .... McMahon \r\nThomas L. Bellissimo .... Cop #2 (as Tommy L. Bellissimo) \r\nCherish Lee .... Kammi \r\nSam Vlahos .... Dr. Aguilar \r\nTara Blanchard .... Ally Vinyard \r\nAnne Lambton .... Cassandra \r\nSteve Wolford .... Reporter \r\nRichard Noyce .... Desk Sergeant \r\nDanso Gordon .... Buddy #1 \r\nJim Norton .... Randy \r\nDavid Basulto .... Guard \r\nAlexis Rose Coen .... Young Ally Vinyard \r\nKiante Elam .... Lawrence\'s Partner (as Kiant Elam) \r\nPaul Hopkins .... Student \r\nKeith Odett .... Random Skinhead \r\nPaul E. Short .... Stocky Buddy (as Paul Short) \r\nNigel Miguel .... Basketball Player \r\nrest of cast listed alphabetically \r\nJennifer Campbell .... Blond Woman in Restaurant (scenes deleted) (uncredited) \r\nSydney \'Big Dawg\' Colston .... Prison Gang Leader (uncredited) \r\nRandy J. Goodwin .... Guy in Restaurant (scenes deleted) (uncredited) \r\nMaximillian Kesmodel .... Young Danny Vinyard (uncredited) \r\nAllie Moss .... Skinhead Girlfriend (uncredited) \r\nDenney Pierce .... Arresting Officer (uncredited) \r\nSam Sarpong .... Jail Inmate (uncredited) \r\nMark Swanson .... Skinhead in Store (uncredited) \r\nSelwyn Ward .... High School Student Leaving Bathroom (uncredited) \r\n\r\n3. Original Music by:\r\nAnne Dudley \r\n\r\n4. Non-Original Music by:\r\nWilliam Steffe (song \"Battle Hymn of the Republic\") (uncredited)',0,'2',2,'2004-09-19 08:20:59',114,1,'Tony Kaye','David McKenna','Anne Dudley','PAL - Anamorph Widescreen (1,83:1) [16:9]','Audio: German (5.1), English (5.1) - Subtitles: German, English'),(5,1,'American Psycho [OT: American Psycho]',2000,'1. Writing credits (WGA):\r\nBret Easton Ellis (novel)\r\nMary Harron (screenplay) & \r\nGuinevere Turner (screenplay)\r\n \r\n2: Cast (in credits order) verified as complete:\r\nChristian Bale .... Patrick Bateman \r\nJustin Theroux .... Timothy Bryce \r\nJosh Lucas .... Craig McDermott \r\nBill Sage .... David Van Patten \r\nChloë Sevigny .... Jean \r\nReese Witherspoon .... Evelyn Williams \r\nSamantha Mathis .... Courtney Rawlinson \r\nMatt Ross .... Luis Carruthers \r\nJared Leto .... Paul Allen \r\nWillem Dafoe .... Donald Kimball \r\nCara Seymour .... Christie \r\nGuinevere Turner .... Elizabeth \r\nStephen Bogaert .... Harold Carnes \r\nMonika Meier .... Daisy \r\nReg E. Cathey .... Homeless Man \r\nBlair Williams .... Waiter #1 \r\nMarie Dame .... Victoria \r\nKelley Harron .... Bargirl \r\nPatricia Gage .... Mrs. Wolfe \r\nKrista Sutton .... Sabrina \r\nLandy Cannon .... Man at Pierce & Pierce \r\nPark Bench .... Stash \r\nCatherine Black .... Vanden \r\nMargaret Ma .... Dry Cleaner Woman \r\nTufford Kennedy .... Hamilton \r\nMark Pawson .... Humphrey Rhineback \r\nJessica Lau .... Facialist \r\nLilette Wiens .... Maitre Dí \r\nGlen Marc Silot .... Waiter \r\nCharlotte Hunter .... Libby \r\nKiki Buttignol .... Caron \r\nJoyce R. Korbin .... Woman at ATM (as Joyce Korbin) \r\nReuben Thompson .... Waiter #2 \r\nBryan Renfro .... Night Watchman \r\nRoss Gibby .... Man Outside Store \r\nChristina McKay .... Young Woman \r\nAlan McCullough .... Man in Stall (as Allan McCullough) \r\nAnthony Lemke .... Marcus Halberstram \r\nConnie Chen .... Gwendolyn Ichiban \r\nrest of cast listed alphabetically \r\nRonald Reagan .... Himself (speech on Iran-Contra scandal) (archive footage) (uncredited) \r\nSomaya Reece .... Bar Girl (uncredited) \r\n\r\n3. Original Music by:\r\nJohn Cale',0,'22',2,'2004-09-19 08:21:17',97,1,'Mary Harron','Bret Easton Ellis (novel) / Mary Harron & Guinevere Turner (screenplay)','Original Music by: John Cale','PAL - Anamorph Widescreen (2,35:1) [16:9 - 4:3]','Audio: German (DTS, 5.1, 2.0), English (5.1, 2.0) - Subtitles: German'),(6,1,'Being John Malkovich [OT: Being John Malkovich]',1999,'1. Writing credits (WGA):\r\nCharlie Kaufman (written by)\r\n \r\n2. Cast (in credits order) verified as complete:\r\nJohn Cusack .... Craig Schwartz \r\nCameron Diaz .... Lotte Schwartz \r\nNed Bellamy .... Derek Mantini \r\nEric Weinstein .... Father at Puppet Show \r\nMadison Lanc .... Daughter at Puppet Show \r\nOctavia Spencer .... Woman in Elevator (as Octavia L. Spencer) \r\nMary Kay Place .... Floris \r\nOrson Bean .... Dr. Lester \r\nCatherine Keener .... Maxine Lund \r\nK.K. Dodds .... Wendy \r\nReginald C. Hayes .... Don (as Reggie Hayes) \r\nByrne Piven .... Captain Mertin \r\nJudith Wetzell .... Tiny Woman \r\nJohn Malkovich .... John Horatio Malkovich \r\nKevin Carroll .... Cab Driver \r\nWillie Garson .... Guy in Restaurant \r\nW. Earl Brown .... First J.M. Inc. Customer \r\nCharlie Sheen .... Charlie \r\nGerald Emerick .... Sad Man in Line \r\nBill M. Ryusaki .... Mr. Hiroshi \r\nCarlos Jacott .... Larry the Agent \r\nJames Murray .... Student Puppeteer \r\nRichard Fancy .... Johnson Heyward \r\nPatti Tippo .... Malkovich\'s Mother \r\nDaniel Hansen .... Boy Malkovich \r\nGregory Sporleder .... Drunk at Bar \r\nMariah O\'Brien .... Girl Creeped Out by Malkovich \r\nKelly Teacher .... Emily \r\nJacqueline Benoît .... Lester\'s Friend (as Jacqueline Benoit) \r\nWilliam Buck .... Lester\'s Friend (as William N. Buck) \r\nChristine D. Coleman .... Lester\'s Friend \r\nJeanne Diehl .... Lester\'s Friend \r\nAudrey Gelfund .... Lester\'s Friend (as Audrey Gelfand) \r\nYetta Ginsburg .... Lester\'s Friend \r\nSylvester Jenkins .... Lester\'s Friend \r\nRoy C. Johnson .... Lester\'s Friend \r\nEddie J. Low .... Lester\'s Friend \r\nRalph W. Spaulding .... Lester\'s Friend \r\nDavid Wyler .... Lester\'s Friend \r\nFlori Wyler .... Lester\'s Friend \r\nKevin Lee .... Ballet Dancer \r\nMarlowe Bassett .... Ballet Dancer \r\nJennifer Canzoneri .... Ballet Dancer \r\nKristie Cordle .... Ballet Dancer \r\nDenise Dabrowski .... Ballet Dancer \r\nKristin D\'Andrea .... Ballet Dancer \r\nCharlene Grimsley .... Ballet Dancer \r\nChristine Krejer .... Ballet Dancer \r\nErica Long .... Ballet Dancer \r\nYvonne Montelius .... Ballet Dancer \r\nJessica Neuberger .... Ballet Dancer \r\nSara Rifkin .... Ballet Dancer \r\nElizabeth Rivera .... Ballet Dancer \r\nChelsa Sjostrom .... Ballet Dancer \r\nPamela Hayden .... Featured Character Voice (voice) \r\nJayne Hess .... Featured Character Voice (voice) \r\nMichelle Madden .... Featured Character Voice (voice) \r\nGreg O\'Neill .... Featured Character Voice (voice) \r\nNeil Ross .... Featured Character Voice (voice) \r\nBill Wittman .... Featured Character Voice (voice) \r\nrest of cast listed alphabetically \r\nLance Bangs .... Locker Room Bully (uncredited) \r\nKacee DeMasi .... Cab Driver (uncredited) \r\nAndy Dick .... Himself (archive footage) (uncredited) \r\nDavid Fincher .... Christopher Bing (uncredited) \r\nJester Hairston .... Lester\'s Friend (uncredited) \r\nIsaac Hanson .... Himself at Awards Ceremony (archive footage) (uncredited) \r\nTaylor Hanson .... Himself (archive footage) (uncredited) \r\nZac Hanson .... Himself (archive footage) (uncredited) \r\nDustin Hoffman .... Willy Loman (archive footage) (uncredited) \r\nVictor Isaac .... Student (uncredited) \r\nSpike Jonze .... Derek Mantini\'s Assistant for Emily Dickinson Puppet (uncredited) \r\nSean Penn .... Himself (uncredited) \r\nBrad Pitt .... Himself (uncredited) \r\nWinona Ryder .... Herself (archive footage) (uncredited) \r\nGary Sinise .... Stage Role (archive footage) (uncredited) \r\n\r\n3. Original Music by:\r\nBjörk (closing theme) \r\nCarter Burwell \r\n\r\n4. Non-Original Music by:\r\nBéla Bartók (from \"Music for Strings, Percussion & Celesta: Allegro\") \r\nElmer Bernstein (from \'To Kill a Mockingbird (1962)\') (uncredited)',0,'5',2,'2004-09-19 08:21:39',108,1,'Spike Jonze','Charlie Kaufman','Carter Burwell','PAL - Anamorph Widescreen (1,85:1) [16:9]','Audio: German (5.1), English (5.1), French (5.1) - Subtitles: German, English, French, Dutch'),(7,1,'Bend It Like Beckham',2002,'1. Writing credits:\r\nGurinder Chadha \r\nPaul Mayeda Berges \r\nGuljit Bindra \r\n \r\n2. Cast (in credits order) complete, awaiting verification:\r\nParminder Nagra .... Jesminder \'Jess\' Bhamra \r\nKeira Knightley .... Juliette \'Jules\' Paxton \r\nJonathan Rhys-Meyers .... Joe \r\nAnupam Kher .... Mr. Bhamra \r\nArchie Panjabi .... Pinky Bhamra \r\nShaznay Lewis .... Mel \r\nFrank Harper .... Alan Paxton \r\nJuliet Stevenson .... Paula Paxton \r\nShaheen Khan .... Mrs. Bhamra \r\nAmeet Chana .... Tony \r\nPooja Shah .... Meena \r\nPaven Virk .... Bubbly \r\nPreeya Kalidas .... Monica \r\nTrey Farley .... Taz \r\nSaraj Chaudhry .... Sonny \r\nImran Ali .... Gary \r\nKulvinder Ghir .... Teetu \r\nHarvey Virdi .... Teetu\'s Mum \r\nAsh Varrez .... Teetu\'s Dad \r\nAdlyn Ross .... Elderly Aunt \r\nShobu Kapoor .... Polly \r\nZohra Sehgal .... Biji \r\nAhsen Bhatti .... Nairobi Grandson \r\nTanveer Ghani .... Video Man \r\nNina Wadia .... Wedding Guest \r\nOlivia Schofield .... Hounslow Harrier \r\nNatasha Lee .... Hounslow Harrier \r\nLouise Walker .... Hounslow Harrier \r\nJenni Birch .... Hounslow Harrier \r\nDanielle Richards .... Hounslow Harrier \r\nSuzanna Keeka .... Hounslow Harrier \r\nTanya Beverly .... Hounslow Harrier \r\nSally Kirkbride .... Hounslow Harrier \r\nMaki Okumurakami .... Hounslow Harrier \r\nNav Bopari .... Hounslow Harrier \r\nGary Lineker .... Himself \r\nAlan Hansen .... Himself \r\nJohn Barnes .... Himself \r\nJohn Motson .... Himself (voice) \r\nrest of cast listed alphabetically \r\nBrandi Chastain .... Herself (archive footage) \r\nMia Hamm .... Herself (archive footage) \r\nTiffeny Milbrett .... Herself (archive footage) \r\nDavid Beckham .... Himself (archive footage) (uncredited) \r\nGurinder Chadha .... Woman in park, wedding guest (uncredited) \r\nRyan Giggs .... Himself (archive footage) (uncredited) \r\nKatie Goldberg .... Player of Oposing Team (uncredited) \r\nAndy Harmer .... David Beckham (uncredited) \r\nBobby Jagdev .... Supporter of Opposing Team (uncredited) \r\nKristine Lily .... Herself (archive footage) (uncredited) \r\nGary Neville .... Himself (archive footage) (uncredited) \r\nGill Penny .... Victoria Beckham (uncredited) \r\nPaul Scholes .... Himself (archive footage) (uncredited) \r\n\r\n3. Original Music by:\r\nCraig Pruess \r\nBally Sagoo (songs) \r\n \r\n4. Non-Original Music by:\r\nGregg Alexander (song \"Inner Smile\") \r\nVictoria Beckham (song \"IOU\") \r\nCurtis Mayfield (song \"Move On Up\") \r\nJohn McElhone (song \"Inner Smile\") \r\nRick Nowels (song \"Inner Smile\") \r\nGiacomo Puccini (\"Nessun dorma\" from opera \"Turandot\") \r\nSharleen Spiteri (song \"Inner Smile\")',0,'5',2,'2004-09-19 08:22:01',112,1,'Gurinder Chadha','Gurinder Chadha, Paul Mayeda Berges & Guljit Bindra','Craig Pruess','PAL - Anamorph Widescreen (1,85:1) [16:9]','Audio: English (5.1) - Subtitles: English, English (aurally handicapped)'),(8,1,'Kick It Like Beckham [OT: Bend It Like Beckham]',2002,'1. Writing credits:\r\nGurinder Chadha \r\nPaul Mayeda Berges \r\nGuljit Bindra \r\n \r\n2. Cast (in credits order) complete, awaiting verification:\r\nParminder Nagra .... Jesminder \'Jess\' Bhamra \r\nKeira Knightley .... Juliette \'Jules\' Paxton \r\nJonathan Rhys-Meyers .... Joe \r\nAnupam Kher .... Mr. Bhamra \r\nArchie Panjabi .... Pinky Bhamra \r\nShaznay Lewis .... Mel \r\nFrank Harper .... Alan Paxton \r\nJuliet Stevenson .... Paula Paxton \r\nShaheen Khan .... Mrs. Bhamra \r\nAmeet Chana .... Tony \r\nPooja Shah .... Meena \r\nPaven Virk .... Bubbly \r\nPreeya Kalidas .... Monica \r\nTrey Farley .... Taz \r\nSaraj Chaudhry .... Sonny \r\nImran Ali .... Gary \r\nKulvinder Ghir .... Teetu \r\nHarvey Virdi .... Teetu\'s Mum \r\nAsh Varrez .... Teetu\'s Dad \r\nAdlyn Ross .... Elderly Aunt \r\nShobu Kapoor .... Polly \r\nZohra Sehgal .... Biji \r\nAhsen Bhatti .... Nairobi Grandson \r\nTanveer Ghani .... Video Man \r\nNina Wadia .... Wedding Guest \r\nOlivia Schofield .... Hounslow Harrier \r\nNatasha Lee .... Hounslow Harrier \r\nLouise Walker .... Hounslow Harrier \r\nJenni Birch .... Hounslow Harrier \r\nDanielle Richards .... Hounslow Harrier \r\nSuzanna Keeka .... Hounslow Harrier \r\nTanya Beverly .... Hounslow Harrier \r\nSally Kirkbride .... Hounslow Harrier \r\nMaki Okumurakami .... Hounslow Harrier \r\nNav Bopari .... Hounslow Harrier \r\nGary Lineker .... Himself \r\nAlan Hansen .... Himself \r\nJohn Barnes .... Himself \r\nJohn Motson .... Himself (voice) \r\nrest of cast listed alphabetically \r\nBrandi Chastain .... Herself (archive footage) \r\nMia Hamm .... Herself (archive footage) \r\nTiffeny Milbrett .... Herself (archive footage) \r\nDavid Beckham .... Himself (archive footage) (uncredited) \r\nGurinder Chadha .... Woman in park, wedding guest (uncredited) \r\nRyan Giggs .... Himself (archive footage) (uncredited) \r\nKatie Goldberg .... Player of Oposing Team (uncredited) \r\nAndy Harmer .... David Beckham (uncredited) \r\nBobby Jagdev .... Supporter of Opposing Team (uncredited) \r\nKristine Lily .... Herself (archive footage) (uncredited) \r\nGary Neville .... Himself (archive footage) (uncredited) \r\nGill Penny .... Victoria Beckham (uncredited) \r\nPaul Scholes .... Himself (archive footage) (uncredited) \r\n\r\n3. Original Music by:\r\nCraig Pruess \r\nBally Sagoo (songs) \r\n \r\n4. Non-Original Music by:\r\nGregg Alexander (song \"Inner Smile\") \r\nVictoria Beckham (song \"IOU\") \r\nCurtis Mayfield (song \"Move On Up\") \r\nJohn McElhone (song \"Inner Smile\") \r\nRick Nowels (song \"Inner Smile\") \r\nGiacomo Puccini (\"Nessun dorma\" from opera \"Turandot\") \r\nSharleen Spiteri (song \"Inner Smile\")',0,'5',2,'2004-09-19 08:22:17',112,1,'Gurinder Chadha','Gurinder Chadha, Paul Mayeda Berges & Guljit Bindra','Craig Pruess','PAL - Anamorph Widescreen (1,85:1) [16:9]','Audio: German (5.1), English (5.1) - Subtitles: German'),(9,1,'Blair Witch Project [OT: The Blair Witch Project]',1999,'1. Writing credits:\r\nDaniel Myrick & \r\nEduardo Sánchez (as Eduardo Sanchez)\r\n\r\n2. Cast (in credits order) complete, awaiting verification:\r\nHeather Donahue .... Heather Donahue \r\nJoshua Leonard .... Joshua \'Josh\' Leonard \r\nMichael C. Williams .... Michael \'Mike\' Williams (as Michael Williams) \r\nBob Griffin .... Short Fisherman \r\nJim King .... Interviewee \r\nSandra Sánchez .... Waitress (as Sandra Sanchez) \r\nEd Swanson .... Fisherman With Glasses \r\nPatricia DeCou .... Mary Brown \r\nMark Mason .... Man in Yellow Hat \r\nJackie Hallex .... Interviewee with Child \r\n\r\n3. Original Music by:\r\nTony Cora',0,'22',2,'2004-09-19 08:22:42',78,1,'Daniel Myrick & Eduardo Sánchez','Daniel Myrick & Eduardo Sánchez','Tony Cora','PAL - 4:3','Audio: German (5.1), English (DS)'),(10,1,'Blueprint',2003,'1. Writing credits (in alphabetical order):\r\nClaus Cornelius Fischer (screenplay) \r\nCharlotte Kerner (novel) \r\n\r\n2. Cast (in credits order):\r\nFranka Potente .... Iris Sellin/Siri Sellin \r\nUlrich Thomsen .... Dr. Martin Fisher \r\nHilmir Snær Guðnason .... Greg (as Hilmir Snaer Gudnason) \r\nKatja Studt .... Daniela Hausmann \r\nJustus von Dohnanyi .... Thomas Weber (as Justus von Dohnányi) \r\nWanja Mues .... Janeck Hausmann \r\nOle Puppe .... Kristian \r\nRita Leska .... Woman in store \r\nNina Gummich .... Siri (8 years old) \r\nKaroline Teska .... Siri (13 years old) \r\nWoody Mues .... Janeck (10 years old) \r\nHendrik Duryn .... Medic \r\n\r\n3. Original Music by:\r\nDetlef Petersen (as Detlef Friedrich Petersen)',0,'2',2,'2004-09-19 08:22:56',108,1,'Rolf Schübel','Charlotte Kerner (novel) / Claus Cornelius Fischer (screenplay)','Detlef Petersen','PAL - Anamorph Widescreen (1,85:1) [16:9]','Audio: German (5.1) - Subtitles: English'),(11,1,'Casablanca [OT: Casblanca]',1942,'1. Writing credits:\r\nMurray Burnett (play Everybody Comes to Rick\'s) and \r\nJoan Alison (play Everybody Comes to Rick\'s)\r\nJulius J. Epstein and \r\nPhilip G. Epstein and \r\nHoward Koch \r\nCasey Robinson (uncredited)\r\n \r\n2. Cast (in credits order) verified as complete:\r\nHumphrey Bogart .... Rick Blaine \r\nIngrid Bergman .... Ilsa Lund Laszlo \r\nPaul Henreid .... Victor Laszlo \r\nClaude Rains .... Capt. Louis Renault \r\nConrad Veidt .... Maj. Heinrich Strasser \r\nSydney Greenstreet .... Signor Ferrari \r\nPeter Lorre .... Guillermo Ugarte \r\nS.Z. Sakall .... Carl (as S.K. Sakall) \r\nMadeleine LeBeau .... Yvonne \r\nDooley Wilson .... Sam \r\nJoy Page .... Annina Brandel \r\nJohn Qualen .... Berger \r\nLeonid Kinskey .... Sascha \r\nCurt Bois .... Pickpocket \r\nrest of cast listed alphabetically \r\nLouis V. Arco .... Refugee at Rick\'s (uncredited) \r\nLeon Belasco .... Dealer (uncredited) \r\nTrude Berliner .... Baccarat player (uncredited) \r\nOliver Blake .... Waiter at the Blue Parrot (uncredited) \r\nMonte Blue .... American (uncredited) \r\nGino Corrado .... Waiter (uncredited) \r\nFranco Corsaro .... Conspirator (uncredited) \r\nMarcel Dalio .... Emil (the croupier at Rick\'s) (uncredited) \r\nHelmut Dantine .... Jan Brandel (uncredited) \r\nGeorge Dee .... Casselle (uncredited) \r\nJean Del Val .... Conspirator (uncredited) \r\nWilliam Edmunds .... Second Contact Man at Rick\'s (uncredited) \r\nMartin Garralaga .... Headwaiter at Rick\'s Cafe (uncredited) \r\nGregory Gaye .... German Banker Refused by Rick (uncredited) \r\nIlka Grüning .... Mrs. Leuchtag (Carl\'s immigrating friend) (uncredited) \r\nCreighton Hale .... Gambler Inquiring About Casino\'s Honesty (uncredited) \r\nOlaf Hytten .... Prosperous Man (uncredited) \r\nCharles La Torre .... Officer Tonnelli (uncredited) \r\nGeorge J. Lewis .... Haggling Arab Monkey Seller (uncredited) \r\nLou Marcelle .... Narrator (voice) (uncredited) \r\nMichael Mark .... Vendor (uncredited) \r\nGeorge Meeker .... Rick\'s Friend Seen After Ugarte\'s Arrest (uncredited) \r\nLouis Mercier .... Smuggler (uncredited) \r\nTorben Meyer .... Dutch Banker at Cafe Table (uncredited) \r\nAlberto Morin .... French Officer Insulting Yvonne (uncredited) \r\nLeo Mostovoy .... Fydor (uncredited) \r\nCorinna Mura .... Singer with Guitar (uncredited) \r\nLotte Palfi Andor .... Woman Selling Her Diamonds (uncredited) \r\nPaul Porcasi .... Native Introducing Ferrari (uncredited) \r\nFrank Puglia .... Arab Vendor (uncredited) \r\nGeorges Renavent .... Conspirator (uncredited) \r\nDewey Robinson .... (uncredited) \r\nHenry Rowland .... German Officer (uncredited) \r\nRichard Ryen .... Col. Heinze (uncredited) \r\nDan Seymour .... Abdul (uncredited) \r\nGerald Oliver Smith .... Pickpocketed Englishman (uncredited) \r\nGeoffrey Steele .... Customer (uncredited) \r\nLudwig Stössel .... Mr. Leuchtag (Carl\'s immigrating friend) (uncredited) \r\nNorma Varden .... Wife of Pickpocketed Englishman (uncredited) \r\nHans Heinrich von Twardowski .... German Officer with Yvonne (uncredited) \r\nLeo White .... Emile (uncredited) \r\nWolfgang Zilzer .... Man with Expired Papers (uncredited) \r\n\r\n3. Original Music by:\r\nM.K. Jerome (songs) \r\nJack Scholl (songs) \r\nMax Steiner \r\n\r\n4. Non-Original Music by:\r\nHerman Hupfeld (song \"As Time Goes By\") (uncredited)',0,'2',2,'2004-09-19 08:23:24',98,1,'Michael Curtiz','Murray Burnett & Joan Alison (play Everybody Comes to Rick\'s) / Julius J. Epstein, Philip G. Epstein, Howard Koch & Casey Robinson (uncredited)','Max Steiner','PAL - (1,33:1) [4:3]','Audio: German (mono), English (mono), Spanish (mono) - Subtitles: German, English, Spanish, French, Italian, Turkish, Dutch, Swedish, Norwegian, Danish, Finnish, Portuguese, Hebrew, Polish, Greek, Czech, Hungarian, Islandic, Croatian'),(12,1,'Chicken Run - Hennen rennen [OT: Chicken Run]',2000,'1. Writing credits:\r\nPeter Lord (story) & \r\nNick Park (story)\r\nKarey Kirkpatrick (screenplay)\r\nRandy Cartwright additional story \r\n\r\n2. Cast (in credits order) verified as complete (for OT):\r\nPhil Daniels .... Fetcher (voice) \r\nLynn Ferguson .... Mac (voice) \r\nMel Gibson .... Rocky (voice) \r\nTony Haygarth .... Mr. Tweedy (voice) \r\nJane Horrocks .... Babs (voice) \r\nMiranda Richardson .... Mrs. Tweedy (voice) \r\nJulia Sawalha .... Ginger (voice) \r\nTimothy Spall .... Nick (voice) \r\nImelda Staunton .... Bunty (voice) \r\nBenjamin Whitrow .... Fowler (voice) \r\nJohn Sharian .... Circus Man (voice) \r\nJo Allen .... Chicken (voice) \r\nLisa Kay .... Chicken (voice) \r\nLaura Strachan .... Chicken (voice) \r\n\r\n3. Original Music by:\r\nHarry Gregson-Williams \r\nSteve Jablonsky (additional music) \r\nJames McKee Smith (additional music) \r\nJohn Powell \r\nGeoff Zanelli (additional music)',0,'12',2,'2004-09-19 08:23:39',81,1,'Nick Park & Peter Lord','Peter Lord & Nick Park (story) / Karey Kirkpatrick (screenplay) / Randy Cartwright (additional story)','Harry Gregson-Williams & John Powell','PAL - Anamorph Widescreen (1,85:1) [16:9]','Audio: German (5.1, DTS 6.1), English (5.1, DTS 6.1) - Subtitles: German (aurally handicapped), English'),(13,1,'Deeply [OT: Deeply]',2000,'',0,'-1',2,'2004-09-19 08:23:55',0,1,'Sheri Elwood','','','',''),(14,1,'Dogville [OT: Dogville]',2003,'',0,'-1',2,'2004-09-19 08:24:15',0,1,'Lars von Trier','','','',''),(15,1,'Donnie Darko [OT: Donnie Darko]',2001,'',0,'-1',2,'2004-09-19 08:24:27',0,1,'Richard Kelly','','','',''),(16,1,'East Is East [OT: East Is East]',1999,'',0,'-1',2,'2004-09-19 08:24:39',0,1,'Damien O\'Donnell','','','',''),(17,1,'Ein einfacher Plan [OT: A Simple Plan]',1998,'',0,'-1',2,'2004-09-19 08:25:03',0,1,'Sam Raimi','','','',''),(18,1,'Erin Brockovich [OT: Erin Brockovich]',2000,'',0,'2',2,'2004-09-19 08:25:29',0,1,'Steven Soderbergh','','','',''),(19,1,'eXistenZ [OT: eXistenZ]',1999,'',0,'-1',2,'2004-09-19 08:26:20',0,1,'David Cronenberg','','','',''),(20,1,'Experiment, Das',2001,'1. Writing credits (in alphabetical order): \r\nDon Bohlinger (screenplay) \r\nChristoph Darnstädt (screenplay) \r\nMario Giordano (screenplay - also novel \"Black Box\") \r\nOliver Hirschbiegel (uncredited) \r\nFriedrich Wildfeuer (uncredited) \r\n\r\n2. Cast (in credits order) complete, awaiting verification: \r\nMoritz Bleibtreu .... Tarek Fahd, Häftling Nr. 77 (Häftlinge)/(Prisoners) \r\nChristian Berkel .... Steinhoff, Häftling Nr. 38 (Häftlinge)/(Prisoners) \r\nOliver Stokowski .... Schütte, Häftling Nr. 82 (Häftlinge)/(Prisoners) \r\nWotan Wilke Möhring .... Joe, Häftling Nr. 69 (Häftlinge)/(Prisoners) \r\nStephan Szasz .... Häftling Nr. 53 (Häftlinge)/(Prisoners) \r\nPolat Dal .... Häftling Nr. 40 (Häftlinge)/(Prisoners) \r\nDanny Richter .... Häftling Nr. 21 (Häftlinge)/(Prisoners) \r\nRalf Müller .... Häftling Nr. 15 (Häftlinge)/(Prisoners) \r\nMarkus Rudolf .... Häftling Nr. 74 (Häftlinge)/(Prisoners) \r\nPeter Fieseler .... Häftling Nr. 11 (Häftlinge)/(Prisoners) \r\nThorsten Dersch .... Häftling Nr. 86 (Häftlinge)/(Prisoners) (as Thorsten J.H. Dersch) \r\nSven Grefer .... Häftling Nr. 94 (Häftlinge)/(Prisoners) \r\nJustus von Dohnanyi .... Berus (Strafvollzugsbeamte)/(Guards) (as Justus von Dohnànyi) \r\nNicki von Tempelhoff .... Kamps (Strafvollzugsbeamte)/(Guards) \r\nTimo Dierkes .... Eckert (Strafvollzugsbeamte)/(Guards) \r\nAntoine Monot Jr. .... Bosch (Strafvollzugsbeamte)/(Guards) \r\nLars Gärtner .... Renzel (Strafvollzugsbeamte)/(Guards) \r\nJacek Klimontko .... Gläser (Strafvollzugsbeamte)/(Guards) \r\nMarkus Klauk .... Stock (Strafvollzugsbeamte)/(Guards) \r\nRalph Püttmann .... Amandy (Strafvollzugsbeamte)/(Guards) \r\nEdgar Selge .... Professor Dr. Klaus Thon (Wissenschaftler)/(Scientists) \r\nAndrea Sawatzki .... Dr. Jutta Grimm (Wissenschaftler)/(Scientists) \r\nPhilipp Hochmair .... Lars (Wissenschaftler)/(Scientists) \r\nMaren Eggert .... Dora (Die Anderen)/(The Others) \r\nAndré Jung .... Ziegler (Die Anderen)/(The Others) \r\nUwe Rohde .... Hans (Die Anderen)/(The Others) \r\nHeiner Lauterbach .... Dennis (Die Stimmen/The Voices) (voice) \r\nFatih Akin .... Taxifahrer/Taxi Driver (Die Stimmen/The Voices) (voice) \r\nChristiane Gerboth .... Nachrichtensprecher/Newscaster (Die Stimmen/The Voices) (voice) \r\nrest of cast listed alphabetically: \r\nKlaus Spinnler .... Assistenten \r\nTristan Vostry .... Assistenten \r\n \r\n3. Original Music by: \r\nAlexander Bubenheim (as Alexander von Bubenheim) \r\nLou Handman (song \"Are You Lonesome Tonight?\") \r\nRoy Turk (song \"Are You Lonesome Tonight?\")',0,'2',2,'2004-09-19 08:26:39',120,1,'Oliver Hirschbiegel','Don Bohlinger, Christoph Darnstädt & Mario Giordano (screenplay) / Mario Giordano (novel \"Black Box\") / Oliver Hirschbiegel (uncredited) & Friedrich Wildfeuer (uncredited)','Alexander Bubenheim','PAL - Anamorph Widescreen (1,85:1) [16:9]','Audio: German (5.1)'),(21,1,'Fabelhafte Welt der Amélié, Die [OT: Le fabuleux destin d\'Amélie Poulain]',2001,'',0,'-1',2,'2004-09-19 08:27:06',0,1,'Jean-Pierre Jeunet','','','',''),(22,1,'Fargo [OT: Fargo]',1996,'',0,'5',2,'2004-09-19 08:27:23',0,1,'Joel Coen & Ethan Coen (uncredited)','Joel Coen & Ethan Coen','','',''),(241,1,'Syriana - Korruption ist alles [OT: Syriana]',2005,'',0,'22',2,'2006-12-31 13:50:28',122,1,'Stephen Gaghan','Robert Baer (book - suggestion), Stephen Gaghan','Alexandre Desplat','',''),(24,1,'Fast Food, Fast Women [OT: Fast Food Fast Women]',2000,'',0,'2',2,'2004-09-19 08:27:58',0,1,'Amos Kollek','','','',''),(25,1,'Führer EX',2002,'',0,'-1',2,'2004-09-19 08:28:13',0,1,'Winfried Bonengel','','','',''),(26,1,'Galaxy Quest [OT: Galaxy Quest]',1999,'',0,'5',2,'2004-09-19 08:28:26',0,1,'Dean Parisot','','','',''),(27,1,'Ganz oder gar nicht [OT: The Full Monty]',1997,'',0,'-1',2,'2004-09-19 08:29:02',0,1,'Peter Cattaneo','','','',''),(28,1,'Gattaca [OT: Gattaca]',1997,'',0,'1',2,'2004-09-19 08:29:17',0,1,'Andrew Niccol','','','',''),(29,1,'Ghost World [OT: Ghost World]',2001,'',0,'-1',2,'2004-09-19 08:29:28',0,1,'Terry Zwigoff','','','',''),(30,1,'Go! [OT: Go]',1999,'',0,'-1',2,'2004-09-19 08:29:37',0,1,'Doug Liman','','','',''),(31,1,'Grabgeflüster [OT: Plots with a View]',2002,'',0,'-1',2,'2004-09-19 08:29:47',0,1,'Nick Hurran','','','',''),(32,1,'Halbe Treppe',2002,'',0,'-1',2,'2004-09-19 08:29:59',0,1,'Andreas Dresen','','','',''),(33,1,'Herr Lehmann',2003,'',0,'-1',2,'2004-09-19 08:30:11',0,1,'Leander Haußmann','','','',''),(34,1,'Intimacy [OT: Intimacy]',2001,'',0,'-1',2,'2004-09-19 08:30:32',0,1,'Patrice Chéreau','','','',''),(35,1,'Italienisch für Anfänger [OT: Italiensk for begyndere]',2000,'',0,'-1',2,'2004-09-19 08:30:45',0,1,'Lone Scherfig','','','',''),(36,1,'Jalla! Jalla! [OT: Jalla! Jalla!]',2000,'',0,'-1',2,'2004-09-19 08:31:23',0,1,'Josef Fares','','','',''),(37,1,'Kleine Morde unter Freunden [OT: Shallow Grave]',1994,'',0,'-1',2,'2004-09-19 08:31:40',0,1,'Danny Boyle','','','',''),(38,1,'Kops [OT: Kopps]',2003,'',0,'-1',2,'2004-09-19 08:32:33',0,1,'Josef Fares','','','',''),(39,1,'L.A. Confidential [OT: L.A. Confidential]',1997,'',0,'-1',2,'2004-09-19 08:32:50',0,1,'Curtis Hanson','','','',''),(40,1,'Leben des David Gale, Das [OT: The Life of David Gale]',2003,'',0,'-1',2,'2004-09-19 08:33:04',0,1,'Alan Parker','','','',''),(41,1,'Letzte Versuchung Christi, Die [OT: The Last Temptation of Christ]',1988,'',0,'-1',2,'2004-09-19 08:33:26',0,1,'Martin Scorsese','','','',''),(42,1,'Leben ist schön, Das [OT: La vita è bella]',1997,'',0,'-1',2,'2004-09-19 08:34:00',0,1,'Roberto Benigni','','','',''),(43,1,'Lilja 4-Ever [OT: Lilja 4-ever]',2002,'',0,'2',2,'2004-09-19 08:35:18',0,1,'Lukas Moodysson','','','',''),(44,1,'Lone Star [OT: Lone Star]',1996,'',0,'-1',2,'2004-09-19 08:35:39',0,1,'John Sayles','','','',''),(45,1,'Memento [OT: Memento]',2000,'',0,'-1',2,'2004-09-19 08:35:48',0,1,'Christopher Nolan','','','',''),(46,1,'Man Who Wasn\'t There, The [OT: The Man Who Wasn\'t There]',2001,'',0,'-1',2,'2004-09-19 08:36:03',0,1,'Joel Coen & Ethan Coen (uncredited)','Joel Coen & Ethan Coen','','',''),(47,1,'Mann, der vom Himmel fiel, Der [OT: The Man Who Fell to Earth]',1976,'',0,'1',2,'2004-09-19 08:36:31',0,1,'Nicolas Roeg','','','',''),(48,1,'Mann ohne Vergangenheit, Der [OT: Mies vailla menneisyyttä]',2002,'',0,'-1',2,'2004-09-19 08:36:50',0,1,'Aki Kaurismäki','','','',''),(49,1,'Mein Leben ohne mich [OT: Mi vida sin mi]',2003,'',0,'-1',2,'2004-09-19 08:37:16',0,1,'Isabel Coixet','','','',''),(50,1,'Midnight Express [OT: Midnight Express]',1978,'',0,'-1',2,'2004-09-19 08:37:29',0,1,'Alan Parker','','','',''),(51,1,'Million Dollar Hotel, The [The Million Dollar Hotel]',2000,'',0,'-1',2,'2004-09-19 08:37:53',0,1,'Wim Wenders','','','',''),(52,1,'Monsoon Wedding [OT: Monsoon Wedding]',2001,'',0,'-1',2,'2004-09-19 08:38:04',0,1,'Mira Nair','','','',''),(53,1,'Monster AG, Die [OT: Monsters, Inc.]',1991,'',0,'12',2,'2004-09-19 08:38:15',0,1,'Peter Docter, David Silverman & Lee Unkrich','','','',''),(54,1,'Mr. Smith geht nach Washington [OT: Mr. Smith Goes to Washington]',1939,'',0,'-1',2,'2004-09-19 08:38:38',0,1,'Frank Capra','','','',''),(55,1,'Nói Albinói [OT: Nói albínói]',2003,'',0,'-1',2,'2004-09-19 08:38:55',0,1,'Dagur Kári','','','',''),(56,1,'Open Hearts [OT: Elsker dig for evigt]',2002,'',0,'2',2,'2004-09-19 08:39:08',0,1,'Susanne Bier','','','',''),(57,1,'Pieces of April [OT: Pieces of April]',2003,'',0,'-1',2,'2004-09-19 08:39:26',0,1,'Peter Hedges','','','',''),(58,1,'Pipe Dream [OT: Pipe Dream]',2002,'',0,'-1',2,'2004-09-19 08:39:38',0,1,'John Walsh','','','',''),(59,1,'Rocky Horror Picture Show, The',1975,'',0,'-1',2,'2004-09-19 08:40:26',0,1,'Jim Sharman','','','',''),(62,1,'Schrei in der Stille [OT: The Reflecting Skin]',1990,'',0,'-1',2,'2004-09-19 08:42:44',0,1,'Philip Ridley','','','',''),(63,1,'Soloalbum',2004,'',0,'-1',2,'2004-09-19 08:42:55',0,1,'Gregor Schnitzler','','','',''),(64,1,'Stigmata [OT: Stigmata]',1999,'',0,'-1',2,'2004-09-19 08:43:20',0,1,'Rupert Wainwright','','','',''),(66,1,'Tuxedo, The [OT: The Tuxedo]',2002,'',0,'-1',2,'2004-09-19 08:44:44',0,1,'Kevin Donovan','','','',''),(207,1,'Madagaskar [OT: Madagascar]',2005,'',0,'12',2,'2005-12-27 11:43:09',82,1,'Eric Darnell & Tom McGrath','','','',''),(68,1,'Virgin Suicides, The [OT: The Virgin Suicides]',1999,'',0,'-1',2,'2004-09-19 08:45:37',0,1,'Sofia Coppola','','','',''),(70,1,'Wonderboys, Die [OT: The Wonderboys]',2000,'',0,'-1',2,'2004-09-19 08:48:04',0,1,'Curtis Hanson','','','',''),(71,1,'You Can Count On Me [OT: You Can Count On Me]',2000,'',0,'-1',2,'2004-09-19 08:48:26',0,1,'Kenneth Lonergan','','','',''),(72,1,'Zug des Lebens [OT: Train de vie]',1998,'',0,'-1',2,'2004-09-19 08:49:05',0,1,'Radu Mihaileanu','','','',''),(73,1,'Zugvögel - ... einmal nach Inari',1998,'',0,'-1',2,'2004-09-19 08:49:16',0,1,'Peter Lichtefeld','','','',''),(74,2,'Coyote Ugly [OT: Coyote Ugly]',2000,'1. Writing credits (WGA):\r\nGina Wendkos (written by)\r\n \r\n2. Cast (in credits order) complete, awaiting verification:\r\nPiper Perabo .... Violet Sanford \r\nAdam Garcia .... Kevin O\'Donnell \r\nJohn Goodman .... Bill Sanford \r\nMaria Bello .... Lil \r\nIzabella Miko .... Cammie \r\nTyra Banks .... Zoe \r\nBridget Moynahan .... Rachel \r\nMelanie Lynskey .... Gloria \r\nDel Pentecost .... Lou the Bouncer \r\nMichael Weston .... Danny \r\nLeAnn Rimes .... Herself \r\nJeremy Rowley .... William Morris Receptionist \r\nEllen Cleghorne .... Wendy, Music Publishing Receptionist \r\nJohn Fugelsang .... Richie the Booker \r\nBud Cort .... Romero \r\nRobert Ahlers .... Finale Club Back-Up Musician \r\nOrlando Sims .... Finale Club Back-Up Musician \r\nBarry Michael Duff .... Finale Club Back-Up Musician \r\nWilliam Ritter III .... Finale Club Back-Up Musician \r\nChandra Bailey .... Finale Club Back-Up Musician (as Chanda Bailey) \r\nFreez Luv .... Fiji Mermaid Club Bouncer (as Freeze Luv) \r\nAlex Band .... Fiji Mermaid Club Band \r\nMiles Mosley .... Fiji Mermaid Club Band \r\nAaron Kamin .... Fiji Mermaid Club Band \r\nVic Vanacore .... Fiji Mermaid Club Band \r\nGreg Pitts .... Fiji Mermaid Waiter \r\nWhitney Dylan .... Fiji Mermaid Worker \r\nMarvin Krueger .... Surgeon \r\nVictor Argo .... Pete \r\nPeter Appel .... Pizza Customer \r\nJohn Mondin .... Pizza Customer \r\nFrank Medrano .... Walt \r\nElizabeth Beckwith .... Management Office Receptionist \r\nDiane Hudock .... Open Mic Woman \r\nTara MacLean .... Open Mic Singer \r\nEric Ritter .... Arlene\'s Grocery Audience Member \r\nThomas R. Martin .... Arlene\'s Grocery Audience Member \r\nKen Hudson Campbell .... Biker (as Ken Campbell) \r\nJorgen de Mey .... Coyote Ugly Customer \r\nJimmy Shubert .... Coyote Ugly Drunk \r\nGreg Ginther .... Coyote Ugly Drunk \r\nJeff Michalski .... Mike the Fire Marshall \r\nKaitlin Olson .... Bidding Customer \r\nJennifer Jean Snyder .... Bidding Customer (as Jennifer Jean) \r\nSusan Yeagley .... Bidding Customer \r\nJill Gettelson .... Bidding Customer \r\nJack McGee .... Baseball Pitcher \r\nPaul Davis-Miller .... Sam Ash Salesman \r\nJohnny Zander .... Roy \r\nWali Collins .... Critch \r\nScott Russo .... Elbow Room Band Member \r\nRob Brewer .... Elbow Room Band Member \r\nSteve Morris .... Elbow Room Band Member \r\nWade Youman .... Elbow Room Band Member \r\nPatrick Kim .... Elbow Room Band Member \r\nNatasha Reulet .... Girl at the Surprise Party \r\nSarah Morris .... Girl at the Surprise Party \r\nJennifer Day .... Girl at the Surprise Party \r\nNava Plotski .... Girl at the Surprise Party (as Nava Plotsky) \r\nAlicia Lorén .... Girl at the Surprise Party (as Alicia Sorell) \r\nJennifer Manalo .... Girl at the Surprise Party \r\nNicole Ghastin .... Lyndsay Morgan \r\nJonathan Klein .... Manager \r\nAlexandra Balahoutis .... Hostess \r\nJohnny Knoxville .... College Guy \r\nChris Wylde .... College Guy \r\nMandy Amano .... Dancing Girl in Bar \r\nCarla Alaponte .... Dancing Girl in Bar \r\nStephanie Hodge .... Dancing Girl in Bar \r\nAllison Ford .... Dancing Girl in Bar \r\nKathy Nowrey .... Dancing Girl in Bar \r\nMichael Bay .... Photographer \r\nChip Chinery .... Cop \r\nNick Vallelonga .... Cop \r\nJoseph Patrick Kelly .... Coyote Ugly Bar Patron \r\nGreg Collins .... Coyote Ugly Bar Patron \r\nStephen Snedden .... Fancy Drinks Customer \r\nChris Soldevilla .... Man Ordering Shots \r\nJoe Bucaro III .... Finale Club Drunk (as Joseph Bucaro III) \r\nJames T. Sale .... Finale Club Drunk \r\nHeather Shannon Ryan .... Sorority Girl \r\nBiljana Filipovic .... Bar Fight Girlfriend \r\nrest of cast listed alphabetically \r\nEddie Aniske .... Finale Club Lead-In Band (uncredited) \r\nAlex Borstein .... Bidding Customer (uncredited) \r\nTony Collucci .... High Five Guy (uncredited) \r\nClaudia Cummings .... Violet (uncredited) \r\nDaniel L. Holmes .... Two Beer Guy (uncredited) \r\nTimothy Huang .... Pedestrian (uncredited) \r\nJason Jacobs .... Finale Club Lead-In Band (uncredited) \r\nJuliet Neil .... Girl on Street (uncredited) \r\nDavid M. Nesting .... Sorority Girl\'s Boyfriend (uncredited) \r\nCalvi Pabon .... Sexy Dancer (uncredited) \r\nMelody Perkins .... New Coyote (uncredited) \r\nTara Schwartz .... Dancer (uncredited) \r\nGrant Taskerud .... Finale Club Lead-In Band (uncredited) \r\nPatty Tobin .... The Red-Headed Nurse (uncredited) \r\nJaime Vond .... Music Company Receptionist (uncredited) \r\nLisa Marie Waishes .... Shannon (uncredited) \r\nBrad Yoder .... College Guy (uncredited) \r\nPatrick Yonally .... Finale Club Lead-In Band (uncredited) \r\n\r\n3. Original Music by:\r\nAlex Band (song \"Wherever You Go\") \r\nSteve Bartek (additional music) \r\nTrevor Horn \r\nGarry Hughes (additional music) \r\nTommy Lee James (song \"Didn\'t We Love\") \r\nAaron Kamin (song \"Wherever You Go\") \r\nJennifer Kimball (song \"Didn\'t We Love\") \r\nJamie Muhoberac (additional music) \r\nTamara Walker (song \"Didn\'t We Love\") \r\nDiane Warren (songs \"But I Do Love You\", \"Please Remember\", \"The Right Kind of Wrong\", \"Can\'t Fight the Moonlight\") \r\n \r\n4. Non-Original Music by:\r\nJames Atkin (song \"Unbelievable\") \r\nDan Baird (song \"Keep Your Hands To Yourself\") \r\nRob Base (song \"It Takes Two\") (as Robert Ginyard) \r\nBenito Benitez (song \"The Power\") \r\nMike Bradford (song \"Follow Me\") \r\nRob Brewer (song \"Cailin\") \r\nDeran Brownson (song \"Unbelievable\") \r\nToni C. (song \"The Power\") (as Antoinette \'Toni C.\' Colandero) \r\nStephen Clark (song \"Pour Some Sugar On Me\") \r\nPhil Collen (song \"Pour Some Sugar On Me\") \r\nLuigi Creatore (song \"Can\'t Help Falling In Love\") \r\nCharlie Daniels (song \"Devil Went Down To Georgia\") \r\nMark Decloedt (song \"Unbelievable\") \r\nIan Dench (song \"Unbelievable\") \r\nTaz Di Gregorio (song \"Devil Went Down To Georgia\") (as Taz Digregorio) \r\nMichael Duff (song \"Like Water\") \r\nJoe Elliott (song \"Pour Some Sugar On Me\") (as Joseph Elliott) \r\nAndrew Farriss (song \"Need You Tonight\") \r\nDino Fekaris (song \"I Will Survive\") \r\nSteve Fisk (song \"Battle Flag (Lo-Fidelity Allstars Remix)\") \r\nZachary Foley (song \"Unbelievable\") \r\nCharles Stan Frazier (song \"Fly (Without Supercat)\") (as Charles Frazier) \r\nJohn Garrett III (song \"The Power\") (as John \'Virgo\' Garrett III) \r\nAntony Genn (song \"Tony Adams\") \r\nWilliam Griffith (song \"Love Machine (Part 1)\") \r\nNigel Harrison (song \"One Way Or Another\") (as Nigel Douglas Harrison) \r\nDeborah Harry (song \"One Way Or Another\") \r\nCharlie Hayward (song \"Devil Went Down To Georgia\") \r\nReverend Horton Heat (song \"Beer 30\") (as James C. Heath) \r\nMichael Hutchence (song \"Need You Tonight\") \r\nBilly Idol (song \"Rebel Yell\") \r\nStephan Jenkins (song \"Never Let You Go\") \r\nMatthew Murphy Karges (song \"Fly (Without Supercat)\") (as Matthew Karges) \r\nKid Rock (song \"Cowboy\") (as Robert J. Ritchie) \r\nDanny Kortchmar (song \"All She Wants To Do Is Dance\") \r\nLenny Kravitz (song \"Fly Away\") \r\nRobert John Lange (song \"Pour Some Sugar On Me\") \r\nTara MacLean (song \"That\'s Me\") \r\nMark McGrath (song \"Fly (Without Supercat)\") \r\nMcG (song \"Fly (Without Supercat)\") (as Joseph \'McG\' Nichol) \r\nWarren Moore (song \"Love Machine (Part 1)\") \r\nSteve Morris (song \"Cailin\") \r\nChris Pelcer (song \"Boom Boom Boom\") \r\nHugo Peretti (song \"Can\'t Help Falling In Love\") \r\nFreddie Perren (song \"I Will Survive\") (as Frederick J. Perren) \r\nTrace Ritter (song \"Like Water\") \r\nScott Russo (song \"Cailin\") \r\nRichard Savage (song \"Pour Some Sugar On Me\") \r\nTony Scalzo (song \"Out Of My Head\") \r\nBrian Setzer (song \"Rock This Town\") \r\nRodney Sheppard (song \"Fly (Without Supercat)\") \r\nShawn Smith (song \"Battle Flag (Lo-Fidelity Allstars Remix)\") \r\nSteve Stevens (song \"Rebel Yell\") \r\nJoe Strummer (song \"Tony Adams\") \r\nJohn Travis (song \"Cowboy\") \r\nJames Trombly (song \"Cowboy\") \r\nUncle Kracker (songs \"Follow Me\", \"Cowboy\") (as Matt Shafer) \r\nRay Vega (song \"Boom Boom Boom\") \r\nRobert Vega (song \"Boom Boom Boom\") \r\nGeorge David Weiss (song \"Can\'t Help Falling In Love\") \r\nGary Wright (song \"Love Is Alive\") \r\nWade Youman (song \"Cailin\")',0,'16',2,'2004-09-19 08:49:59',96,1,'David McNally','','Trevor Horn','PAL - Anamorph Widescreen (2,35:1) [16:9]','Audio: German (5.1), English (5.1) - Subtitles: German, English, French, Spanish, Italian'),(75,2,'Den einen oder keinen [OT: Down to You]',2000,'',0,'16',2,'2004-09-19 08:50:37',0,1,'Kris Isacsson','','','',''),(76,2,'Eiskalte Engel [OT: Cruel Intentions]',1999,'',0,'2',2,'2004-09-19 08:50:52',0,1,'Roger Kumble','','','',''),(77,2,'Kate & Leopold [OT: Kate & Leopold]',2001,'',0,'16',2,'2004-09-19 08:51:11',0,1,'James Mangold','','','',''),(78,2,'Manhattan Love Story [OT: Maid in Manhattan]',2002,'',0,'16',2,'2004-09-19 08:51:24',0,1,'Wayne Wang','','','',''),(79,2,'Leben oder so ähnlich [OT: Life or Something Like It]',2002,'',0,'16',2,'2004-09-19 08:51:38',0,1,'Stephen Herek','','','',''),(80,2,'Was Frauen wollen (OT: What Women Want)',2000,'',0,'5',2,'2004-09-19 08:52:07',0,1,'Nancy Meyers','','','',''),(81,1,'Ali G Indahouse [OT: Ali G Indahouse]',2002,'1. Writing credits (in alphabetical order): \r\nSacha Baron Cohen \r\nDan Mazer \r\n\r\n2. Cast (in credits order): \r\nSacha Baron Cohen .... Ali G/Borat \r\nMichael Gambon .... Prime Minister \r\nCharles Dance .... David Carlton \r\nKellie Bright .... Me Julie \r\nMartin Freeman .... Ricky C \r\nRhona Mitra .... Kate Hedges \r\nBarbara New .... Nan \r\nEmilio Rivera .... Rico \r\nGina La Piana .... Hoochie \r\nDana Pauley .... Hoochie \r\nDominic Delesilva .... Young boy \r\nJacqueline Castro .... Mum (as Jackeline Castro) \r\nJesse Acosta .... Gangster \r\nMário Aguilar .... Gangster \r\nGary Baxley .... Gangster \r\nCarlos Ayala .... Gangster \r\nJohn Estrada .... Gangster \r\nDavid Follosco .... Gangster \r\nGerald Gonzales .... Gangster \r\nManuel Jiménez .... Gangster \r\nRobert Jimenez .... Gangster \r\nGeorge Lopez .... Gangster \r\nManny Perez .... Gangster \r\nMagdaleno Robles Jr. .... Gangster \r\nDanny Romo .... Gangster \r\nJacob Salas .... Gangster \r\nCarlos Sánchez .... Gangster \r\nEmilano Torres .... Gangster \r\nRobert Zepeda .... Gangster \r\nTony Way .... Dave \r\nNabil Elouhabi .... Jezzy F \r\nRichard Syms .... Caretaker \r\nRay Panthaki .... Hassan B \r\nDean Batchelor .... East Staines Massiv \r\nAdam Deacon .... East Staines Massiv \r\nRoberto Viana .... East Staines Massiv \r\nImran Akhtar .... Cub scout \r\nJamie Boubazari .... Cub scout \r\nCharles Hawkins .... Cub scout \r\nGeorge Keane .... Cub scout \r\nAlex Peters .... Cub scout \r\nBilly Stewart .... Cub scout \r\nJack Thompson .... Cub scout \r\nStephen Bent .... John Nike leisure centre manager \r\nAnna Keaveney .... Secretary \r\nEileen Essel .... Mrs. Hugh \r\nJanet Mitchell .... Tracey \r\nNaomi Campbell .... Herself \r\nJohn Scott Martin .... Mr. Johnson \r\nJonathan Aris .... Reporter \r\nStewart Wright .... Film cameraman \r\nPaul Clayton .... Alan Swain \r\nFrank Dunne .... Blind polisher \r\nDiana Van Proosdy .... Headteacher \r\nMichael Cowan .... Man in house \r\nCarolyn Pickles .... Headmistress \r\nAstley Skutcher .... Jonathan \r\nDavid Henry .... The Mayor of Staines \r\nMaggie Ellis .... Mayor\'s wife \r\nJoe Geary .... Floor manager \r\nGeoffrey Kirkness .... Presenter \r\nJohn Warnaby .... David Griffiths \r\nAndy Bell .... Anchorman \r\nRoger Brierley .... Town Hall Official \r\nIvor Mazer .... Thomas Alvarez \r\nElaine Mazer .... Mrs. Alvarez \r\nCraig Crosbie .... Leader of the Opposition \r\nJeffrey Wickham .... Speaker \r\nGraham McTavish .... Police Officer, Customs \r\nMaggie McCarthy .... Karen \r\nLloyd McGuire .... John \r\nEdward Highmore .... Cabinet M.P. \r\nMartin Ball .... Customs official \r\nSteffan Rhodri .... Welsh teacher \r\nStephen Boswell .... Queen\'s Footman \r\nJeanette Vane .... The Queen \r\nJohn Humphrys .... Himself \r\nJon Snow .... Himself \r\nDaphne Cheung .... President Wattana \r\nOlegar Fedoro .... Russian Delegate \r\nPeter Law .... Mongolian delegate \r\nColin Stinton .... US delegate \r\nRudolph Walker .... President Mwepu \r\nJohn Adewole .... President Oompeba \r\nJulian Sua .... Chinese delegate \r\nStefan Kalipha .... Iranian delegate \r\nBruce Jamieson .... Journalist \r\nMark Theodore .... Journalist \r\nMarianne Levy .... Journalist \r\nMartin Wimbush .... MP \r\nJasper Jacob .... MP \r\nRichard Madeley .... Himself \r\nJudy Finnigan .... Herself \r\nMatthew Green .... Englefield Green Massiv \r\nJames Allen .... Guard \r\nCarl McCrystal .... Guard \r\nJamie Glassman .... Dr. J. \r\nMatt Wilkinson .... Police officer \r\nAdrian Hylton .... Foreman \r\nAndrew Dunn .... Police officer \r\nIone Brown .... Butler \r\nDaniela Lavender .... Maid \r\nJudith Shekoni .... Jacuzzi girl (as Judi Shekoni) \r\nrest of cast listed alphabetically \r\nCapri Ashby .... Nina (Julie\'s Best Friend) \r\nJuan Luis Cano .... Ricky C (Spanish version) (voice) \r\nGuillermo Fesser .... Ali G/Borat (Spanish version) (voice) \r\nMatt Green .... Englefield Green Massiv \r\nIsabelle Pasco .... Suzy \r\nDenise Worme .... Bongo Drum Girl no. 3 (uncredited) \r\n\r\n3. Original Music by: \r\nAdam F. \r\nShaggy (song \"Me Julie\") \r\nKeith Sweat (song \"Freak Me\") ',0,'5',2,'2004-10-21 08:57:46',88,1,'Mark Mylod','Sacha Baron Cohen & Dan Mazer','Adam F.','PAL - Anamorph Widescreen (2,35:1)','Audio: German (5.1), English (5.1) - Subtitles: German, Arabic, Bulgarian, Czech, Danish, Dutch, Finnish, Greek, Hungarian, Norwegian, Swedish, Turkey, English'),(82,1,'Arizona Dream [OT: Arizona Dream]',1993,'1. Writing credits: \r\nDavid Atkins\r\nDavid Atkins (story) & \r\nEmir Kusturica (story)\r\n \r\n2. Cast (in credits order) verified as complete: \r\nJohnny Depp .... Axel Blackmar \r\nJerry Lewis .... Leo Sweetie \r\nFaye Dunaway .... Elaine Stalker \r\nLili Taylor .... Grace Stalker \r\nVincent Gallo .... Paul Leger \r\nPaulina Porizkova .... Millie \r\nMichael J. Pollard .... Paul \r\nCandyce Mason .... Blanche \r\nAlexia Rane .... Angie \r\nPolly Noonan .... Betty \r\nAnn Schulman .... Carla \r\nPatricia O\'Grady .... MC/Announcer \r\nJames R. Wilson .... Lawyer \r\nEric Polczwartek .... Man with Door \r\nKim Keo .... Mechanical Doll \r\nJames P. Marshall .... Boatman \r\nVincent Tocktuo .... Eskimo Man \r\nSantos Romero .... Mariachi Band Member \r\nDavid Rodriquez .... Mariachi Band Member \r\nJuan Urrea .... Mariachi Band Member \r\nJosé Luis Ávila .... Mariachi Band Member \r\nSergio Hlarmendaris .... Mariachi Band Member \r\nFrank Turley .... Mariachi Band Member \r\nManuel Rodríguez .... Mariachi Band Member \r\nCayetano Acosta .... Mariachi Band Member \r\nManuel Ruiz .... Mariachi Band Member \r\nNarcisco Domínguez .... Mariachi Band Member \r\nBenjamin S. Gonzales .... Mariachi Band Member \r\nSerafino Flores .... Mariachi Band Member \r\nMiguel Moreno .... Mariachi Band Member \r\nRaphael Salcido .... Mariachi Band Member \r\nChanaia Rodriguez .... Mariachi Band Member \r\nJackson Douglas .... The Priest \r\nTricia Leigh Fisher .... Lindy \r\nMichael S. John .... The Doctor \r\nrest of cast listed alphabetically \r\nSal Jenco .... Man at the Phone \r\nEmir Kusturica .... Man in the bar (uncredited) \r\n\r\n3. Original Music by: \r\nGoran Bregovic',0,'5',2,'2004-10-21 08:57:59',135,1,'Emir Kusturica','David Atkins & Emir Kusturica','Goran Bregovic','PAL - Anamorph Widescreen (1,85:1) [16:9]','Audio: German (Stereo DD), English (Stereo DD), Spanish (Surround DD) - Subtitles: German, English, Spanish, Portuguese, Dutch, Danish, Swedish, Norwegian, Finnish'),(83,1,'Blow [OT: Blow]',2001,'1. Writing credits (WGA): \r\nBruce Porter (book)\r\nDavid McKenna (screenplay) and \r\nNick Cassavetes (screenplay)\r\n \r\n2. Cast (in credits order) complete, awaiting verification: \r\nJohnny Depp .... George Jung \r\nPenélope Cruz .... Mirtha Jung \r\nFranka Potente .... Barbara Buckley \r\nRachel Griffiths .... Ermine Jung \r\nPaul Reubens .... Derek Foreal \r\nJordi Mollà .... Diego Delgado \r\nCliff Curtis .... Pablo Escobar \r\nMiguel Sandoval .... Augusto Oliveras \r\nEthan Suplee .... Tuna \r\nRay Liotta .... Fred Jung \r\nKevin Gage .... Leon Minghella \r\nMax Perlich .... Kevin Dulli \r\nJesse James .... Young George \r\nMiguel Pérez .... Alessandro \r\nDan Ferro .... Cesar Toban \r\nTony Amendola .... Sanchez \r\nBob Goldthwait .... Mr. T (as Bobcat Goldthwait) \r\nMichael Tucci .... Dr. Bay \r\nMonet Mazur .... Maria \r\nLola Glaudini .... Rada \r\nJennifer Gimenez .... Inez \r\nEmma Roberts .... Young Kristina Jung \r\nJaime King .... Kristina Jung (as James King) \r\nCharles Noland .... Jack Stevens \r\nPamela Abdy .... Beach Woman #3 \r\nJohn Harrington Bland .... FBI Waiter #1 \r\nJimmy Burke .... FBI Waiter #4 \r\nBrantley Bush .... FBI Waiter #3 \r\nKevin Chapman .... DEA Eastham (as Kevin H. Chapman) \r\nThe Dawk .... Guard (Visit Area #2) \r\nTed Demme .... Archie Zigmond (as Edward Demme) \r\nCrystal Erickson .... Stewardess #1 \r\nDaniel Escobar .... Emilio Ochoa \r\nTracy Falco .... Beach Woman #2 \r\nJean-Carlos Felix .... Prison Guard (Warden\'s Office) \r\nLazaro Galarraga .... Band Singer \r\nBrian Goodman .... Guard Gus \r\nVanessa Greyson .... Stewardess #3 \r\nElif Guertin .... Stewardess #2 \r\nJosh Herman .... Detective #1 \r\nFaith Hoover .... Stewardess #6 \r\nBrad Hunt .... GG \r\nPatrick Husted .... Bank Manager \r\nKristina Jung .... Clerk (scenes deleted) \r\nRalph Kampshoff .... Guard (Visit Area #1) \r\nAjgie Kirkland .... James Trout \r\nSkip O\'Brien .... Customs Agent \r\nRichard LaGravenese .... Detective #2 \r\nRoberto Lopez .... Guard (Danbury) \r\nLydell M. Cheshier .... Inmate #3 \r\nDorothy Lyman .... Judge (Chicago) \r\nJodie Mann .... Nurse (Cape Cod) \r\nCharles Martiniz .... Bank Employee \r\nGenevieve Maylam .... Beach Woman #1 \r\nGonzalo Menendez .... Ramon Ochoa \r\nMauricio Mendoza .... Benny \r\nCarlos Mendoza .... Tony \r\nAlan James Morgan .... Young Tuna \r\nRandy Mulkey .... Employee #1 \r\nKathleen Mullan .... Beach Woman #5 \r\nMeriah Nelson .... Stewardess #4 \r\nTony Perez .... Bank President \r\nJack Polick .... Ben \r\nMichael Ralph .... Inmate #2 (as Mike Ralph) \r\nRaoul N. Rizik .... Rafael Ojeda \r\nMatthew Robinson .... Inmate #1 \r\nElizabeth Rodriguez .... Martha Oliveras \r\nBert Rosario .... Bank President (Panama) \r\nLeslie Schirrmacher .... Stewardess #5 \r\nDale Snowberger .... FBI Waiter #2 \r\nSophie Tsirnel .... Beach Woman #4 \r\nJulia Vera .... Clara Blanca \r\nSantiago Verdu .... Juan Carlos \r\nPamela Walker .... FBI Waiter #5 \r\nrest of cast listed alphabetically \r\nRicardo Azulay .... Restaurant/Bar Patron (uncredited) \r\nAnastasia Blue .... One of Derek Foreal\'s party girls (uncredited) \r\nNick Cassavetes .... Man in Derek\'s Salon (uncredited) \r\nDana Emberson .... Beach Cyclist (uncredited) \r\nJanine Foster .... Flight attendant (uncredited) \r\nMiguel Ángel Fuentes .... Body Guard for Pablo Escobar (uncredited) \r\nJacque Lawson .... Biker (uncredited) \r\nMelissa Renée Martin .... One of Derek Foreal\'s party girls (uncredited) \r\nBill Willens .... Biker (uncredited) \r\nRayder Woods .... FBI Undercover Agent (uncredited) \r\n\r\n3. Original Music by: \r\nMoney Mark \r\nGraeme Revell \r\nRonnie Van Zant (song \"That Smell\") \r\nNikka Costa (song \"Push & Pull\") (uncredited) \r\nJustin Stanley (song \"Push & Pull\") (uncredited) \r\n \r\n4. Non-Original Music by: \r\nSteve Cropper (song \"Be My Lady\") (as Stephen Cropper) \r\nDonald Dunn (song \"Be My Lady\") \r\nBob Dylan (song \"All The Tired Horses\") \r\nAl Jackson Jr. (song \"Be My Lady\") \r\nMick Jagger (song \"Can\'t You Hear Me Knocking\") \r\nBooker T. Jones (song \"Be My Lady\") \r\nLink Wray (song \"Rumble\")',0,'2',2,'2004-10-21 08:58:06',118,1,'Ted Demme','Bruce Porter (book) / David McKenna & Nick Cassavetes (screenplay)','Money Mark & Graeme Revell','PAL - Anamorph Widescreen (2,35:1)','Audio: German (5.1), English (5.1) - Subtitles: German, English'),(84,1,'Bockerer, Der (Teil 1 und Teil 2)',1981,'',0,'-1',2,'2004-10-21 08:59:04',0,1,'Franz Antel & Rainer C. Ecke / Franz Antel','','','',''),(85,1,'Bowling For Columbine [OT: Bowling For Columbine]',2002,'1. Writing credits (WGA): \r\nMichael Moore (written by)\r\n \r\n2. Cast (in alphabetical order): \r\nJacobo Arbenz .... Himself, President of Guatemala (archive footage) (as President Arbenz) \r\nMike Bradley .... Himself, Mayor of Sarnia, Ontario, Canada \r\nArthur A. Busch .... Himself, County Prosecutor, Flint, Michigan (as Arthur Busch) \r\nGeorge Bush .... Himself (archive footage) (as Bush) \r\nGeorge W. Bush .... Himself, President of the United States (archive footage) \r\nMichael Caldwell .... Himself, Police Detective \r\nRichard Castaldo .... Himself, Columbine Victim \r\nDick Clark .... Himself, Restaurant Owner \r\nSteve Davis .... Himself, Deputy Sheriff (archive footage) \r\nByron Dorgan .... Himself (archive footage) \r\nJoe Farmer .... Himself, Superintendent of Schools (archive footage) \r\nDenny Fennell .... Himself, Home Security Consultant \r\nBarry Glassner .... Himself, Author of \"The Culture of Fear\" (as Prof. Barry Glassner) \r\nJohn Harris .... Himself (voice) \r\nCharlton Heston .... Himself, Actor/NRA President \r\nJeremy Hicks .... Himself, Suspended Student for Wearing Kilts (archive footage) \r\nFritz Hollings .... Himself (archive footage) (as Senator Fritz Hollings) \r\nJimmie Hughes .... Herself, Principal of Buell Elementary School \r\nDick Hurlin .... Himself, Former Producer of \"Cops\" \r\nAmanda Lamante .... Herself, Columbine Student \r\nMary Lorenz .... Herself, K-Mart Official \r\nMarilyn Manson .... Himself, Entertainer \r\nTom Mauser .... Himself, Father of Victim \r\nEvan McCollum .... Himself, Lockheed Martin Public Relations \r\nTimothy McVeigh .... Himself, Oklahoma City Bomber (archive footage) \r\nCarey McWilliams .... Himself, Blind Gun Owner (archive footage) \r\nGerald Miller .... Himself, Welfare-to-Work Creator (archive footage) \r\nMichael Moore .... Himself/Narrator \r\nMohammed Mossadegh .... Himself, Prime Minister of Iran (archive footage) (as Prime Minister Mossadeq) \r\nDinh Diem Ngo .... Himself, President of South Vietnam (archive footage) (as President Diem) \r\nJames Nichols .... Himself, Brother of Terry Nichols \r\nTerry Nichols .... Himself, Oklahoma City Bombing Accomplice (archive footage) \r\nManuel Noriega .... Himself, President of Panama (archive footage) \r\nTamarla Owens .... Herself, Mother of Shot Boy (archive footage) \r\nShah Mohammed Reza Pahlavi .... Himself, Shah of Iran (archive footage) \r\nRobert J. Pickell .... Himself, Sheriff of Flint, Michigan (as Sheriff Robert Pickell) \r\nAugusto Pinochet .... Himself, Chilean Dictator (archive footage) \r\nNicole Schlief .... Herself \r\nSusan Smith .... Herself, Child Murderess (archive footage) \r\nMatt Stone .... Himself, Former Columbine Student \r\nMark Taylor .... Himself, Columbine Victim \r\nSalvador Allende .... Himself, President of Salvador (archive footage) (uncredited) \r\nDenise Ames .... Sexy Girl with Gun (uncredited) \r\nJohn Ashcroft .... Himself, Attorney General (archive footage) (uncredited) \r\nDick Cheney .... Himself, Vice President of the United States (archive footage) (uncredited) \r\nBill Clinton .... Himself, President of the United States, 1992-2000 (archive footage) (uncredited) \r\nSeth Collins .... Himself (uncredited) \r\nJeff Doucett .... Himself, Man Shot at Airport (archive footage) (uncredited) \r\nR. Budd Dwyer .... Himself (archive footage) (uncredited) \r\nLeon Errol .... Actor in Movie Clip (archive footage) (uncredited) \r\nEric Harris .... Himself, Columbine Murderer (archive footage) (uncredited) \r\nAdolf Hitler .... Himself (archive footage) (uncredited) \r\nBrandon T. Jackson .... Himself (uncredited) \r\nDaniel V. Jones .... Himself (archive footage) (uncredited) \r\nJohn Kerry .... Himself (archive footage) (uncredited) \r\nDylan Klebold .... Himself, Columbine Murderer (archive footage) (uncredited) \r\nJoseph Lieberman .... Himself (archive footage) (uncredited) \r\nDennis Morgan .... Actor in Movie Clip (archive footage) (uncredited) \r\nHarold Moss .... Characters in \'A Brief History of the United States of America\' (voice) (uncredited) \r\nOliver North .... Himself (archive footage) (uncredited) \r\nTrey Parker .... Himself/Stan Marsh (voice) (uncredited) (archive footage) \r\nGary Plauche .... Himself, Gunman at Airport (archive footage) (uncredited) \r\nPrince Charles .... Himself (archive footage) (uncredited) \r\nPat Robertson .... Himself (archive footage) (uncredited) \r\nChris Rock .... Himself (archive footage) (uncredited) \r\nDonald Rumsfeld .... Himself (archive footage) (uncredited) \r\nJessica Savitch .... Herself (archive footage) (uncredited) \r\n \r\n3. Original Music by: \r\nJeff Gibbs \r\n\r\n4. Non-Original Music by: \r\nCharles Albertine (song \"Bandstand Boogie\") \r\nIrving Berlin (song \"I Want To Go Back To Michigan\") \r\nBill Berry (song \"How the West Was Won and Where It Got Us\") \r\nPeter Buck (song \"How the West Was Won and Where It Got Us\") \r\nLance Doss (song \"Corporation Man\") \r\nLarry Elgart (song \"Bandstand Boogie\") \r\nLes Elgart (song \"Bandstand Boogie\") \r\nBob Golden (song \"Corporation Man\") \r\nDexter Holland (song \"Americana\") (as Bryan Kieth Holland) \r\nBob Horn (song \"Bandstand Boogie\") \r\nJohn 5 (song \"Fight Song\") (as John Lowry) \r\nJohn 5 (song \"The Nobodies\") (as John Lowery) \r\nVictor Krummenacher (song \"Take the Skinheads Bowling\") \r\nJohn Lennon (song \"Happiness Is a Warm Gun\") \r\nDavid Lowery (song \"Take the Skinheads Bowling\") \r\nMarilyn Manson (songs \"Fight Song\" and \"The Nobodies\") (as Brian Warner) \r\nPaul McCartney (song \"Happiness Is a Warm Gun\") \r\nDonald McCloskey (song \"Corporation Man\") \r\nMike Mills (song \"How the West Was Won and Where It Got Us\") \r\nChristopher Molla (song \"Take the Skinheads Bowling\") \r\nTrey Parker (song \"Mountain Town\" from \"South Park\") \r\nFred Rogers (song \"Won\'t You Be My Neighbour\") \r\nJonathan Segel (song \"Take the Skinheads Bowling\") \r\nMarc Shaiman (song \"Mountain Town\" from \"South Park\") \r\nMichael Stipe (song \"How the West Was Won and Where It Got Us\") \r\nBob Thiele (song \"What a Wonderful World\") (as Robert Thiele) \r\nGeorge David Weiss (song \"What a Wonderful World\") (as George Weiss) \r\nWilliam Steffe (song \"Battle Hymn of the Republic\") (uncredited) \r\nLudwig van Beethoven (from \"Symphony No.9 In D Minor {Choral}, Opus 125\") (uncredited)',0,'6',2,'2004-10-21 08:59:19',114,1,'Michael Moore','Michael Moore','Jeff Gibbs','PAL - Anamorph Widescreen (1,78:1) [16:9]','Audio: German (5.1), English (5.1) - Subtitles: German'),(86,1,'Goodbye Lenin!',2003,'',0,'-1',2,'2004-10-21 08:59:34',0,1,'Wolfgang Becker','','','',''),(87,1,'Im inneren Kreis [OT: People I Know]',2002,'',0,'-1',2,'2004-10-21 08:59:52',0,1,'Daniel Algrant','','','',''),(88,1,'Jackie Brown [OT: Jackie Brown]',1997,'',0,'-1',2,'2004-10-21 09:02:50',0,1,'Quentin Tarantino','','','',''),(89,1,'Leolo [OT: Léolo]',1992,'',0,'-1',2,'2004-10-21 09:02:59',0,1,'Jean-Claude Lauzon','','','',''),(90,1,'Long Walk Home [OT: Rabbit-Proof Fence]',2002,'',0,'-1',2,'2004-10-21 09:03:48',0,1,'Phillip Noyce','','','',''),(91,1,'Matrix [OT: The Matrix]',1999,'',0,'1',2,'2004-10-21 09:03:57',0,1,'Andy & Larry Wachowski','','','',''),(92,1,'Nackt',2002,'',0,'-1',2,'2004-10-21 09:04:08',0,1,'Doris Dörrie','','','',''),(93,1,'Nacktschnecken',2004,'',0,'-1',2,'2004-10-21 09:04:18',0,1,'Michael Glawogger','','','',''),(94,1,'Underground [OT: Underground - Bila jednom jedna zemlja]',1995,'',0,'-1',2,'2004-10-21 09:04:31',0,1,'Emir Kusturica','','','',''),(95,1,'X-Men [OT: X-Men]',2000,'',0,'-1',2,'2004-10-21 09:04:41',0,1,'Bryan Singer','','','',''),(206,1,'Geister (Teil I & Teil II) [OT: Riget & Riget II]',1997,'',0,'3',2,'2005-12-27 11:41:23',580,1,'Lars von Trier','','','',''),(98,1,'Boys Don\'t Cry [OT: Boys Don\'t Cry]',1999,'1. Writing credits: \r\nKimberly Peirce \r\nAndy Bienen \r\n \r\n2. Cast (in credits order) verified as complete: \r\nHilary Swank .... Teena Brandon/Brandon Teena \r\nChloë Sevigny .... Lana Tisdel \r\nPeter Sarsgaard .... John Lotter \r\nBrendan Sexton III .... Tom Nissen \r\nAlicia Goranson .... Candace \r\nAlison Folland .... Kate \r\nJeanetta Arnette .... Lana\'s Mom (as Jeannetta Arnette) \r\nRob Campbell .... Brian \r\nMatt McGrath .... Lonny \r\nCheyenne Rushing .... Nicole \r\nRobert Prentiss .... Trucker \r\nJosh Ridgway .... Kwik Stop Cashier \r\nCraig Erickson .... Trucker in Kwik Stop \r\nStephanie Sechrist .... April Lotter, John\'s Daughter \r\nJerry Haynes .... Judge \r\nLou Perry .... Sheriff (as Lou Perryman) \r\nLisa Renee Wilson .... Pam (as Lisa Wilson) \r\nJackson Kane .... Sam Phillips \r\nJoseph Gibson .... Tom \r\nMichael Tripp .... Nerdy Teen \r\nShana McClendon .... Girl in Car \r\nLibby Villari .... Nurse \r\nPaige Carl Griggs .... Dave, Deputy \r\nGail Cronauer .... Clerk \r\nrest of cast listed alphabetically: \r\nChad Briley .... Extra (uncredited) \r\nRyan Thomas Brockington .... Kiss (uncredited) \r\nChristophe Dahlkvist .... Truck Driver (uncredited) \r\nMichelle Fairbanks .... Girl in Car (uncredited) \r\nGabriel Horn .... Lester, Restraining Order Guy (uncredited) \r\nNatalie Zea .... (uncredited) \r\n \r\n3. Original Music by: \r\nNathan Larson',0,'2',2,'2004-12-08 23:15:50',114,1,'Kimberly Peirce','Kimberly Peirce & Andy Bienen','Nathan Larson','PAL - Anamorph Widescreen (1,85:1) [16:9]','Audio: German (5.1), English (5.1) - Subtitles: English, Turkey, German (aurally handicapped)'),(99,1,'Bockerer, Der (Teil 3 und Teil 4)',2000,'',0,'-1',2,'2004-12-20 19:38:37',0,1,'Franz Antel / Franz Antel','','','',''),(100,1,'Brokedown Palace [OT: Brokedown Palace]',1999,'1. Writing credits (WGA): \r\nAdam Fields (story) \r\nDavid Arata (story)\r\nDavid Arata (screenplay)\r\n \r\n2. Cast (in credits order) verified as complete: \r\nClaire Danes .... Alice Marano \r\nKate Beckinsale .... Darlene Davis \r\nBill Pullman .... \'Yankee\' Hank Green \r\nJacqueline Kim .... Yon Greene \r\nLou Diamond Phillips .... Roy Knox \r\nDaniel Lapaine .... Nick Parks \r\nTom Amandes .... Doug Davis \r\nAimee Graham .... Beth Ann Gardener \r\nJohn Doe .... Bill Marano \r\nKay Tong Lim .... Chief Det. Jagkrit \r\nBeulah Quo .... Guard Velie \r\nHenry O .... Emissary to Crown \r\nBahni Turpin .... Jamaican Prisoner \r\nAmanda De Cadenet .... English Prisoner \r\nIntira Jaroenpura .... Shub, Prisoner \r\nLilia Cuntapay .... Old Prisoner \r\nSomsuda Chotikasupa .... Glasses Guard \r\nMaya Elise Goodwin .... Mary \r\nChad Todhunter .... Ferg \r\nLori Lethin .... Lori Davis \r\nHayley Palmer .... Heidi Davis \r\nRhency Padilla .... Pool Boy \r\nVictor Neri .... Bellhop \r\nErmie Concepcion .... Paku (as Ermie M. Concepcion) \r\nNopachai Israngkur na Ayudhya .... Cabbie #1 \r\nAyutthaya A. Payakkapong .... Cabbie #2 \r\nSeng Kawee .... Shouting Soldier (as Kawee Sirikhanaerut) \r\nSahajak Boonthanakit .... Sgt. Choy \r\nVal Victa .... Lt. Tung (as Mario Valentino Victa) \r\nJoonee Gamboa .... Attorney Montree \r\nPhikun M. Sabino .... Guard Sorhirun \r\nToun Tolentino .... Old Dorm Guard \r\nTawewan Promgontha .... Young Dorm Guard \r\nSawan Edo .... Guard Sawalee \r\nSudarat L. Gaoat .... Guard Mangman \r\nTawatchai Teeranusoon .... Thai Judge #1 \r\nM. Tom Visvachat .... Thai Judge #2 \r\nTony Carney .... Doug\'s Translator \r\nPichada de Jesus .... Darlene\'s Translator \r\nSutagorn Jaiman .... Prosecutor \r\nPathompong Supalert .... Defense Attorney \r\nAchavasak Phitak .... Officer Deesom \r\nSongkran Somboon .... Officer Changjarung \r\nHarry Northup .... Leon Smith (as Harry E. Northup) \r\nJohnny Ray McGhee .... DEA Agent \r\nPhanom Promguntha .... Customs Supervisor \r\nJake de Asis .... Royal Thai Army Guard \r\nOlympio D. Franco .... Sick Prisoner \r\nRonnie Lazaro .... Security \r\nParinya Pattamadilok .... Shop Owner \r\nYuthana Kaewdaeng .... Thai Vendor \r\nrest of cast listed alphabetically: \r\nPaul Walker .... Jason (uncredited) \r\n \r\n3. Original Music by: \r\nAbby Dobson (song \"Even when I\'m sleeping\") \r\nP.J. Harvey (song \"The Wind\") \r\nHummie Mann (additional music: fight scene) \r\nDavid Newman \r\n \r\n4. Non-Original Music by: \r\nJoe Strummer (song \"Rock the Casbah\")',0,'2',2,'2004-12-20 19:39:17',96,1,'Jonathan Kaplan','Adam Fields & David Arata (story) / David Arata (screenplay)','David Newman','PAL - Anamorph Widescreen (2,35:1) [16:9]','Audio: German (5.1), English (5.1) - Subtitles: German, English, German (aurally handicapped)'),(101,1,'Es war einmal in Amerika [OT: Once Upon a Time in America]',1984,'',0,'2',2,'2004-12-20 19:39:37',0,1,'Sergio Leone','','','',''),(102,1,'Mifune [OT: Mifunes sidste sang]',1999,'',0,'-1',2,'2004-12-20 19:39:45',0,1,'Søren Kragh-Jacobsen','','','',''),(103,1,'Müllers Büro',1986,'',0,'-1',2,'2004-12-20 19:39:55',0,1,'Niki List & Hans Selikovsky','','','',''),(104,1,'Requiem for a Dream [OT: Requiem for a Dream]',2000,'',0,'-1',2,'2004-12-20 19:40:19',0,1,'Darren Aronofsky','','','',''),(105,1,'Naked Lunch [OT: Naked Lunch]',1991,'',0,'-1',2,'2004-12-20 19:40:29',0,1,'David Cronenberg','','','',''),(106,1,'X-Men 2 [OT: X2]',2003,'',0,'-1',2,'2004-12-20 19:40:39',0,1,'Bryan Singer','','','',''),(107,1,'Dead Man [OT: Dead Man]',1995,'',0,'-1',2,'2004-12-20 19:40:52',0,1,'Jim Jarmusch','','','',''),(109,1,'Ring [OT: The Ring]',2002,'',0,'-1',2,'2004-12-20 19:41:11',0,1,'Gore Verbinski','','','',''),(110,1,'Almost Famous - Fast berühmt [OT: Almost Famous]',2000,'1. Writing credits (WGA): \r\nCameron Crowe (written by)\r\n \r\n2. Cast (in credits order) verified as complete: \r\nBilly Crudup .... Russell Hammond \r\nFrances McDormand .... Elaine Miller \r\nKate Hudson .... Penny Lane \r\nJason Lee .... Jeff Bebe \r\nPatrick Fugit .... William Miller \r\nZooey Deschanel .... Anita Miller \r\nMichael Angarano .... Young William Miller \r\nNoah Taylor .... Dick Roswell \r\nJohn Fedevich .... Ed Vallencourt \r\nMark Kozelek .... Larry Fellows \r\nFairuza Balk .... Saphire Loveson \r\nAnna Paquin .... Polexia Aphrodisia \r\nOlivia Rosewood .... Beth From Denver \r\nJimmy Fallon .... Dennis Hope \r\nPhilip Seymour Hoffman .... Lester Bangs \r\nLiz Stauber .... Leslie \r\nBijou Phillips .... Estrella Starr \r\nAlice Marie Crowe .... Mrs. Deegan \r\nJ.J. Cohen .... Roadie Scully \r\nGary Kohn .... Roadie Gregg (as Gary Douglas Kohn) \r\nRay Porter .... Roadie Mick \r\nMark Pellington .... Freddy \r\nEion Bailey .... Jann Wenner \r\nTerry Chen .... Ben Fong-Torres \r\nRainn Wilson .... David Felton \r\nErin Foley .... Alison The Fact Checker \r\nJesse Caron .... Darryl \r\nCharles Walker .... Principal \r\nJay Baruchel .... Vic Munoz \r\nPauley Perrette .... Alice Wisdom \r\nPeter Frampton .... Reg \r\nZack Ward .... The Legendary Red Dog \r\nMitch Hedberg .... Eagles Road Manager \r\nDevin Corey .... The Who Road Manager \r\nPete Droge .... Hyatt Singer \r\nElaine Summers .... Hyatt Singer \r\nEric Stonestreet .... Sheldon the Desk Clerk \r\nMarc Maron .... Angry Promoter \r\nShane Willard .... Ticket Scalper \r\nChris McElprang .... Aaron Amedori \r\nJohn Patrick Amedori .... Himself \r\nKate Peckham .... Quiet Girl \r\nJulia Schuler .... Waving Girl \r\nBrian Vaughan .... Real Topeka Kid \r\nAnthony Martelli .... Poolside Provocateur \r\nZach Clairville .... Acid Kid \r\nIan Ridgeway .... Topeka Partier \r\nIsaac Curtiss .... Topeka Partier \r\nChris Lennon Davis .... Topeka Partier \r\nAimee Joy .... Topeka Partier \r\nHeather Baldwin .... Topeka Partier \r\nScott N. Stevens .... Co-Pilot \r\nKevin Sussman .... Lenny \r\nReathel Bean .... Warwick Hotel Clerk \r\nTom Riis Farrell .... Plaza Doctor \r\nLaura Bastianelli .... Nurse \r\nSamuel Aaron Roberson .... High School Band Member \r\nBrian Andreasen .... High School Band Member \r\nJared Hren .... High School Band Member \r\nMary Dragicevich .... High School Band Member \r\nAura Barr .... High School Band Member \r\nDaniel Wilson .... Journalism Teacher \r\nWilliam Barillaro .... Bus Driver \r\nHolly Maples .... Flight Attendant \r\nMatt Griesser .... PSA Co-Pilot \r\nSusan Yeagley .... Have a Nice Day Stewardess \r\nNicole Spector .... Hippie Girl at Airport \r\nPatrick Irmen .... Wanna Get High Guy \r\nNick Swardson .... Insane Bowie Fan \r\nCindy Weber .... Shocked Elevator Family Member \r\nKris Weber .... Shocked Elevator Family Member \r\nKaitlyn Weber .... Shocked Elevator Family Member \r\nKimberly Weber .... Shocked Elevator Family Member \r\nKristin Weber .... Shocked Elevator Family Member \r\nSamer Sourakli .... Mustache Boy \r\nJann Wenner .... Legend in Cab \r\nMichelle Moretti .... Swingo\'s Desk Clerk \r\nAna Maria Quintana .... Arizona Housekeeper \r\nLisa Buchignani .... Arizona Housekeeper \r\nrest of cast listed alphabetically: \r\nWayne Doba .... Leonard Barr (untitled director\'s cut only) \r\nBodhi Elfman .... Alice\'s Manager (untitled director\'s cut only) \r\nWilliam Mapother .... Bartender (scenes deleted) \r\nShannon Saint Ryan .... Musician (director\'s cut only) \r\nAndrew Briedis .... Boy with Bike (uncredited) \r\nMark Cirillo .... Bowie Groupie (director\'s cut only) (uncredited) \r\nEmmy Collins .... Hotel Loadie (uncredited) \r\nKyle Gass .... Quince Allen (only in director\'s cut) (uncredited) \r\nMelissa Gastgaber .... Groupie (uncredited) \r\nEric Rosenberg .... David Bowie\'s Manager (uncredited) \r\nPatrick Williams .... Roadie (uncredited) \r\n \r\n3. Original Music by: \r\nCameron Crowe (songs) \r\nPeter Frampton (songs) \r\nTony Iommi (songs \"Paranoid\" and \"Sweet Leaf\") (as Frank Iommi) \r\nMike McCready (songs) \r\nRonnie Van Zant (song \"Simple Man\") \r\nAnn Wilson (songs) \r\nNancy Wilson (songs) \r\n \r\n4. Non-Original Music by: \r\nIan Anderson (song \"Teacher\") \r\nJon Anderson (songs \"Roundabout and \"Your Move\") \r\nRoss Bagdasarian (song \"The Chipmunk Song\") (as Ross Bagdasarian Sr.) \r\nWalter Becker (song \"Reeling in the Years\") \r\nRitchie Blackmore (song \"Burn\") \r\nEric Carmen (song \"Go All the Way\") \r\nDavid Coverdale (song \"Burn\") \r\nBurton Cummings (song \"Albert Flasher\") \r\nDonald Fagen (song \"Reeling in the Years\") \r\nLowell George (song \"Easy to Slip\") \r\nBuddy Holly (song \"Peggy Sue\") \r\nGlenn Hughes (song \"Burn\") \r\nElmore James (song \"One Way Out\") \r\nElton John (songs \"Tiny Dancer\" and \"Mona Lisas and Mad Hatters\") \r\nJohn Paul Jones (song \"Misty Mountain Hop\") \r\nJohn Keene (song \"Something in the Air\") (as John Keen) \r\nSimon Kirke (song \"Wishing Well\") \r\nPaul Kossoff (song \"Wishing Well\") \r\nJon Lord (song \"Burn\") \r\nJoni Mitchell (song \"River\") \r\nOzzy Osbourne (songs \"Paranoid\" and \"Sweet Leaf\") (as John Osbourne) \r\nJimmy Page (songs \"Bron-Y-Aur\", \"Misty Mountain Hop\", \"The Rain Song\", \"Tangerine\", and \"That\'s the Way\") \r\nIan Paice (song \"Burn\") \r\nNorman Petty (song \"Peggy Sue\") \r\nRobert Plant (songs \"Misty Mountain Hop\", \"The Rain Song\" and \"That\'s the Way\") \r\nIggy Pop (song \"Search and Destroy\") \r\nLou Reed (song \"I\'m Waiting for the Man\") \r\nPaul Rodgers (song \"Wishing Well\") \r\nGary Rossington (song \"Simple Man\") \r\nTodd Rundgren (song \"It Wouldn\'t Have Made Any Difference\") \r\nSky Saxon (song \"Mr. Farmer\") \r\nShel Silverstein (song \"The Cover of the Rolling Stone\") \r\nPaul Simon (song \"America\") \r\nCat Stevens (song \"The Wind\") \r\nRod Stewart (song \"Every Picture Tells a Story\") \r\nPete Townshend (song \"Sparks\") \r\nBill Ward (songs \"Paranoid\" and \"Sweet Leaf\") (as William Ward) \r\nJames Williamson (song \"Search and Destroy\") \r\nSonny Boy Williamson (song \"One Way Out\") \r\nCarl Wilson (song \"Feel Flows\") \r\nStevie Wonder (song \"My chérie amour\") \r\nNeil Young (songs \"Everybody Knows This Is Nowhere\" and \"Cortez The Killer\")',0,'2',2,'2004-12-20 19:41:28',118,1,'Cameron Crowe','Cameron Crowe','Cameron Crowe, Peter Frampton, Mike McCready','PAL - Anamorph Widescreen (1,85:1) [16:9]','Audio: German (DTS 5.1), English (5.1) - Subtitles: German, English, Turkey, Dutch'),(111,1,'American Psycho 2 [OT: American Psycho: All American Girl]',2002,'1. Writing credits: \r\nAlex Sanger \r\nKaren Craig \r\n \r\n2. Cast (in credits order) complete, awaiting verification: \r\nMila Kunis .... Rachael Newman \r\nWilliam Shatner .... Prof. Robert \'Bobby\' Starkman \r\nGeraint Wyn Davies .... Eric Daniels \r\nRobin Dunne .... Brian Leads \r\nLindy Booth .... Cassandra Blaire \r\nCharles Officer .... Keith Lawson \r\nJenna Perry .... Young Rachael \r\nMichael Kremko .... Patrick Bateman \r\nKate Kelton .... Clara \r\nQuancetia Hamilton .... Neighbour \r\nJohn Healy .... Gill \r\nAndrew Scorer .... Janitor \r\nKim Poirier .... Barbara Brown \r\nKim Schraner .... Elizabeth McGuire \r\nShoshana Sperling .... Gertrude Fleck \r\nThomas Dozol .... Waiter \r\nLynne Deragon .... Rachael\'s Mom \r\nPhilip Williams .... Rachael\'s Dad \r\nKay Hawtrey .... Daniels\' Mom \r\nNeil Crone .... Officer Harvey \r\nBoyd Banks .... Officer Jimmy \r\nGreer Kent .... Mary, Daniels\' Secretary \r\nSusan Laney Dalton .... The Real Rachael Newman \r\nBilly MacLellan .... Cadet #1 \r\nRowan Tichenor .... Cadet #2 \r\nRobin Bublick .... Maitre D\' \r\n \r\n3. Original Music by: \r\nNorman Orenstein',0,'22',2,'2004-12-20 19:41:39',85,1,'Morgan J. Freeman','Alex Sanger & Karen Craig','Norman Orenstein','PAL- Anamorph Widescreen (1,85:1) [16:9]','Audio: German (DTS/DD 5.1, DD2.0), English (DTS/DD 5.1, DD 2.0)'),(112,1,'Blair Witch 2 [OT: Book of Shadows: Blair Witch 2]',2000,'1. Writing credits (WGA): \r\nDaniel Myrick (characters) and \r\nEduardo Sánchez (characters)\r\nDick Beebe (written by) and \r\nJoe Berlinger (written by)\r\n \r\n2. Cast (in credits order): \r\nKim Director .... Kim Diamond \r\nJeffrey Donovan .... Jeffrey Patterson \r\nErica Leerhsen .... Erica Geerson \r\nTristine Skyler .... Tristen Ryler (as Tristen Skyler) \r\nStephen Barker Turner .... Stephen Ryan Parker \r\nKurt Loder .... Himself \r\nChuck Scarborough .... Himself \r\nBruce Reed .... Burkitsville Resident #1 \r\nLynda Millard .... Burkitsville Resident #2 \r\nDeb Burgoyne .... Burkitsville Resident #3 \r\nAndrea Cox .... Burkitsville Resident #4 \r\nJoe Berlinger .... Burkitsville Tourist #1 \r\nSara Phillips .... Burkitsville Tourist #2 \r\nLanny Flaherty .... Sheriff Cravens \r\nPete Burris .... MBI Man #1 \r\nBriton Green .... Stoner #1 \r\nErik Jensen .... Stoner #2 \r\nPeggy K. Chang .... Foreigner #1 \r\nTony Tsang .... Foreigner #2 \r\nAnja Baron .... Foreigner #3 \r\nKevin Murray .... Doctor \r\nKeira Naughton .... Nurse \r\nLauren Hulsey .... Eillen Treacle \r\nEd Sala .... MBI Man #2 \r\nTyler Zeisloft .... Teenager #1 \r\nRichard Kirkwood .... Teenager #2 \r\nJustin Fair .... Teenager #3 \r\nRaynor Scheine .... Rustin Parr (as Raynor Scheine) \r\nBrilane Bowman .... Ham Lady \r\nKennen Sisco .... Peggy \r\nRobert M. Kelly .... MBI Man #3 \r\nDina Napoli .... Reporter, WBAL \r\nLandra Booker .... Reporter, Fox 45 \r\nJacqui Allen .... Reporter \r\nSloane Brown .... Reporter, WJZ 13 \r\nrest of cast listed alphabetically: \r\nHeidi Burger .... Print Reporter \r\nRyan Slattery \r\nHeather Donahue .... Herself (archive footage) (uncredited) \r\nRoger Ebert .... Himself (uncredited) \r\nCathy Haase .... First Nurse (uncredited) \r\nJoshua Leonard .... Himself (archive footage) (uncredited) \r\nJulie Mabry .... Hiker in Woods (uncredited) \r\nMichael C. Williams .... Himself (archive footage) (uncredited) \r\n \r\n3. Original Music by: \r\nCarter Burwell \r\nJoshua Homme (song \"Feel Good Hit Of The Summer\") (as Queens of the Stone Age) \r\nTony Iommi (song) \r\nMarilyn Manson (songs) \r\nJason Miller (song \"The Reckoning\") \r\nP.O.D. (song \"Lie Down\") \r\nSonny Sandoval (song \"Lie Down\") \r\nRob Zombie (song \"Dragula\") \r\n \r\n4. Non-Original Music by: \r\nMarilyn Manson (song \"Disposable Teens\")',0,'22',2,'2004-12-20 19:41:54',86,1,'Joe Berlinger','Daniel Myrick & Eduardo Sánchez (characters) / Dick Beebe & Joe Berlinger','Carter Burwell','PAL -Anamorph Widescreen (1,78:1) [16:9]','Audio: German (DTS/DD 5.1, DD 2.0), English (DD 5.1)'),(113,1,'Blood Simple (Director\'s Cut) [OT: Blood Simple]',1984,'1. Writing credits: \r\nJoel Coen (written by) \r\nEthan Coen (written by)\r\n \r\n2. Cast (in credits order) verified as complete: \r\nJohn Getz .... Ray \r\nFrances McDormand .... Abby \r\nDan Hedaya .... Julian Marty \r\nM. Emmet Walsh .... Loren Visser (private detective) \r\nSamm-Art Williams .... Meurice \r\nDeborah Neumann .... Debra \r\nRaquel Gavia .... Landlady \r\nVan Brooks .... Man from Lubbock \r\nSeñor Marco .... Mr. Garcia \r\nWilliam Creamer .... Old cracker \r\nLoren Bivens .... Strip-bar exhorter \r\nBob McAdams .... Strip-bar exhorter \r\nShannon Sedwick .... Stripper \r\nNancy Finger .... Girl on overlook \r\nWilliam Preston Robertson .... Radio evangelist (voice) \r\nrest of cast listed alphabetically: \r\nHolly Hunter .... Helene Trend (voice) (uncredited) \r\nBarry Sonnenfeld .... Marty\'s vomiting (voice) (uncredited) \r\n \r\n3. Original Music by: \r\nCarter Burwell \r\nJim Roberge \r\n',0,'22',2,'2004-12-20 19:42:16',95,1,'Joel Coen & Ethan Coen (uncredited)','Joel Coen & Ethan Coen','Carter Burwell, Jim Roberge','PAL - Anamorph Widescreen (1,85:1) [16:9]','Audio: German (5.1), English (5.1) - Subtitles: German, English'),(114,1,'Grasgeflüster [OT: Saving Grace]',2000,'',0,'-1',2,'2004-12-20 19:42:26',0,1,'Andreas Dresen','','','',''),(115,1,'Hole, The [OT: The Hole]',2001,'',0,'-1',2,'2004-12-20 19:42:39',0,1,'Nick Hamm','','','',''),(116,1,'Kafka [OT: Kafka]',1991,'',0,'-1',2,'2004-12-20 19:42:47',0,1,'Steven Soderbergh','','','',''),(117,1,'Kids [OT: Kids]',1995,'',0,'-1',2,'2004-12-20 19:42:56',0,1,'Larry Clark','','','',''),(118,1,'Lampedusa [OT: Respiro]',2002,'',0,'-1',2,'2004-12-20 19:43:04',0,1,'Emanuele Crialese','','','',''),(119,1,'Monty Pythons Das Leben des Brian [OT: Monty Python\'s Life of Brian]',1979,'1. Writing credits: \r\nGraham Chapman (written by) \r\nJohn Cleese (written by) \r\nTerry Gilliam (written by) \r\nEric Idle (written by) \r\nTerry Jones (written by) \r\nMichael Palin (written by)\r\n \r\n2. Cast (in credits order) verified as complete: \r\nGraham Chapman .... Wise Man #2/Brian Cohen/Biggus Dickus \r\nJohn Cleese .... Wise Man #1/Reg/Jewish Official/Centurion/Deadly Dirk/Arthur \r\nTerry Gilliam .... Man Even Further Forward/Revolutionary/Jailer/Blood & Thunder Prophet/Geoffrey/Audience Member/Crucifee \r\nEric Idle .... Wiseguy/Stan (Loretta)/Harry the Haggler/Culprit Woman/Warris/Intensely Dull Youth/Jailer\'s Assistant/Otto/Lead Singer Crucifee \r\nTerry Jones .... Mandy Cohen/Colin/Simon the Holy Man/Bob Hoskins/Saintly Passer-by/Alarmed Crucifixion Assistant \r\nMichael Palin .... Wise Man #3/Mr. Big Nose/Francis/Mrs. A/Ex-Leper/Announcer/Ben/Pontius Pilate/Boring Prophet/Eddie/Shoe Follower/Nisus Wettus \r\nTerence Bayler .... Gregory \r\nCarol Cleveland .... Mrs. Gregory \r\nKenneth Colley .... Jesus \r\nNeil Innes .... A weedy Samaritan \r\nCharles McKeown .... False Prophet/Blind Man/Giggling Guard/Stig \r\nJohn Young .... Matthias, Son of Deuteronomy of Gath \r\nGwen Taylor .... Mrs. Big Nose \r\nSue Jones-Davies .... Judith \r\nPeter Brett \r\nJohn Case .... Pilate\'s Wife \r\nChris Langham .... Alfonso/Giggling Guard \r\nAndrew MacLachlan .... Another Official Stoners Helper/Giggling Guard \r\nBernard McKenna .... Parvus/Official Stoners Helper/Giggling Guard \r\nSpike Milligan .... Spike \r\nrest of cast listed alphabetically: \r\nGeorge Harrison .... Mr. Papadopolous (uncredited) \r\nCharles Knode .... Passer-by (uncredited) \r\n \r\n3. Original Music by: \r\nGeoffrey Burgon \r\nEric Idle (song \"Always Look on the Bright Side of Life...\") \r\nMichael Palin (Brian\'s song)',0,'5',2,'2004-12-20 19:43:21',90,1,'Terry Jones','Graham Chapman, John Cleese, Terry Gilliam, Eric Idle, Terry Jones & Michael Palin','Geoffrey Burgon','PAL - Anamorph Widescreen (1,85:1) [16:9]','Audio: German (Mono), English (5.1), Hungarian (5.0) - Subtitles: German, English, English (aur. handic.), Arabian, Bulgarian, Danish, Finnish, French, Greek, Hebrew, Hindi, Dutch, Icelandic, Italian, Croatian, Norwegian, Polish, Portuguese, Swedish, ...'),(120,1,'Rumble Fish',1983,'',0,'-1',2,'2004-12-20 19:43:34',0,1,'Francis Ford Coppola','','','',''),(121,1,'Traffic - Macht des Kartells [OT: Traffic]',2000,'',0,'-1',2,'2004-12-20 19:43:50',0,1,'Steven Soderbergh','','','',''),(145,1,'Freaks - Missgestaltete [OT: Freaks]',1932,'',0,'2',2,'2005-03-15 07:56:00',60,1,'Tod Browning','','','',''),(123,1,'Sie sind unter uns [OT: Nos miran]',2002,'',0,'-1',2,'2004-12-20 19:44:13',0,1,'Norberto López Amado','','','',''),(124,1,'Unsichtbare Augen [OT: My Little Eye]',2002,'',0,'-1',2,'2004-12-20 19:44:26',0,1,'Marc Evans','','','',''),(209,1,'Element of Crime [OT: Forbrydelsens element]',1984,'',0,'2',2,'2006-01-18 07:01:06',0,1,'Lars von Trier','','','',''),(210,1,'Europa [OT: Europa]',1991,'',0,'2',2,'2006-01-18 07:02:14',0,1,'Lars von Trier','','','',''),(211,1,'Epidemic [OT: Epidemic]',1987,'',0,'2',2,'2006-01-18 07:03:41',0,1,'Lars von Trier','','','',''),(208,2,'Roter Drache [OT: Red Dragon]',2002,'',0,'2',2,'2005-12-27 11:45:20',119,1,'Brett Ratner','','','',''),(128,1,'Echoes - Stimmen aus der Zwischenwelt [OT: Stir of Echoes]',1999,'',0,'-1',2,'2004-12-26 23:38:30',0,1,'David Koepp','','','',''),(129,1,'Gathering, The [OT: The Gathering]',2002,'',0,'-1',2,'2004-12-26 23:38:49',0,1,'Brian Gilbert','','','',''),(130,1,'Ghost Ship - Meer des Grauens [OT: Ghost Ship]',2002,'',0,'-1',2,'2004-12-26 23:39:14',0,1,'Steve Beck','','','',''),(131,1,'Paperhouse - Albträume werden wahr [OT: Paperhouse]',1988,'',0,'-1',2,'2004-12-26 23:39:51',0,1,'Bernard Rose','','','',''),(132,1,'They - Sie kommen [OT: They]',2002,'',0,'-1',2,'2004-12-26 23:40:38',0,1,'Robert Harmon & Rick Bota','','','',''),(133,1,'Others, The [OT: The Others]',2001,'',0,'-1',2,'2004-12-26 23:40:55',0,1,'Alejandro Amenábar','','','',''),(134,1,'Einsatz, Der [OT: The Recruit]',2003,'',0,'22',2,'2004-12-26 23:41:22',0,1,'Roger Donaldson','','','',''),(135,1,'Calling, The [OT: The Calling]',2000,'',0,'-1',2,'2005-01-03 16:28:18',0,1,'Richard Caesar','','','',''),(136,1,'Birthday Girl - Braut auf Bestellung [OT: Birthday Girl]',2001,'',0,'-1',2,'2005-01-03 16:28:43',0,1,'Jez Butterworth','','','',''),(137,1,'Extreme Risk [OT: Rancid Aluminium]',2000,'',0,'-1',2,'2005-01-03 16:29:41',0,1,'Edward Thomas','','','',''),(138,1,'Identität [OT: Identity]',2003,'',0,'-1',2,'2005-01-03 16:29:56',0,1,'James Mangold','','','',''),(139,1,'Mothman Prophezeiungen, Die [OT: The Mothman Prophecies]',2002,'',0,'-1',2,'2005-01-03 16:30:20',0,1,'Mark Pellington','','','',''),(140,1,'No Man\'s Land [OT: No Man\'s Land]',2001,'',0,'2',2,'2005-01-03 16:30:38',100,1,'Danis Tanovic','','','',''),(141,1,'Space Cowboys [OT: Space Cowboys]',2000,'',0,'-1',2,'2005-01-03 16:31:00',0,1,'Clint Eastwood','','','',''),(142,1,'Wrong Turn [OT: Wrong Turn]',2003,'',0,'3',2,'2005-01-03 16:31:08',0,1,'Rob Schmidt','','','',''),(143,1,'Night on Earth [OT: Night on Earth]',1991,'',0,'-1',2,'2005-01-06 09:19:06',0,1,'Jim Jarmusch','','','',''),(144,1,'Ghost Dog - Der Weg des Samurai [OT: Ghost Dog - The Way of the Samurai]',1999,'',0,'-1',2,'2005-01-06 09:19:25',0,1,'Jim Jarmusch','','','',''),(146,2,'40 Tage und 40 Nächte [OT: 40 Days and 40 Nights]',2002,'',0,'5',2,'2005-03-15 07:57:07',0,1,'Michael Lehmann','','','',''),(147,2,'Tatsächlich Liebe [OT: Love Actually]',2003,'',0,'5',2,'2005-03-15 07:57:18',0,1,'Richard Curtis','','','',''),(148,1,'Fear Dot Com [OT: Fear dot Com]',2002,'',0,'-1',2,'2005-03-15 07:58:21',0,1,'William Malone','','','',''),(149,1,'Neun Pforten, Die [OT: The Ninth Gate]',1999,'',0,'-1',2,'2005-03-28 15:01:36',0,1,'Roman Polanski','','','',''),(150,1,'Dänische Delikatessen - Darf\'s ein bisschen mehr sein? [OT: De grønne slagtere]',2003,'',0,'-1',2,'2005-04-11 12:26:23',0,1,'Anders Thomas Jensen','','','',''),(151,1,'AI - Künstliche Intelligenz [OT: Artificial Intelligence: AI]',2001,'',0,'2',2,'2005-04-11 12:26:55',0,1,'Steven Spielberg','','','',''),(152,1,'Klavierspielerin, Die [OT: La pianiste]',2001,'',0,'-1',2,'2005-04-11 12:27:06',0,1,'Michael Haneke','','','',''),(153,1,'Mississippi Burning [OT: Mississippi Burning]',1988,'',0,'-1',2,'2005-04-11 12:27:30',0,1,'Alan Parker','','','',''),(154,1,'Anatomie 2',2003,'',0,'-1',2,'2005-04-11 12:27:45',0,1,'Stefan Ruzowitzky','','','',''),(155,1,'Barton Fink [OT: Barton Fink]',1991,'',0,'-1',2,'2005-04-16 20:46:31',0,1,'Joel Coen & Ethan Coen (uncredited)','Joel Coen & Ethan Coen','','',''),(156,1,'Sonnenallee',1999,'',0,'-1',2,'2005-04-22 17:03:33',0,1,'Leander Haußmann','','','',''),(157,1,'Jacob\'s Ladder - In der Gewalt des Jenseits [OT: Jacob\'s Ladder]',1990,'',0,'-1',2,'2005-04-22 17:04:14',0,1,'Adrian Lyne','','','',''),(158,1,'Gorky Park [OT: Gorki Park]',1983,'',0,'-1',2,'2005-04-22 17:04:32',0,1,'Michael Apted','','','',''),(159,1,'Unzertrennlichen, Die [OT: Dead Ringers]',1988,'',0,'-1',2,'2005-04-22 17:04:54',0,1,'David Cronenberg','','','',''),(163,1,'Anatomie',2000,'',0,'-1',2,'2005-05-26 20:21:36',0,1,'Stefan Ruzowitzky','','','',''),(164,1,'City Hall [OT: City Hall]',1996,'',0,'22',2,'2005-06-15 13:26:09',0,1,'Harold Becker','','','',''),(165,1,'23 - Nichts ist wie es scheint',1998,'',0,'2',2,'2005-08-08 07:16:09',0,1,'Hans-Christian Schmid','','','',''),(166,1,'alaska.de',2000,'',0,'-1',2,'2005-08-08 07:16:26',0,1,'Esther Gronenborn','','','',''),(167,1,'Bandits',1997,'',0,'-1',2,'2005-08-08 07:16:49',0,1,'Katja von Garnier','','','',''),(168,1,'Blechtrommel, Die',1979,'',0,'-1',2,'2005-08-08 07:17:06',0,1,'Volker Schlöndorff','','','',''),(169,1,'Breaking the Waves [OT: Breaking the Waves]',1996,'',0,'2',2,'2005-08-08 07:17:28',0,1,'Lars von Trier','','','',''),(170,1,'Kentucky Fried Movie [OT: The Kentucky Fried Movie]',1977,'',0,'-1',2,'2005-08-08 07:17:49',0,1,'John Landis','','','',''),(171,1,'Vergiss Amerika',2000,'',0,'-1',2,'2005-08-08 07:18:03',0,1,'Vanessa Jopp','','','',''),(172,1,'Lisbon Story [OT: Lisbon Story]',1994,'',0,'2',2,'2005-11-05 18:45:03',99,1,'Wim Wenders','','Jürgen Knieper, Madredeus','',''),(173,1,'Good Cop, The [OT: Den gode strømer]',2004,'',0,'5',2,'2005-11-05 18:47:20',87,1,'Lasse Spang Olsen','','George Keller','',''),(174,1,'Ich habe keine Angst [OT: Io non ho paura]',2003,'',0,'2',2,'2005-11-05 18:49:23',105,1,'Gabriele Salvatores','','Ezio Bosso, Ennio Morricone, Pepo Scherman','',''),(175,1,'In This World [OT: In This World]',2002,'',0,'2',2,'2005-11-05 18:51:04',86,1,'Michael Winterbottom','','Dario Marianelli','',''),(176,1,'Voll das Leben [OT: Reality Bites]',1994,'',0,'5',2,'2005-11-09 17:33:54',94,1,'Ben Stiller','','','',''),(177,1,'Garden State [OT: Garden State]',2004,'',0,'5',2,'2005-11-09 17:34:39',98,1,'Zach Braff','','','',''),(178,1,'In China essen sie Hunde [OT: I Kina spiser de hunde]',1999,'',0,'5',2,'2005-11-09 17:36:07',91,1,'Lasse Spang Olsen','','','',''),(179,1,'Old Men In New Cars [OT: Gamle mænd i nye biler]',2002,'',0,'5',2,'2005-11-09 17:37:21',93,1,'Lasse Spang Olsen','','','',''),(180,1,'Sideways',2004,'',0,'16',2,'2005-11-09 17:55:28',122,1,'Alexander Payne','','','',''),(181,1,'Brot & Tulpen [OT: Pani e tulipani]',2000,'',0,'16',2,'2005-11-09 17:56:59',113,1,'Silvio Soldini','','','',''),(182,1,'Barfuss',2005,'',0,'-1',2,'2005-11-09 17:58:31',110,1,'Til Schweiger','','','',''),(183,1,'Butterfly Effect [OT: The Butterfly Effect]',2004,'',0,'-1',2,'2005-11-09 19:08:13',0,1,'Eric Bress & J. Mackye Gruber','','','',''),(184,1,'Totmacher, Der',1995,'',0,'-1',2,'2005-11-09 19:08:42',0,1,'Romuald Karmakar','','','',''),(185,1,'Dolmetscherin, Die [OT: The Interpreter]',2005,'',0,'-1',2,'2005-11-09 19:09:38',0,1,'Sydney Pollack','','','',''),(186,1,'Ring 2 [OT: The Ring Two; aka: The Ring 2]',2005,'',0,'-1',2,'2005-11-09 19:10:41',0,1,'Hideo Nakata','','','',''),(187,1,'I Heart Huckabees (aka: I Love Huckabees)',2004,'',0,'5',2,'2005-11-10 00:21:52',0,1,'David O. Russell','','','',''),(188,1,'Birth [OT: Birth]',2004,'',0,'2',2,'2005-11-17 08:47:21',96,1,'Jonathan Glazer','','','',''),(189,1,'Monty Pythons Der Sinn des Lebens [OT: Monty Python\'s The Meaning of Life]',1983,'',0,'5',2,'2005-11-17 08:49:19',103,1,'Terry Jones, Terry Gilliam','','','',''),(190,1,'Mystery Train [OT: Mystery Train]',1989,'',0,'5',2,'2005-11-17 08:51:42',106,1,'Jim Jarmusch','','','',''),(191,1,'Bob Roberts [OT: Bob Roberts]',1992,'',0,'5',2,'2005-12-03 20:15:41',0,1,'Tim Robbins','','','',''),(192,1,'Living in Oblivion [OT: Living in Oblivion]',1995,'',0,'5',2,'2005-12-06 22:04:15',90,1,'Tom DiCillo','','','',''),(193,1,'Nightwatch [OT: Nattevagten]',1994,'',0,'2',2,'2005-12-06 22:06:48',103,1,'Ole Bornedal','','','',''),(194,1,'9 Songs [OT: 9 Songs]',2004,'',0,'21',2,'2005-12-06 22:07:33',69,1,'Michael Winterbottom','','','',''),(195,1,'Per Anhalter durch die Galaxis [OT: The Hitchhiker\'s Guide to the Galaxy]',1981,'',0,'5',2,'2005-12-06 22:09:58',84,1,'Alan J.W. Bell','','','',''),(196,1,'Just A Kiss [OT: Ae Fond Kiss]',2004,'',0,'2',2,'2005-12-08 17:26:17',100,1,'Ken Loach','','','',''),(197,1,'Chasing Amy [OT: Chasing Amy]',1997,'',0,'5',2,'2005-12-08 17:27:01',104,1,'Kevin Smith','','','',''),(198,1,'Katze im Sack',2005,'',0,'2',2,'2005-12-08 17:27:45',83,1,'Florian Schwarz','','','',''),(199,1,'One Point Zero [OT: One Point O]',2004,'',0,'1',2,'2005-12-08 17:30:53',89,1,'Jeff Renfroe & Marteinn Thorsson','','','',''),(200,1,'Station Agent [OT: The Station Agent]',2003,'',0,'5',2,'2005-12-17 16:52:15',87,1,'Thomas McCarthy','','','',''),(201,1,'Spanglish [OT: Spanglish]',2004,'',0,'5',2,'2005-12-17 16:52:55',126,1,'James L. Brooks','','','',''),(202,1,'Passion Christi, Die [OT: Passion of the Christ]',2004,'',0,'2',2,'2005-12-17 16:54:16',127,1,'Mel Gibson','','','',''),(203,1,'Ist das Leben nicht schön? [OT: It\'s a Wonderful Life]',1946,'',0,'2',2,'2005-12-17 16:55:52',125,1,'Frank Capra','','','',''),(204,1,'Elephant [OT: Elephant]',2003,'',0,'2',2,'2005-12-17 16:56:49',78,1,'Gus Van Sant','','','',''),(205,1,'Ken Park [OT: Ken Park]',2002,'',0,'2',2,'2005-12-17 16:58:02',91,1,'Larry Clark & Edward Lachman','','','',''),(212,1,'Pi [OT: Pi]',1998,'',0,'2',2,'2006-01-26 08:14:23',81,1,'Darren Aronofsky','','','',''),(213,1,'Down by Law [OT: Down by Law]',1986,'',0,'5',2,'2006-01-26 08:15:45',103,1,'Jim Jarmusch','','','',''),(214,1,'Near Dark [OT: Near Dark]',1987,'',0,'3',2,'2006-01-26 08:18:36',93,1,'Kathryn Bigelow','','','',''),(215,1,'Dark City [OT: Dark City]',1998,'',0,'1',2,'2006-01-26 08:19:46',96,1,'Alex Proyas','','','',''),(216,1,'Angel Heart [OT: Angel Heart]',1987,'',0,'22',2,'2006-01-26 08:20:49',109,1,'Alan Parker','','','',''),(217,1,'Vanishing, The - Spurlos verschwunden [OT: Spoorloos]',1988,'',0,'22',2,'2006-01-26 08:23:20',102,1,'George Sluizer','','','',''),(218,1,'Wild at Heart [OT: Wild at Heart]',1990,'',0,'2',2,'2006-01-26 08:25:04',120,1,'David Lynch','','','',''),(219,1,'Koch, der Dieb, seine Frau und ihr Liebhaber, Der [OT: The Cook, the Thief, his Wife and her Lover]',1989,'',0,'2',2,'2006-01-26 08:28:41',119,1,'Peter Greenaway','','','',''),(220,1,'Delicatessen [OT: Delicatessen]',1991,'',0,'5',2,'2006-01-26 08:29:51',95,1,'Jean-Pierre Jeunet & MarcCaro','','','',''),(221,1,'Somersault',2004,'',0,'2',2,'2006-01-26 08:34:49',102,1,'Cate Shortland','','','',''),(222,1,'Tor zum Himmel [OT: Gate to Heaven]',2003,'',0,'5',2,'2006-01-26 08:36:18',90,1,'Veit Helmer','','','',''),(223,1,'Shriek - Schrei, wenn du weisst, was ich letzten Freitag den 13. getan habe [OT: Shriek If You Know What I Did Last Friday the Thirteenth]',2000,'',0,'5',2,'2006-01-26 08:38:29',95,1,'John Blanchard','','','',''),(224,1,'Spider-Man [OT: Spider-Man]',2002,'',0,'4',2,'2006-01-26 08:39:54',116,1,'Sam Raimi','','','',''),(225,1,'Bully [OT: Bully]',2001,'',0,'2',2,'2006-01-26 08:41:05',107,1,'Larry Clark','','','',''),(226,1,'Brown Bunny, The [OT: The Brown Bunny]',1993,'',0,'2',2,'2006-01-26 08:42:02',89,1,'Vincent Gallo','','','',''),(227,1,'Foxy Brown [OT: Foxy Brown]',1974,'',0,'4',2,'2006-01-26 08:43:07',87,1,'Jack Hill','','','',''),(228,1,'Code 46 [OT: Code 46]',2003,'',0,'1',2,'2006-01-26 08:44:04',89,1,'Michael Winterbottom','','','',''),(229,1,'Dancer in the Dark [OT: Dacer in the Dark]',2000,'',0,'2',2,'2006-01-27 18:02:30',134,1,'Lars von Trier','','','',''),(230,1,'Fest, Das [OT: Festen]',1998,'',0,'2',2,'2006-01-27 18:03:34',101,1,'Thomas Vinterberg','','','',''),(231,1,'Spider-Man 2 [OT: Spider-Man 2]',2004,'',0,'4',2,'2006-03-11 23:40:11',122,1,'Sam Raimi','','','',''),(232,1,'Bullit [OT: Bullit]',1968,'',0,'4',2,'2006-03-11 23:41:21',109,1,'Peter Yates','','','',''),(233,1,'Coffee and Cigarettes [OT: Coffee and Cigarettes]',2003,'',0,'5',2,'2006-03-15 06:43:53',92,1,'Jim Jarmusch','','','',''),(234,1,'... und dann kam Polly [OT: Along Came Polly]',2004,'',0,'5',2,'2006-03-15 06:45:57',86,1,'John Hamburg','','','',''),(235,1,'Hype! [OT: Hype!]',1996,'',0,'6',2,'2006-04-30 17:29:00',80,1,'Doug Pray','','','',''),(236,1,'Hulk [OT: Hulk]',2003,'',0,'4',2,'2006-05-31 16:13:46',133,1,'Ang Lee','','','',''),(237,1,'High Fidelity [OT: High Fidelity]',2000,'',0,'5',2,'2006-05-31 16:15:44',109,1,'Stephen Frears','Nick Hornby (novel)','','',''),(238,1,'Following [OT: Following]',1998,'',0,'2',2,'2006-06-01 16:20:12',70,1,'Christopher Nolan','Christopher Nolan','','',''),(239,1,'Fantastic Four [OT: Fantastic Four]',2005,'',0,'4',2,'2006-06-01 16:21:30',102,1,'Tim Story','','','',''),(240,1,'Haus aus Sand und Nebel [OT: House of Sand and Fog]',2003,'',0,'2',2,'2006-11-01 08:10:03',121,1,'Vadim Perelman','Andre Dubus (novel) / Vadim Perelman & Shawn Lawrence Otto (screenplay)','James Horner','',''),(242,1,'Gegenteil von Sex, Das [OT: The Opposite of Sex]',1998,'',0,'5',2,'2006-12-31 13:52:48',97,1,'Don Roos','Don Roos','Mason Daring','',''),(243,1,'Together - Zusammen [OT: Tillsammans]',2000,'',0,'5',2,'2006-12-31 13:58:35',106,1,'Lukas Moodysson','Lukas Moodysson','','',''),(244,1,'Ich bin Sam [OT: I am Sam]',2001,'',0,'2',2,'2006-12-31 14:00:06',128,1,'Jessie Nelson','Kristine Johnson & Jessie Nelson','John Powell','',''),(245,1,'Taking Lives - Für dein Leben würde er töten [OT: Taking Lives]',2004,'',0,'22',2,'2006-12-31 14:02:43',99,1,'D.J. Caruso','Michael Pye (novel), Jon Bokenkamp (screenplay)','Philip Glass, Walter Werzowa (main titles)','',''),(246,2,'In den Schuhen meiner Schwester [OT: In Her Shoes]',2005,'',0,'5',2,'2006-12-31 14:05:47',125,1,'Curtis Hanson','Jennifer Weiner (novel), Susannah Grant (screenplay)','Mark Isham','',''),(247,2,'Solange du da bist - Liebe findet ihren Weg [OT: Just Like Heaven]',2005,'',0,'16',2,'2006-12-31 14:13:04',91,1,'Mark Waters','Marc Levy (novel: If Only It Were True), Peter Tolan & Leslie Dixon (screenplay)','Rolfe Kent','',''),(248,1,'Raus aus Amal [OT: Fucking Amal]',1998,'',0,'2',2,'2007-02-28 13:49:59',90,1,'Lukas Moodysson','Lukas Moodysson','Per Gessle & Hakan Hellström','',''),(249,1,'Cooler, The [OT: The Cooler]',2003,'',0,'2',2,'2007-02-28 13:51:53',98,1,'Wayne Kramer','Frank Hannah & Wayne Kramer','Mark Isham','',''),(250,1,'München [OT: Munich]',2005,'',0,'2',2,'2007-02-28 13:54:53',157,1,'Steven Spielberg','Tony Kuschner & Eric Roth (screenpaly), George Jonas (book)','John Williams','',''),(251,1,'Buffalo 66 [OT: Buffalo 66]',1998,'1. Writing credits: \r\nVincent Gallo (story)\r\nVincent Gallo (screenplay) & \r\nAlison Bagnall (screenplay)\r\n\r\n2. Cast (in credits order) verified as complete:\r\nVincent Gallo ... Billy Brown \r\nChristina Ricci ... Layla \r\nBen Gazzara ... Jimmy Brown \r\nMickey Rourke ... The Bookie \r\nRosanna Arquette ... Wendy Balsam \r\nJan-Michael Vincent ... Sonny \r\nAnjelica Huston ... Jan Brown \r\nKevin Pollak ... TV Sportscaster \r\nAlex Karras ... TV Sportscaster \r\nJohn Sansone ... Little Billy \r\nManny Fried ... The Donut Clerk \r\nJohn Rummel ... Don Shanks \r\nBob Wahl ... Scott Woods \r\nPenny Wolfgang ... The Judge \r\nAnthony Mydcarz ... The Motel Clerk \r\nMichael Maciejewski ... The Guy in the Bathroom \r\nJack Claxton ... The Denny\'s Host \r\nDominic Telesco ... The Prison Guard \r\nCarl Marchi ... The Cafe Owner \r\nKim Krah ... The Denny\'s Waitress \r\nJulius Digennaro ... The Info Booth Clerk \r\nTerry Braunstein ... The Tap Teacher \r\nJack Hunter ... The Gas Station Clerk \r\nNorma Gelose ... The Bus Station Woman \r\nJanel King ... The Tap Dance Kid \r\nGhennifer Dennis ... A Beautiful Scott Woods Sexxotic Dancer \r\nErin Markle ... A Beautiful Scott Woods Sexxotic Dancer \r\nValeria Hildebrandt ... A Beautiful Scott Woods Sexxotic Dancer \r\nMichelle McCluskey ... A Beautiful Scott Woods Sexxotic Dancer \r\nTerese Lenandowski ... A Beautiful Scott Woods Sexxotic Dancer \r\nKim Bradway ... A Beautiful Scott Woods Sexxotic Dancer \r\nDana Thompson ... A Beautiful Scott Woods Sexxotic Dancer \r\nKaren Sitter ... A Beautiful Scott Woods Sexxotic Dancer \r\nMichelle Koninick ... A Beautiful Scott Woods Sexxotic Dancer \r\nAmy Jakabowski ... A Beautiful Scott Woods Sexxotic Dancer \r\nTara Thompson ... A Beautiful Scott Woods Sexxotic Dancer \r\nrest of cast listed alphabetically:\r\nKevin Corrigan ... Rocky the Goon (uncredited) \r\nJoey Giambra ... Man in Donut Shop (uncredited) \r\n\r\n3. Original Music by: \r\nVincent Gallo ',0,'5',2,'2007-09-19 06:42:00',105,1,'Vincent Gallo','Vincent Gallo (Story), Vincent Gallo & Alison Bagnall (Screenplay)','Vincent Gallo','PAL - Anamorph Widescreen (1,78:1) [16:9]','Audio: German (5.1), English (5.1)'),(252,1,'Hotel Ruanda [OT: Hotel Ruanda]',2004,'1. Writing credits (WGA):\r\nKeir Pearson (written by) &\r\nTerry George (written by) \r\n\r\n2. Cast (in credits order) complete, awaiting verification:\r\nXolani Mali ... Policeman \r\nDon Cheadle ... Paul Rusesabagina \r\nDesmond Dube ... Dube \r\nHakeem Kae-Kazim ... George Rutaganda \r\nTony Kgoroge ... Gregoire \r\nRosie Motene ... Receptionist \r\nNeil McCarthy ... Jean Jacques \r\nMabutho \'Kid\' Sithole ... Head Chef (as Kid Sithole) \r\nNick Nolte ... Colonel Oliver \r\nFana Mokoena ... General Bizimungu \r\nJeremiah Ndlovu ... Old Guard \r\nSophie Okonedo ... Tatiana Rusesabagina \r\nLebo Mashile ... Odette \r\nAntonio David Lyons ... Thomas Mirama \r\nLeleti Khumalo ... Fedens \r\nKgomotso Seitshohlo ... Anais \r\nLerato Mokgotho ... Carine \r\nMosa Kaiser ... Elys Rusesabagina \r\nMathabo Pieterson ... Diane Rusesabagina \r\nOfentse Modiselle ... Roger Rusesabagina \r\nDavid O\'Hara ... David \r\nJoaquin Phoenix ... Jack Daglish \r\nLennox Mathabathe ... Peter \r\nMothusi Magano ... Benedict \r\nNoxolo Maqashalala ... Chloe, Prostitute \r\nThulani Nyembe ... Jean Baptiste (as Thulane Nyembe) \r\nSimo Mogwaza ... Hutu Captain (as Simo Magwaza) \r\nMirriam Ngomani ... Gregoire\'s Girlfriend \r\nCara Seymour ... Pat Archer \r\nHarriet Lenabe ... Alice the Waitress (as Harriet Manamela) \r\nRoberto Citran ... Priest \r\nMduduzi Mabaso ... Hutu Lieutenant \r\nSonni Chidiebere ... Militiaman \r\nThomas Kariuki ... Xavier \r\nSibusiso Mhlangu ... Militiaman (as Sibusiso Mhlongo) \r\nAshleigh Tobias ... Medic \r\nrest of cast listed alphabetically:\r\nJean Reno ... Sabena Airlines President, Mr. Tillens (uncredited) \r\n\r\n3. Original Music by:\r\nRupert Gregson-Williams \r\nAndrea Guerra \r\nMartin Russell',0,'2',2,'2007-09-19 06:52:07',118,1,'Terry George','Keir Pearson & Terry George','Rupert Gregson-Williams, Andrea Guerra, Martin Russell','PAL - Anamorph Widescreen (2,35:1)','81 Minutes Bonus Material - Audio: German (5.1), English (5.1) - Subitles: German, English'),(253,1,'Mallrats [OT: Mallrats]',1995,'1. Writing credits (WGA): \r\nKevin Smith (written by) \r\n\r\n2. Cast (in credits order) verified as complete:\r\nShannen Doherty ... Rene Mosier \r\nJeremy London ... T.S. Quint \r\nJason Lee ... Brodie Bruce \r\nClaire Forlani ... Brandi Svenning \r\nBen Affleck ... Shannon Hamilton \r\nJoey Lauren Adams ... Gwen Turner \r\nRenée Humphrey ... Tricia Jones (as Renee Humphrey) \r\nJason Mewes ... Jay \r\nEthan Suplee ... Willam Black \r\nStan Lee ... Himself \r\nPriscilla Barnes ... Miss Ivannah \r\nMichael Rooker ... Mr. Jared Svenning \r\nCarol Banker ... Security Guard \r\nSteven Blackwell ... Arresting Cop #2 \r\nKyle Boe ... Pull Toy Kid \r\nDavid Brinkley ... Bently Garison, TV Executive #1 \r\nWalter Flanagan ... Walt Grover, the Fanboy \r\nEthan Flower ... Doug Paging, Suitor #1 \r\nChelsea Frye ... Girl with Easter Bunny \r\nJeff Gadbois ... Mason, TV Executive #2 \r\nEd Hapstak ... Rob Feature, Suitor #2 \r\nTerry Hempleman ... Arresting Cop #1 \r\nArt James ... Bob Summers, Truth or Date Host \r\nBryan Johnson ... Steve-Dave Pulasti \r\nMikey Kovar ... Child at Kiosk #2 \r\nDavid Klein ... Fan at Comic Store \r\nScott Mosier ... Roddy \r\nCrystal Muirhead-Manik ... Saleslady at Lingerie Store \r\nTyson Nassauer ... Kid at Poster Kiosk \r\nBrian O\'Halloran ... Gill Hicks, Suitor #3 \r\nAaron Preusse ... Passerby in Parking Lot \r\nKevin Smith ... Silent Bob \r\nBritt Swenson ... Child at Kiosk #1 \r\nSven-Ole Thorsen ... La Fours (as Sven Thorsen) \r\nMary Woolever ... Teacher \r\nBrad Fox ... Team La Fours \r\nGino Gori ... Team La Fours \r\nZach Perkins ... Team La Fours \r\nBrad Gidding ... Team La Fours (as Brad Giddings) \r\nBryce Mack ... Team La Fours \r\nChristopher O\'Larkin ... Team La Fours \r\nrest of cast listed alphabetically: \r\nElizabeth Ashley ... Gov. Dalton (cut scene) (scenes deleted) \r\nEarl R. Burt ... Audience Member (uncredited) \r\nTammara Melloy ... Shopper (uncredited) \r\n\r\n3. Original Music by: \r\nIra Newborn',0,'5',2,'2007-09-19 07:00:07',91,1,'Kevin Smith','Kevin Smith','Ira Newborn','',''),(254,1,'Lamerica [OT: Lamerica]',1994,'1. Writing credits (in alphabetical order): \r\nGianni Amelio \r\nAndrea Porporati \r\nAlessandro Sermoneta \r\n\r\n2. Cast (in credits order) verified as complete:\r\nEnrico Lo Verso ... Gino \r\nMichele Placido ... Fiore \r\nPiro Milkani ... Selimi \r\nCarmelo Di Mazzarelli ... Spiro (alias Michele Talarico) \r\nElida Janushi ... Selimi\'s Cousin \r\nSefer Pema ... Prison Governor \r\nIdajet Sejdia ... Dr. Kruja \r\nMarieta Ljarja ... Factory\'s manager \r\nElina Ndreu ... Singer in night club \r\nIlir Ara ... Orphanage\'s guard \r\nLiliana Subashi ... Hospital\'s doctor \r\nArtan Marina ... Ismail \r\nVassjan Lammi ... Cop at cafe \r\nNikolin Elezi ... Man dying \r\nFatmir Gjyla ... Innkeeper \r\nElona Hoti ... Little girl dancing \r\nBesim Kurti ... Interrogator \r\nEsmeralda Ara ... Girl teaching italian \r\nLuan Ujkai \r\nShkelqim Daja \r\nDritan Alia \r\nElinor Cekliqi \r\nFerit Nutai \r\nKlodian Rakaj \r\nSaimir Tila \r\nMarian Tifozi \r\nGezim Nutai \r\nAltin Garupi \r\nGezim Garupi \r\nIsmail Kukaj \r\nNuredin Ujkaj \r\nrest of cast listed alphabetically: \r\nJulian Sands \r\n\r\n3. Original Music by: \r\nFranco Piersanti ',0,'2',2,'2007-09-19 07:16:36',125,1,'Gianni Amelio','Gianni Amelio, Andrea Porporati, Alessandro Sermoneta','','recorded from TV','recorded from TV'),(255,1,'Letzte König von Schottland, Der [OT: The Last King of Scotland]',2006,'1. Writing credits: \r\nPeter Morgan (screenplay) and \r\nJeremy Brock (screenplay)\r\nGiles Foden (novel)\r\n\r\n2. Cast (in credits order) verified as complete:\r\nForest Whitaker ... Idi Amin \r\nJames McAvoy ... Nicholas Garrigan \r\nKerry Washington ... Kay Amin \r\nGillian Anderson ... Sarah Merrit \r\nSimon McBurney ... Stone \r\nDavid Oyelowo ... Dr. Junju \r\nStephen Rwangyezi ... Jonah Wasswa \r\nAbby Mukiibi Nkaaga ... Masanga (as Abby Mukiibi) \r\nAdam Kotz ... Dr. Merrit \r\nSam Okelo ... Bonny \r\nSarah Nagayi ... Tolu \r\nChris Wilson ... Perkins \r\nDr. Dick Stockley ... Times Journalist \r\nBarbara Rafferty ... Mrs. Garrigan \r\nDavid Ashton ... Dr. Garrigan (senior) \r\nDaniel Ssetaba ... Kay Amin\'s servant \r\nApollo Okwenje Omamo ... Mackenzie Amin \r\nLouis Asea ... Campbell Amin \r\nGiles Foden ... British Journalist 1 \r\nAndy Williams ... British Journalist 2 \r\nMartina Amati ... Italian Journalist \r\nRene Peissker ... German Journalist \r\nStern Jedidian ... American Journalist \r\nDave A. Tarun ... Asian Tailor \r\nClare Wandera ... Secretary \r\nCleopatra Koheirwe ... Joy \r\nJoanitta Bewulira-Wandera ... Malyamu Amin (as Joanitta B. Wandera) \r\nConsodyne Buzabo ... Nora Amin \r\nPeter Salmon ... White Businessman \r\nMichael Wawuyo ... Air Force Commander \r\nWilberforce Muteta ... Guard (as Wilberforce Mutete) \r\nHaruna Walusimbi ... Guard \r\nMuhammed Kaweesa ... Idi\'s Double \r\nGrace Mugenyi ... Idi\'s Double \r\nJohn Bosco Obiya ... Idi\'s Double \r\nJohn Olima ... Bagpiper \r\nAngela Kalule ... Chanteuse at Nghtclub \r\nSam Namatiti ... Band at Nightclub - Bass & Keyboards \r\nMathias Muwonge ... Band at Nightclub - African Xylophone & Lyre \r\nJoseph Kahirimbanyi ... Band at Nightclub - Guitar \r\nAfrigo Band ... Band at Party \r\nNdere Troupe ... Dancers at Rally \r\nThe Nyonza Singers ... Choir at Parliament \r\nrest of cast listed alphabetically: \r\nIdi Amin ... Himself (archive footage) (uncredited) ',0,'2',2,'2007-10-07 06:28:51',118,1,'Kevin Macdonald','Giles Foden (novel), Peter Morgan & Jeremy Brock (screenplay)','Alex Heffes','PAL - Anamorph Widescreen (2,35:1) [16:9]','Audio: German (5.1), English (5.1) - Subtitles: German, German (aurally handicapped), English, Turkey'),(256,1,'Lost (Staffel 1) [OT: Lost (Season 1)]',2004,'1. Writing credits \r\nJ.J. Abrams (85 episodes, 2004-2008) \r\nJeffrey Lieber (85 episodes, 2004-2008) \r\nDamon Lindelof (85 episodes, 2004-2008) \r\nCarlton Cuse (18 episodes, 2005-2007) \r\nAdam Horowitz (10 episodes, 2005-2007) \r\nEdward Kitsis (10 episodes, 2005-2007) \r\nLiz Sarnoff (8 episodes, 2005-2007) \r\nJavier Grillo-Marxuach (7 episodes, 2004-2005) \r\nDrew Goddard (6 episodes, 2005-2007) \r\nLeonard Dick (6 episodes, 2005-2006) \r\nChristina M. Kim (5 episodes, 2006-2007) \r\nDavid Fury (4 episodes, 2004-2005) \r\nSteven Maeda (4 episodes, 2005-2006) \r\nJeff Pinkner (4 episodes, 2006-2007) \r\nJennifer Johnson (2 episodes, 2004-2005) \r\nCraig Wright (2 episodes, 2005) \r\n\r\n2. Cast\r\nNaveen Andrews ... Sayid Jarrah / ... (69 episodes, 2004-2007) \r\nEmilie de Ravin ... Claire Littleton / ... (69 episodes, 2004-2007) \r\nMatthew Fox ... Jack Shephard / ... (69 episodes, 2004-2007) \r\nJorge Garcia ... Hugo \'Hurley\' Reyes (69 episodes, 2004-2007) \r\nJosh Holloway ... James \'Sawyer\' Ford (69 episodes, 2004-2007) \r\nDaniel Dae Kim ... Jin Kwon (69 episodes, 2004-2007) \r\nYunjin Kim ... Sun Kwon (69 episodes, 2004-2007) \r\nEvangeline Lilly ... Kate Austen (69 episodes, 2004-2007) \r\nDominic Monaghan ... Charlie Pace (69 episodes, 2004-2007) \r\nTerry O\'Quinn ... John Locke (69 episodes, 2004-2007) \r\nHarold Perrineau ... Michael Dawson (47 episodes, 2004-2006) \r\nMaggie Grace ... Shannon Rutherford (33 episodes, 2004-2007) \r\nMichael Emerson ... Ben Linus / ... (30 episodes, 2006-2007) \r\nMalcolm David Kelley ... Walt Lloyd (29 episodes, 2004-2007) \r\nAdewale Akinnuoye-Agbaje ... Mr. Eko (28 episodes, 2005-2006) \r\nIan Somerhalder ... Boone Carlyle (28 episodes, 2004-2007) \r\nHenry Ian Cusick ... Desmond Hume (26 episodes, 2005-2007) \r\nMichelle Rodriguez ... Ana-Lucia Cortez (24 episodes, 2005-2006) \r\nMadison ... Vincent the Dog (24 episodes, 2004-2007) \r\nElizabeth Mitchell ... Juliet Burke (22 episodes, 2006-2007) \r\nCynthia Watros ... Libby (20 episodes, 2005-2006) \r\nM.C. Gainey ... Tom Friendly / ... (16 episodes, 2005-2007) \r\nKiele Sanchez ... Nikki Fernandez (14 episodes, 2006-2007) \r\nRodrigo Santoro ... Paulo (14 episodes, 2006-2007) \r\nMira Furlan ... Danielle Rousseau (13 episodes, 2004-2007) \r\nL. Scott Caldwell ... Rose (12 episodes, 2004-2007) \r\nSam Anderson ... Bernard / ... (11 episodes, 2005-2007) \r\nTania Raymonde ... Alex / ... (11 episodes, 2006-2007) \r\nKimberley Joseph ... Cindy Chandler (10 episodes, 2004-2007) \r\nChristian Bowman ... Steve Jenkins (10 episodes, 2004-2005) \r\nJohn Terry ... Dr. Christian Shephard / ... (9 episodes, 2004-2007) \r\nWilliam Mapother ... Ethan Rom (9 episodes, 2004-2007) \r\nFredric Lehne ... Marshal Edward Mars (8 episodes, 2004-2007) \r\nNestor Carbonell ... Richard Alpert (7 episodes, 2007) \r\nAndrew Divoff ... Mikhail Bakunin (7 episodes, 2006-2007) \r\nMichael Bowen ... Danny Pickett (7 episodes, 2006-2007) \r\nMarsha Thomason ... Naomi Dorrit (6 episodes, 2007) \r\nAndrea Gabriel ... Nadia (6 episodes, 2004-2007) \r\nBlake Bashoff ... Karl (5 episodes, 2006-2007) \r\nAriston Green ... Jason (5 episodes, 2006-2007) \r\nKevin Tighe ... Anthony Cooper (5 episodes, 2005-2007) \r\nJulie Bowen ... Sarah (5 episodes, 2005-2007) \r\nFrançois Chau ... Dr. Marvin Candle / ... (5 episodes, 2005-2007) \r\nBeth Broderick ... Diane Austen (4 episodes, 2005-2007) \r\nDaniel Roebuck ... Leslie Arzt (4 episodes, 2005-2007) \r\nSonya Walger ... Penny Widmore / ... (4 episodes, 2006-2007) \r\nKim Dickens ... Cassidy Phillips (3 episodes, 2006-2007) \r\nAdetokumboh M\'Cormack ... Yemi (3 episodes, 2006) \r\nBrett Cullen ... Goodwin (3 episodes, 2005-2007) \r\nTony Lee ... Jae Lee (3 episodes, 2005-2006) \r\nApril Grace ... Bea Klugh (3 episodes, 2006-2007) \r\nBilly Ray Gallion ... Randy / ... (3 episodes, 2004-2007) \r\nBrian Goodman ... Ryan Pryce (3 episodes, 2007) \r\nTeddy Wells ... Ivan / ... (3 episodes, 2006-2007) \r\nByron Chung ... Mr. Paik (3 episodes, 2005-2007) \r\nNeil Hopkins ... Liam / ... (3 episodes, 2004-2007) \r\nLillian Hurst ... Carmen Reyes (3 episodes, 2005-2007) \r\nJonathan Dixon ... Flight Attendant #2 / ... (3 episodes, 2004-2005) \r\nMichelle Arthur ... Flight Attendant #2 / ... (3 episodes, 2004-2005) \r\nJoah Buley ... Luke (3 episodes, 2006-2007) \r\nMeilinda Soerjoko ... Chrissy (3 episodes, 2004-2006) \r\nMichael Adamshick ... Lottery Official / ... (3 episodes, 2004-2005) \r\nBrittany Perrineau ... Lotto Girl / ... (3 episodes, 2005) \r\nClancy Brown ... Joe Inman / ... (2 episodes, 2006) \r\nKatey Sagal ... Helen (2 episodes, 2005-2006) \r\nRachel Ticotin ... Captain Teresa Cortez (2 episodes, 2005-2006) \r\nLindsey Ginter ... Sgt. Sam Austen (2 episodes, 2005-2006) \r\nGabrielle Fitzpatrick ... Lindsey (2 episodes, 2006-2007) \r\nAlan Dale ... Charles Widmore (2 episodes, 2006-2007) \r\nKatie Doyle ... EMT / ... (2 episodes, 2005-2007) \r\nRobin Weigert ... Rachel (2 episodes, 2007) \r\nPaula Malcomson ... Colleen Pickett (2 episodes, 2006) \r\nKolawole Obileye Jr. ... Young Eko (2 episodes, 2006) \r\nWendy Braun ... Gina (2 episodes, 2005) \r\nLawrence Jones ... Lead Soldier / ... (2 episodes, 2006) \r\nDavid Ely ... Intern (2 episodes, 2005) \r\nJeremy Shada ... Young Charlie (2 episodes, 2006-2007) \r\nOlekan Obileye ... Young Yemi (2 episodes, 2006) \r\nRobert Frederick ... Jeff (2 episodes, 2005) \r\nZack Shada ... Young Liam (2 episodes, 2006-2007) \r\nTracy Middendorf ... Bonnie (2 episodes, 2007) \r\nTomiko Lee ... Mrs. Lee (2 episodes, 2005-2006) \r\nRuz Rusden ... Airport Cop (2 episodes, 2005) \r\nLana Parrilla ... Greta (2 episodes, 2007) \r\nDustin Geiger ... Matthew (2 episodes, 2006-2007) \r\nNick Jameson ... Richard Malkin (2 episodes, 2004-2006) \r\nTamara Taylor ... Susan Lloyd (2 episodes, 2005) \r\nJohn Shin ... Mr. Kwon / ... (2 episodes, 2005-2007) \r\nRon Bottitta ... Leonard Sims (2 episodes, 2005-2006) \r\nCraig Robert Young ... Bender / ... (2 episodes, 2006) \r\nGeoff Heise ... Doctor / ... (2 episodes, 2004) \r\nKiersten Havelock ... Emma (2 episodes, 2005-2007) \r\nSuzanne Turner ... Ticket Agent / ... (2 episodes, 2005) \r\nMickey Graue ... Zack (2 episodes, 2005-2007) \r\nMark Dillen Stitham ... Head Doctor / ... (2 episodes, 2004-2006) \r\nAaron Gold ... Jason McCormack (2 episodes, 2005-2006) \r\nMatt Moore ... Husband / ... (2 episodes, 2004-2005) \r\nMichael M. Vendrell ... Big Guy / ... (2 episodes, 2005-2006) \r\nGlenn Cannon ... Old Scooter Man / ... (2 episodes, 2004-2005) \r\nJulie Ow ... Nurse (2 episodes, 2005-2006) \r\nGreg Grunberg ... Pilot (2 episodes, 2004-2005) \r\nFaith Fay ... Survivior (2 episodes, 2004) ',0,'11',2,'2007-10-07 06:47:52',1000,1,'Jack Bender, Stephen Williams, Tucker Gates, Paul A. Edwards, Eric Laneuville, Kevin Hooks, Greg Yaitanes, J.J. Abrams, Karen Gaviola','J.J. Abrams, Jeffrey Lieber, Damon Lindelof, Carlton Cuse, Adam Horowitz, Edward Kitsis, Liz Sarnoff, Javier Grillo-Marxuach, Drew Goddard, Leonard Dick, Christina M. Kim, David Fury, Steven Maeda, Jeff Pinkner, Jennifer Johnson, Craig Wright','Michael Giacchino','PAL',''),(257,1,'Lost (Staffel 2) [OT: Lost (Season 2)]',2005,'1. Writing credits \r\nJ.J. Abrams (85 episodes, 2004-2008) \r\nJeffrey Lieber (85 episodes, 2004-2008) \r\nDamon Lindelof (85 episodes, 2004-2008) \r\nCarlton Cuse (18 episodes, 2005-2007) \r\nAdam Horowitz (10 episodes, 2005-2007) \r\nEdward Kitsis (10 episodes, 2005-2007) \r\nLiz Sarnoff (8 episodes, 2005-2007) \r\nJavier Grillo-Marxuach (7 episodes, 2004-2005) \r\nDrew Goddard (6 episodes, 2005-2007) \r\nLeonard Dick (6 episodes, 2005-2006) \r\nChristina M. Kim (5 episodes, 2006-2007) \r\nDavid Fury (4 episodes, 2004-2005) \r\nSteven Maeda (4 episodes, 2005-2006) \r\nJeff Pinkner (4 episodes, 2006-2007) \r\nJennifer Johnson (2 episodes, 2004-2005) \r\nCraig Wright (2 episodes, 2005) \r\n\r\n2. Cast\r\nNaveen Andrews ... Sayid Jarrah / ... (69 episodes, 2004-2007) \r\nEmilie de Ravin ... Claire Littleton / ... (69 episodes, 2004-2007) \r\nMatthew Fox ... Jack Shephard / ... (69 episodes, 2004-2007) \r\nJorge Garcia ... Hugo \'Hurley\' Reyes (69 episodes, 2004-2007) \r\nJosh Holloway ... James \'Sawyer\' Ford (69 episodes, 2004-2007) \r\nDaniel Dae Kim ... Jin Kwon (69 episodes, 2004-2007) \r\nYunjin Kim ... Sun Kwon (69 episodes, 2004-2007) \r\nEvangeline Lilly ... Kate Austen (69 episodes, 2004-2007) \r\nDominic Monaghan ... Charlie Pace (69 episodes, 2004-2007) \r\nTerry O\'Quinn ... John Locke (69 episodes, 2004-2007) \r\nHarold Perrineau ... Michael Dawson (47 episodes, 2004-2006) \r\nMaggie Grace ... Shannon Rutherford (33 episodes, 2004-2007) \r\nMichael Emerson ... Ben Linus / ... (30 episodes, 2006-2007) \r\nMalcolm David Kelley ... Walt Lloyd (29 episodes, 2004-2007) \r\nAdewale Akinnuoye-Agbaje ... Mr. Eko (28 episodes, 2005-2006) \r\nIan Somerhalder ... Boone Carlyle (28 episodes, 2004-2007) \r\nHenry Ian Cusick ... Desmond Hume (26 episodes, 2005-2007) \r\nMichelle Rodriguez ... Ana-Lucia Cortez (24 episodes, 2005-2006) \r\nMadison ... Vincent the Dog (24 episodes, 2004-2007) \r\nElizabeth Mitchell ... Juliet Burke (22 episodes, 2006-2007) \r\nCynthia Watros ... Libby (20 episodes, 2005-2006) \r\nM.C. Gainey ... Tom Friendly / ... (16 episodes, 2005-2007) \r\nKiele Sanchez ... Nikki Fernandez (14 episodes, 2006-2007) \r\nRodrigo Santoro ... Paulo (14 episodes, 2006-2007) \r\nMira Furlan ... Danielle Rousseau (13 episodes, 2004-2007) \r\nL. Scott Caldwell ... Rose (12 episodes, 2004-2007) \r\nSam Anderson ... Bernard / ... (11 episodes, 2005-2007) \r\nTania Raymonde ... Alex / ... (11 episodes, 2006-2007) \r\nKimberley Joseph ... Cindy Chandler (10 episodes, 2004-2007) \r\nChristian Bowman ... Steve Jenkins (10 episodes, 2004-2005) \r\nJohn Terry ... Dr. Christian Shephard / ... (9 episodes, 2004-2007) \r\nWilliam Mapother ... Ethan Rom (9 episodes, 2004-2007) \r\nFredric Lehne ... Marshal Edward Mars (8 episodes, 2004-2007) \r\nNestor Carbonell ... Richard Alpert (7 episodes, 2007) \r\nAndrew Divoff ... Mikhail Bakunin (7 episodes, 2006-2007) \r\nMichael Bowen ... Danny Pickett (7 episodes, 2006-2007) \r\nMarsha Thomason ... Naomi Dorrit (6 episodes, 2007) \r\nAndrea Gabriel ... Nadia (6 episodes, 2004-2007) \r\nBlake Bashoff ... Karl (5 episodes, 2006-2007) \r\nAriston Green ... Jason (5 episodes, 2006-2007) \r\nKevin Tighe ... Anthony Cooper (5 episodes, 2005-2007) \r\nJulie Bowen ... Sarah (5 episodes, 2005-2007) \r\nFrançois Chau ... Dr. Marvin Candle / ... (5 episodes, 2005-2007) \r\nBeth Broderick ... Diane Austen (4 episodes, 2005-2007) \r\nDaniel Roebuck ... Leslie Arzt (4 episodes, 2005-2007) \r\nSonya Walger ... Penny Widmore / ... (4 episodes, 2006-2007) \r\nKim Dickens ... Cassidy Phillips (3 episodes, 2006-2007) \r\nAdetokumboh M\'Cormack ... Yemi (3 episodes, 2006) \r\nBrett Cullen ... Goodwin (3 episodes, 2005-2007) \r\nTony Lee ... Jae Lee (3 episodes, 2005-2006) \r\nApril Grace ... Bea Klugh (3 episodes, 2006-2007) \r\nBilly Ray Gallion ... Randy / ... (3 episodes, 2004-2007) \r\nBrian Goodman ... Ryan Pryce (3 episodes, 2007) \r\nTeddy Wells ... Ivan / ... (3 episodes, 2006-2007) \r\nByron Chung ... Mr. Paik (3 episodes, 2005-2007) \r\nNeil Hopkins ... Liam / ... (3 episodes, 2004-2007) \r\nLillian Hurst ... Carmen Reyes (3 episodes, 2005-2007) \r\nJonathan Dixon ... Flight Attendant #2 / ... (3 episodes, 2004-2005) \r\nMichelle Arthur ... Flight Attendant #2 / ... (3 episodes, 2004-2005) \r\nJoah Buley ... Luke (3 episodes, 2006-2007) \r\nMeilinda Soerjoko ... Chrissy (3 episodes, 2004-2006) \r\nMichael Adamshick ... Lottery Official / ... (3 episodes, 2004-2005) \r\nBrittany Perrineau ... Lotto Girl / ... (3 episodes, 2005) \r\nClancy Brown ... Joe Inman / ... (2 episodes, 2006) \r\nKatey Sagal ... Helen (2 episodes, 2005-2006) \r\nRachel Ticotin ... Captain Teresa Cortez (2 episodes, 2005-2006) \r\nLindsey Ginter ... Sgt. Sam Austen (2 episodes, 2005-2006) \r\nGabrielle Fitzpatrick ... Lindsey (2 episodes, 2006-2007) \r\nAlan Dale ... Charles Widmore (2 episodes, 2006-2007) \r\nKatie Doyle ... EMT / ... (2 episodes, 2005-2007) \r\nRobin Weigert ... Rachel (2 episodes, 2007) \r\nPaula Malcomson ... Colleen Pickett (2 episodes, 2006) \r\nKolawole Obileye Jr. ... Young Eko (2 episodes, 2006) \r\nWendy Braun ... Gina (2 episodes, 2005) \r\nLawrence Jones ... Lead Soldier / ... (2 episodes, 2006) \r\nDavid Ely ... Intern (2 episodes, 2005) \r\nJeremy Shada ... Young Charlie (2 episodes, 2006-2007) \r\nOlekan Obileye ... Young Yemi (2 episodes, 2006) \r\nRobert Frederick ... Jeff (2 episodes, 2005) \r\nZack Shada ... Young Liam (2 episodes, 2006-2007) \r\nTracy Middendorf ... Bonnie (2 episodes, 2007) \r\nTomiko Lee ... Mrs. Lee (2 episodes, 2005-2006) \r\nRuz Rusden ... Airport Cop (2 episodes, 2005) \r\nLana Parrilla ... Greta (2 episodes, 2007) \r\nDustin Geiger ... Matthew (2 episodes, 2006-2007) \r\nNick Jameson ... Richard Malkin (2 episodes, 2004-2006) \r\nTamara Taylor ... Susan Lloyd (2 episodes, 2005) \r\nJohn Shin ... Mr. Kwon / ... (2 episodes, 2005-2007) \r\nRon Bottitta ... Leonard Sims (2 episodes, 2005-2006) \r\nCraig Robert Young ... Bender / ... (2 episodes, 2006) \r\nGeoff Heise ... Doctor / ... (2 episodes, 2004) \r\nKiersten Havelock ... Emma (2 episodes, 2005-2007) \r\nSuzanne Turner ... Ticket Agent / ... (2 episodes, 2005) \r\nMickey Graue ... Zack (2 episodes, 2005-2007) \r\nMark Dillen Stitham ... Head Doctor / ... (2 episodes, 2004-2006) \r\nAaron Gold ... Jason McCormack (2 episodes, 2005-2006) \r\nMatt Moore ... Husband / ... (2 episodes, 2004-2005) \r\nMichael M. Vendrell ... Big Guy / ... (2 episodes, 2005-2006) \r\nGlenn Cannon ... Old Scooter Man / ... (2 episodes, 2004-2005) \r\nJulie Ow ... Nurse (2 episodes, 2005-2006) \r\nGreg Grunberg ... Pilot (2 episodes, 2004-2005) \r\nFaith Fay ... Survivior (2 episodes, 2004) ',0,'11',2,'2007-10-07 07:04:16',1000,1,'Jack Bender, Stephen Williams, Tucker Gates, Paul A. Edwards, Eric Laneuville, Kevin Hooks, Greg Yaitanes, J.J. Abrams, Karen Gaviola','J.J. Abrams, Jeffrey Lieber, Damon Lindelof, Carlton Cuse, Adam Horowitz, Edward Kitsis, Liz Sarnoff, Javier Grillo-Marxuach, Drew Goddard, Leonard Dick, Christina M. Kim, David Fury, Steven Maeda, Jeff Pinkner, Jennifer Johnson, Craig Wright','Michael Giacchino','PAL',''),(258,1,'Lost (Staffel 3) [OT: Lost (Season 3)]',2006,'1. Writing credits \r\nJ.J. Abrams (85 episodes, 2004-2008) \r\nJeffrey Lieber (85 episodes, 2004-2008) \r\nDamon Lindelof (85 episodes, 2004-2008) \r\nCarlton Cuse (18 episodes, 2005-2007) \r\nAdam Horowitz (10 episodes, 2005-2007) \r\nEdward Kitsis (10 episodes, 2005-2007) \r\nLiz Sarnoff (8 episodes, 2005-2007) \r\nJavier Grillo-Marxuach (7 episodes, 2004-2005) \r\nDrew Goddard (6 episodes, 2005-2007) \r\nLeonard Dick (6 episodes, 2005-2006) \r\nChristina M. Kim (5 episodes, 2006-2007) \r\nDavid Fury (4 episodes, 2004-2005) \r\nSteven Maeda (4 episodes, 2005-2006) \r\nJeff Pinkner (4 episodes, 2006-2007) \r\nJennifer Johnson (2 episodes, 2004-2005) \r\nCraig Wright (2 episodes, 2005) \r\n\r\n2. Cast\r\nNaveen Andrews ... Sayid Jarrah / ... (69 episodes, 2004-2007) \r\nEmilie de Ravin ... Claire Littleton / ... (69 episodes, 2004-2007) \r\nMatthew Fox ... Jack Shephard / ... (69 episodes, 2004-2007) \r\nJorge Garcia ... Hugo \'Hurley\' Reyes (69 episodes, 2004-2007) \r\nJosh Holloway ... James \'Sawyer\' Ford (69 episodes, 2004-2007) \r\nDaniel Dae Kim ... Jin Kwon (69 episodes, 2004-2007) \r\nYunjin Kim ... Sun Kwon (69 episodes, 2004-2007) \r\nEvangeline Lilly ... Kate Austen (69 episodes, 2004-2007) \r\nDominic Monaghan ... Charlie Pace (69 episodes, 2004-2007) \r\nTerry O\'Quinn ... John Locke (69 episodes, 2004-2007) \r\nHarold Perrineau ... Michael Dawson (47 episodes, 2004-2006) \r\nMaggie Grace ... Shannon Rutherford (33 episodes, 2004-2007) \r\nMichael Emerson ... Ben Linus / ... (30 episodes, 2006-2007) \r\nMalcolm David Kelley ... Walt Lloyd (29 episodes, 2004-2007) \r\nAdewale Akinnuoye-Agbaje ... Mr. Eko (28 episodes, 2005-2006) \r\nIan Somerhalder ... Boone Carlyle (28 episodes, 2004-2007) \r\nHenry Ian Cusick ... Desmond Hume (26 episodes, 2005-2007) \r\nMichelle Rodriguez ... Ana-Lucia Cortez (24 episodes, 2005-2006) \r\nMadison ... Vincent the Dog (24 episodes, 2004-2007) \r\nElizabeth Mitchell ... Juliet Burke (22 episodes, 2006-2007) \r\nCynthia Watros ... Libby (20 episodes, 2005-2006) \r\nM.C. Gainey ... Tom Friendly / ... (16 episodes, 2005-2007) \r\nKiele Sanchez ... Nikki Fernandez (14 episodes, 2006-2007) \r\nRodrigo Santoro ... Paulo (14 episodes, 2006-2007) \r\nMira Furlan ... Danielle Rousseau (13 episodes, 2004-2007) \r\nL. Scott Caldwell ... Rose (12 episodes, 2004-2007) \r\nSam Anderson ... Bernard / ... (11 episodes, 2005-2007) \r\nTania Raymonde ... Alex / ... (11 episodes, 2006-2007) \r\nKimberley Joseph ... Cindy Chandler (10 episodes, 2004-2007) \r\nChristian Bowman ... Steve Jenkins (10 episodes, 2004-2005) \r\nJohn Terry ... Dr. Christian Shephard / ... (9 episodes, 2004-2007) \r\nWilliam Mapother ... Ethan Rom (9 episodes, 2004-2007) \r\nFredric Lehne ... Marshal Edward Mars (8 episodes, 2004-2007) \r\nNestor Carbonell ... Richard Alpert (7 episodes, 2007) \r\nAndrew Divoff ... Mikhail Bakunin (7 episodes, 2006-2007) \r\nMichael Bowen ... Danny Pickett (7 episodes, 2006-2007) \r\nMarsha Thomason ... Naomi Dorrit (6 episodes, 2007) \r\nAndrea Gabriel ... Nadia (6 episodes, 2004-2007) \r\nBlake Bashoff ... Karl (5 episodes, 2006-2007) \r\nAriston Green ... Jason (5 episodes, 2006-2007) \r\nKevin Tighe ... Anthony Cooper (5 episodes, 2005-2007) \r\nJulie Bowen ... Sarah (5 episodes, 2005-2007) \r\nFrançois Chau ... Dr. Marvin Candle / ... (5 episodes, 2005-2007) \r\nBeth Broderick ... Diane Austen (4 episodes, 2005-2007) \r\nDaniel Roebuck ... Leslie Arzt (4 episodes, 2005-2007) \r\nSonya Walger ... Penny Widmore / ... (4 episodes, 2006-2007) \r\nKim Dickens ... Cassidy Phillips (3 episodes, 2006-2007) \r\nAdetokumboh M\'Cormack ... Yemi (3 episodes, 2006) \r\nBrett Cullen ... Goodwin (3 episodes, 2005-2007) \r\nTony Lee ... Jae Lee (3 episodes, 2005-2006) \r\nApril Grace ... Bea Klugh (3 episodes, 2006-2007) \r\nBilly Ray Gallion ... Randy / ... (3 episodes, 2004-2007) \r\nBrian Goodman ... Ryan Pryce (3 episodes, 2007) \r\nTeddy Wells ... Ivan / ... (3 episodes, 2006-2007) \r\nByron Chung ... Mr. Paik (3 episodes, 2005-2007) \r\nNeil Hopkins ... Liam / ... (3 episodes, 2004-2007) \r\nLillian Hurst ... Carmen Reyes (3 episodes, 2005-2007) \r\nJonathan Dixon ... Flight Attendant #2 / ... (3 episodes, 2004-2005) \r\nMichelle Arthur ... Flight Attendant #2 / ... (3 episodes, 2004-2005) \r\nJoah Buley ... Luke (3 episodes, 2006-2007) \r\nMeilinda Soerjoko ... Chrissy (3 episodes, 2004-2006) \r\nMichael Adamshick ... Lottery Official / ... (3 episodes, 2004-2005) \r\nBrittany Perrineau ... Lotto Girl / ... (3 episodes, 2005) \r\nClancy Brown ... Joe Inman / ... (2 episodes, 2006) \r\nKatey Sagal ... Helen (2 episodes, 2005-2006) \r\nRachel Ticotin ... Captain Teresa Cortez (2 episodes, 2005-2006) \r\nLindsey Ginter ... Sgt. Sam Austen (2 episodes, 2005-2006) \r\nGabrielle Fitzpatrick ... Lindsey (2 episodes, 2006-2007) \r\nAlan Dale ... Charles Widmore (2 episodes, 2006-2007) \r\nKatie Doyle ... EMT / ... (2 episodes, 2005-2007) \r\nRobin Weigert ... Rachel (2 episodes, 2007) \r\nPaula Malcomson ... Colleen Pickett (2 episodes, 2006) \r\nKolawole Obileye Jr. ... Young Eko (2 episodes, 2006) \r\nWendy Braun ... Gina (2 episodes, 2005) \r\nLawrence Jones ... Lead Soldier / ... (2 episodes, 2006) \r\nDavid Ely ... Intern (2 episodes, 2005) \r\nJeremy Shada ... Young Charlie (2 episodes, 2006-2007) \r\nOlekan Obileye ... Young Yemi (2 episodes, 2006) \r\nRobert Frederick ... Jeff (2 episodes, 2005) \r\nZack Shada ... Young Liam (2 episodes, 2006-2007) \r\nTracy Middendorf ... Bonnie (2 episodes, 2007) \r\nTomiko Lee ... Mrs. Lee (2 episodes, 2005-2006) \r\nRuz Rusden ... Airport Cop (2 episodes, 2005) \r\nLana Parrilla ... Greta (2 episodes, 2007) \r\nDustin Geiger ... Matthew (2 episodes, 2006-2007) \r\nNick Jameson ... Richard Malkin (2 episodes, 2004-2006) \r\nTamara Taylor ... Susan Lloyd (2 episodes, 2005) \r\nJohn Shin ... Mr. Kwon / ... (2 episodes, 2005-2007) \r\nRon Bottitta ... Leonard Sims (2 episodes, 2005-2006) \r\nCraig Robert Young ... Bender / ... (2 episodes, 2006) \r\nGeoff Heise ... Doctor / ... (2 episodes, 2004) \r\nKiersten Havelock ... Emma (2 episodes, 2005-2007) \r\nSuzanne Turner ... Ticket Agent / ... (2 episodes, 2005) \r\nMickey Graue ... Zack (2 episodes, 2005-2007) \r\nMark Dillen Stitham ... Head Doctor / ... (2 episodes, 2004-2006) \r\nAaron Gold ... Jason McCormack (2 episodes, 2005-2006) \r\nMatt Moore ... Husband / ... (2 episodes, 2004-2005) \r\nMichael M. Vendrell ... Big Guy / ... (2 episodes, 2005-2006) \r\nGlenn Cannon ... Old Scooter Man / ... (2 episodes, 2004-2005) \r\nJulie Ow ... Nurse (2 episodes, 2005-2006) \r\nGreg Grunberg ... Pilot (2 episodes, 2004-2005) \r\nFaith Fay ... Survivior (2 episodes, 2004) ',0,'11',2,'2007-10-07 07:07:15',1000,1,'Jack Bender, Stephen Williams, Tucker Gates, Paul A. Edwards, Eric Laneuville, Kevin Hooks, Greg Yaitanes, J.J. Abrams, Karen Gaviola','J.J. Abrams, Jeffrey Lieber, Damon Lindelof, Carlton Cuse, Adam Horowitz, Edward Kitsis, Liz Sarnoff, Javier Grillo-Marxuach, Drew Goddard, Leonard Dick, Christina M. Kim, David Fury, Steven Maeda, Jeff Pinkner, Jennifer Johnson, Craig Wright','Michael Giacchino','PAL',''),(259,1,'Paradise Now [OT: Paradise Now]',2005,'1. Writing credits\r\n(in alphabetical order) \r\nHany Abu-Assad writer \r\nBero Beyer writer \r\nPierre Hodgson writer \r\n\r\n2. Cast (in credits order) complete, awaiting verification\r\nLubna Azabal ... Suha \r\nHamza Abu-Aiaash ... Checkpoint Soldier \r\nKais Nashif ... Said \r\nLotuf Neusser ... Car Owner \r\nAli Suliman ... Khaled \r\nMohammad Bustami ... Abu-Salim \r\nAhmad Fares ... Tea Boy \r\nWaleed On-Allah ... Taxidriver Suha \r\nAsaad Dwikat ... Shawarma Shop Owner \r\nImad Saber ... Shawarma Customer \r\nMohammad Kosa ... Photographer \r\nAmer Hlehel ... Jamal \r\nHiam Abbass ... Said\'s Mother \r\nNour Abd El-Hadi ... Said\'s Sister \r\nAmjad Al-Imlah ... Said\'s Brother \r\nDina Titi ... Khaled\'s Sister \r\nYosef Abo Dheir ... Khaled\'s Father \r\nSadi El-Masri ... Khaled\'s Attendant \r\nHana Sha\'alan ... Khaled\'s Mother \r\nNabeel Shaheen ... Video Camera Man \r\nAyman Swedan ... Barber \r\nJamal Shaheen ... Explosive Maker \r\nHafez Mueen ... Explosive Attacher \r\nJamil Sawalmeh ... Guard 1 \r\nDeya Deen Hamaideh ... Guard 2 \r\nThabet Abu-Zarour ... Guard 3 \r\nAshraf Barhom ... Abu-Karem (as Ashraf Barhoum) \r\nBassam Al-Nubani ... Fighter 1 \r\nMohammad Kaskas ... Fighter 2 \r\nNabeeh Jum\'a ... Fighter 3 \r\nMohammad Arabbas ... Fighter 4 \r\nSaed Mayaleh ... Fighter 5 \r\nDirar Suleiman ... Taxidriver Said (as Derar Suliman) \r\nMohammad Jibreel ... Van Driver \r\nWagde Ode ... Jamal\'s Assistant \r\nTha\'er Abu-Zarour ... Shawarma Customer \r\nOlivier Meidinger ... Abu-Shabaab \r\nSalwa Ibrahim ... Khaled\'s Mother \r\nAbd Elrahman Thaher ... Mechanic \r\nJamel Daher ... Car Owner (voice) (as Jamal Daher)\r\n\r\n3.Original Music by \r\nJina Sumedi ',0,'2',2,'2008-07-31 06:38:32',90,1,'Hany Abu-Assad','Hany Abu-Assad, Bero Beyer, Pierre Hodgson','Jina Sumedi','PAL - Anamorph Widescreen (2,40:1)','Audio: German (DD5.1, DTS 5.1), Arabic (DD 5.1) - Subtitles: German'),(260,1,'Little Miss Sunshine [OT: Little Miss Sunshine]',2006,'1 Writing credits (WGA) \r\nMichael Arndt (written by)\r\n\r\n2. Cast (in credits order) complete, awaiting verification\r\nAbigail Breslin ... Olive Hoover \r\nGreg Kinnear ... Richard Hoover \r\nPaul Dano ... Dwayne \r\nAlan Arkin ... Grandpa Edwin Hoover \r\nToni Collette ... Sheryl Hoover \r\nSteve Carell ... Frank Ginsberg \r\nMarc Turtletaub ... Doctor #1 \r\nJill Talley ... Cindy \r\nBrenda Canela ... Diner Waitress \r\nJulio Oscar Mechoso ... Mechanic \r\nChuck Loring ... Convenience Store Proprietor \r\nJustin Shilton ... Josh \r\nGordon Thomson ... Larry Sugarman \r\nSteven Christopher Parker ... Teen Boy #1 \r\nBryan Cranston ... Stan Grossman \r\nJohn Walcutt ... Doctor #2 \r\nPaula Newsome ... Linda \r\nDean Norris ... State Trooper McCleary \r\nBeth Grant ... Pageant Official Jenkins \r\nWallace Langham ... Kirby \r\nLauren Shiohama ... Miss California \r\nMary Lynn Rajskub ... Pageant Assistant Pam \r\nJerry Giles ... Funeral Home Worker \r\nGeoff Meed ... Biker Dad \r\nMatt Winston ... Pageant MC \r\nJoan Scheckel ... Judge \r\nCasandra Ashe ... Girl in Hallway \r\nMel Rodriguez ... Officer Martinez \r\nAlexandria Alaman ... Pageant Contestant \r\nAlissa Anderegg ... Pageant Contestant \r\nBrittany Baird ... Pageant Contestant \r\nCambria Baird ... Pageant Contestant \r\nBrenae Bandy ... Pageant Contestant \r\nKristen Holaas ... Pageant Contestant \r\nMaliah Hudson ... Pageant Contestant \r\nDestry Jacobs ... Pageant Contestant \r\nLindsey Jordan ... Pageant Contestant \r\nShane Murphy ... Pageant Contestant \r\nAnnabelle Roberts ... Pageant Contestant \r\nSydni Stevenson-Love ... Pageant Contestant \r\nNicole Stoehr ... Pageant Contestant \r\nLauren Yee ... Pageant Contestant \r\nrest of cast listed alphabetically: \r\nErik David ... Photographer (uncredited) \r\nTara Dawn Holland ... Herself (archive footage) (uncredited) \r\nKsenia Jarova ... Pretty Girl (uncredited) \r\nRobert O\'Connor ... Pageant Judge #1 (uncredited) \r\nRegis Philbin ... Himself (voice) (uncredited) \r\nMatthew W. Tate ... Funeral Worker #2 (uncredited) \r\n\r\n3. Original Music by \r\nMychael Danna \r\nDeVotchKa',0,'5',2,'2008-07-31 06:49:00',99,1,'Jonathan Dayton, Valerie Faris','Valerie Faris','Mychael Danna, DeVotchKa','PAL - Anamorph Widescreen (2.40:1)','Audio: German (DD 5.1), English (DD 5.1) - Subtitles: German, English, Turkish'),(261,1,'Liebe mich [OT: Lie With Me]',2005,'1. Writing credits (in alphabetical order) \r\nTamara Berger novel \r\nTamara Berger screenplay \r\nClément Virgo screenplay \r\n\r\n2. Cast (in credits order) \r\nLauren Lee Smith ... Leila \r\nEric Balfour ... David \r\nPolly Shannon ... Victoria \r\nMayko Nguyen ... Kika \r\nMichael Facciolo ... Shy Guy \r\nKate Lynch ... Marla \r\nRon White ... Ben \r\nKristin Lehman ... Rachel \r\nDon Francks ... Joshua \r\nRichard Chevolleau ... Vigorous \r\nFrank Chiesurin ... Joel \r\nNicola Lipman ... Rabbi \r\nTheresa Tova ... Russian Wedding Singer',0,'16',2,'2008-07-31 06:56:24',92,1,'Clément Virgo','Tamara Berger (novel), Tamara Berger (screenplay), Clément Virgo (screenplay)','Byron Wong','PAL - Anamorph Widescreen (1.78:1)','Audio: German (DD 2.0), German (DD 5.1)'),(262,1,'No Direction Home [OT: No Direction Home]',2005,'1. Cast (in credits order) \r\nBob Dylan ... Himself \r\nB.J. Rolfzen ... Himself (voice) \r\nDick Kangas ... Himself \r\nLiam Clancy ... Himself \r\nTony Glover ... Himself \r\nPaul Nelson ... Himself \r\nAllen Ginsberg ... Himself (archive footage) \r\nDave Van Ronk ... Himself (archive footage) \r\nMaria Muldaur ... Herself \r\nJohn Cohen ... Himself \r\nBruce Langhorne ... Himself \r\nMark Spoelstra ... Himself \r\nSuze Rotolo ... Herself \r\nIzzy Young ... Himself \r\nMitch Miller ... Himself \r\nJohn Hammond ... Himself \r\nPete Seeger ... Himself \r\nMavis Staples ... Herself \r\nArtie Mogull ... Himself \r\nHarold Leventhal ... Himself \r\nJoan Baez ... Herself \r\nPeter Yarrow ... Himself \r\nBob Neuwirth ... Himself (as Bobby Neuwirth) \r\nD.A. Pennebaker ... Himself \r\nAl Kooper ... Himself \r\nBob Johnston ... Himself \r\nMickey Jones ... Himself \r\nrest of cast listed alphabetically: \r\nJohnny Cash ... Himself (archive footage) \r\nRick Danko ... Himself (archive footage) \r\nOssie Davis ... Himself (archive footage) \r\nLamar Fike ... Himself \r\nWoody Guthrie ... Himself (archive footage) \r\nCarolyn Hester ... Herself \r\nGarth Hudson ... Himself (archive footage) \r\nJohn F. Kennedy ... Himself (archive footage) \r\nMartin Luther King ... Himself (archive footage) \r\nRichard Manuel ... Himself (archive footage) \r\nGreil Marcus ... Himself \r\nChristopher Ricks ... Himself \r\nRobbie Robertson ... Himself (archive footage) \r\nManny Roth ... Himself \r\nRoy Silver ... Himself \r\nSean Wilentz ... Himself \r\nMartin Scorsese ... Himself (voice) (uncredited)',0,'24',2,'2008-07-31 07:03:03',204,1,'Martin Scorsese','Martin Scorsese','Bob Dylan','PAL - Full Frame','Audio: English (5.1) - Subtitles: English, German, ...'),(263,1,'Kottan ermittelt (Akte 1 - Fall 1-8)',1976,'1. Series Directed by \r\nPeter Patzak (11 episodes, 1976-1983) \r\n \r\n2. Series Writing credits \r\nHelmut Zenker (11 episodes, 1976-1983) \r\n\r\n3. Series Cast\r\nWalter Davy ... Paul Schremser (19 episodes, 1976-1983) \r\nCurt A. Tichy ... Alfred Schrammel (19 episodes, 1976-1983) \r\nBibiane Zeller ... Ilse Kottan (18 episodes, 1977-1983) \r\nChris Lohner ... TV speaker (18 episodes, 1976-1983) \r\nCarlo Böhm ... Drballa / ... (15 episodes, 1978-1983) \r\nLukas Resetarits ... Maj. Adolf Kottan III. (14 episodes, 1980-1983) \r\nFranz Suhrada ... Policeman Fritz Schreyvogel / ... (14 episodes, 1978-1983) \r\nKurt Weinzierl ... Polizeipräsident Heribert Pilch / ... (13 episodes, 1981-1983) \r\nErnst Konarek ... Horrak / ... (12 episodes, 1979-1983) \r\nGusti Wolf ... Kottan\'s mother / ... (11 episodes, 1981-1983) \r\nPeter Patzak ... Policeman / ... (11 episodes, 1976-1983) \r\nFlorian Böhm ... Walter Kottan (10 episodes, 1978-1983) \r\nMichaela Mock ... Polizeiärztin (8 episodes, 1981-1983) \r\nRudolf Knor ... Gerhard Bösmüller / ... (6 episodes, 1977-1983) \r\nEva Kerbler ... Elvira Markl (6 episodes, 1983) \r\nBirgit Machalissa ... Sissy Kottan (5 episodes, 1977-1980) \r\nFranz Buchrieser ... Maj. Adolf Kottan II. / ... (5 episodes, 1977-1983) \r\nAndrás Gönczöl ... Casino-Rezeptionist / ... (5 episodes, 1978-1983) \r\nHarald von Koeppelle ... Obst.Lt. Heribert Pilch / ... (4 episodes, 1978-1980) \r\nHans Kraemer ... 1. Tankstellenkunde / ... (4 episodes, 1978-1982) \r\nFranz Cenek ... Polizist / ... (4 episodes, 1976-1982) \r\nChristiane Rücker ... Elvira Markl / ... (4 episodes, 1978-1983) \r\nHans Pemmer ... Wasservogel Junior (4 episodes, 1983) \r\nPeter Vogel ... Maj. Adolf Kottan / ... (3 episodes, 1976-1978) \r\nLinda Koch ... Polizeiärztin / ... (3 episodes, 1976-1978) \r\nIrene Kargl ... Domnanovich (3 episodes, 1976-1978) \r\nLuise Prasser ... Anni Schwab / ... (3 episodes, 1976-1983) \r\nMaria Bill ... Frau Weller / ... (3 episodes, 1980-1982) \r\nErni Mangold ... Hausbesitzerin / ... (3 episodes, 1977-1983) \r\nMichael Buchgerber ... Male prostitute / ... (3 episodes, 1982-1983) \r\nLeon Askin ... Rudolf Wasservogel (3 episodes, 1983) \r\nAdi Lehner ... Briefträger / ... (3 episodes, 1979-1983) \r\nHeidi Melinc ... Prostituierte - Leopard (3 episodes, 1982-1983) \r\nWalter Maitz (3 episodes, 1982-1983) \r\nFerdinand Kaup ... Journalist in press conference (3 episodes, 1983) \r\nKonrad Becker ... Harald Eppler / ... (2 episodes, 1978-1983) \r\nMaria Engelstorfer ... Ernestine Kucharik / ... (2 episodes, 1976-1979) \r\nMichael Schottenberg ... Albert Zartl / ... (2 episodes, 1977-1980) \r\nMaria Martina ... Helga Petrasch / ... (2 episodes, 1979-1983) \r\nHanno Pöschl ... Beschina / ... (2 episodes, 1977-1982) \r\nMargit Gara ... ältere Prostituierte (2 episodes, 1978-1983) \r\nBeatrice Frey ... Polizeiärztin (2 episodes, 1979-1980) \r\nEddie Constantine ... Lemmy Caution (2 episodes, 1983) \r\nHans-Georg Nenning ... Merkel (2 episodes, 1981-1983) \r\nHeinrich Starhemberg ... Harry Lime jr. (2 episodes, 1982-1983) \r\nHeinrich Strobele ... Gramanics / ... (2 episodes, 1976-1982) \r\nErhardt Koren ... Rennbahn-Wirt / ... (2 episodes, 1979-1982) \r\nUlf Dieter Kusdas ... Erkennungsdienstbeamter / ... (2 episodes, 1980-1983) \r\nKitty Buchhammer ... Briefträger / ... (2 episodes, 1983) \r\nElisabeth Stiepl ... Postbeamtin / ... (2 episodes, 1980-1982) \r\nMichael von Wolkenstein ... Pfarrer / ... (2 episodes, 1976-1977) \r\nHeinz Wanitschek ... 1. Schläger / ... (2 episodes, 1978-1979) \r\nFranz Blauensteiner ... 2. Schläger / ... (2 episodes, 1978-1979) \r\nGünther Schifter ... Himself (narrator) / ... (2 episodes, 1979-1983) \r\nGünther Panak ... Wasservogel\'s Gangster (2 episodes, 1983) \r\nReinhard Reiner ... Wasservogel\'s Gangster (2 episodes, 1983) \r\nSiegi Ganswohl ... Autokauf-Interessent (2 episodes, 1979-1983) \r\nFranz Gary ... Fotograf / ... (2 episodes, 1980-1982) \r\nWilli Neuner (2 episodes, 1982-1983) \r\nEmanuel Schmied ... Nightclubkellner (2 episodes, 1982-1983)',0,'25',2,'2008-07-31 07:10:13',728,1,'Peter Patzak','Helmut Zenker','Various','PAL - 1,3:1 (4:3)','Audio: German'),(264,1,'Kottan ermittelt (Akte 2 - Fall 9-19)',1976,'1. Series Directed by \r\nPeter Patzak (11 episodes, 1976-1983) \r\n \r\n2. Series Writing credits \r\nHelmut Zenker (11 episodes, 1976-1983) \r\n\r\n3. Series Cast\r\nWalter Davy ... Paul Schremser (19 episodes, 1976-1983) \r\nCurt A. Tichy ... Alfred Schrammel (19 episodes, 1976-1983) \r\nBibiane Zeller ... Ilse Kottan (18 episodes, 1977-1983) \r\nChris Lohner ... TV speaker (18 episodes, 1976-1983) \r\nCarlo Böhm ... Drballa / ... (15 episodes, 1978-1983) \r\nLukas Resetarits ... Maj. Adolf Kottan III. (14 episodes, 1980-1983) \r\nFranz Suhrada ... Policeman Fritz Schreyvogel / ... (14 episodes, 1978-1983) \r\nKurt Weinzierl ... Polizeipräsident Heribert Pilch / ... (13 episodes, 1981-1983) \r\nErnst Konarek ... Horrak / ... (12 episodes, 1979-1983) \r\nGusti Wolf ... Kottan\'s mother / ... (11 episodes, 1981-1983) \r\nPeter Patzak ... Policeman / ... (11 episodes, 1976-1983) \r\nFlorian Böhm ... Walter Kottan (10 episodes, 1978-1983) \r\nMichaela Mock ... Polizeiärztin (8 episodes, 1981-1983) \r\nRudolf Knor ... Gerhard Bösmüller / ... (6 episodes, 1977-1983) \r\nEva Kerbler ... Elvira Markl (6 episodes, 1983) \r\nBirgit Machalissa ... Sissy Kottan (5 episodes, 1977-1980) \r\nFranz Buchrieser ... Maj. Adolf Kottan II. / ... (5 episodes, 1977-1983) \r\nAndrás Gönczöl ... Casino-Rezeptionist / ... (5 episodes, 1978-1983) \r\nHarald von Koeppelle ... Obst.Lt. Heribert Pilch / ... (4 episodes, 1978-1980) \r\nHans Kraemer ... 1. Tankstellenkunde / ... (4 episodes, 1978-1982) \r\nFranz Cenek ... Polizist / ... (4 episodes, 1976-1982) \r\nChristiane Rücker ... Elvira Markl / ... (4 episodes, 1978-1983) \r\nHans Pemmer ... Wasservogel Junior (4 episodes, 1983) \r\nPeter Vogel ... Maj. Adolf Kottan / ... (3 episodes, 1976-1978) \r\nLinda Koch ... Polizeiärztin / ... (3 episodes, 1976-1978) \r\nIrene Kargl ... Domnanovich (3 episodes, 1976-1978) \r\nLuise Prasser ... Anni Schwab / ... (3 episodes, 1976-1983) \r\nMaria Bill ... Frau Weller / ... (3 episodes, 1980-1982) \r\nErni Mangold ... Hausbesitzerin / ... (3 episodes, 1977-1983) \r\nMichael Buchgerber ... Male prostitute / ... (3 episodes, 1982-1983) \r\nLeon Askin ... Rudolf Wasservogel (3 episodes, 1983) \r\nAdi Lehner ... Briefträger / ... (3 episodes, 1979-1983) \r\nHeidi Melinc ... Prostituierte - Leopard (3 episodes, 1982-1983) \r\nWalter Maitz (3 episodes, 1982-1983) \r\nFerdinand Kaup ... Journalist in press conference (3 episodes, 1983) \r\nKonrad Becker ... Harald Eppler / ... (2 episodes, 1978-1983) \r\nMaria Engelstorfer ... Ernestine Kucharik / ... (2 episodes, 1976-1979) \r\nMichael Schottenberg ... Albert Zartl / ... (2 episodes, 1977-1980) \r\nMaria Martina ... Helga Petrasch / ... (2 episodes, 1979-1983) \r\nHanno Pöschl ... Beschina / ... (2 episodes, 1977-1982) \r\nMargit Gara ... ältere Prostituierte (2 episodes, 1978-1983) \r\nBeatrice Frey ... Polizeiärztin (2 episodes, 1979-1980) \r\nEddie Constantine ... Lemmy Caution (2 episodes, 1983) \r\nHans-Georg Nenning ... Merkel (2 episodes, 1981-1983) \r\nHeinrich Starhemberg ... Harry Lime jr. (2 episodes, 1982-1983) \r\nHeinrich Strobele ... Gramanics / ... (2 episodes, 1976-1982) \r\nErhardt Koren ... Rennbahn-Wirt / ... (2 episodes, 1979-1982) \r\nUlf Dieter Kusdas ... Erkennungsdienstbeamter / ... (2 episodes, 1980-1983) \r\nKitty Buchhammer ... Briefträger / ... (2 episodes, 1983) \r\nElisabeth Stiepl ... Postbeamtin / ... (2 episodes, 1980-1982) \r\nMichael von Wolkenstein ... Pfarrer / ... (2 episodes, 1976-1977) \r\nHeinz Wanitschek ... 1. Schläger / ... (2 episodes, 1978-1979) \r\nFranz Blauensteiner ... 2. Schläger / ... (2 episodes, 1978-1979) \r\nGünther Schifter ... Himself (narrator) / ... (2 episodes, 1979-1983) \r\nGünther Panak ... Wasservogel\'s Gangster (2 episodes, 1983) \r\nReinhard Reiner ... Wasservogel\'s Gangster (2 episodes, 1983) \r\nSiegi Ganswohl ... Autokauf-Interessent (2 episodes, 1979-1983) \r\nFranz Gary ... Fotograf / ... (2 episodes, 1980-1982) \r\nWilli Neuner (2 episodes, 1982-1983) \r\nEmanuel Schmied ... Nightclubkellner (2 episodes, 1982-1983)',0,'25',2,'2008-07-31 07:13:07',777,1,'Peter Patzak','Helmut Zenker','Various','PAL - 1.33:1 (4:3)','Audio: German'),(265,1,'Kottan ermittelt - Den Tüchtigen gehört die Welt',1982,'1. Writing credits (in alphabetical order) \r\nPeter Patzak writer \r\nHelmut Zenker writer \r\n\r\n2. Cast (in credits order) \r\nBibiane Zeller ... Dr. Herta Aichinger \r\nErnst Konarek ... Dipl. Ing. Wolfgang Bleiner \r\nFred Schaffer ... Bezirksvorsteher Erwin Sommer \r\nPavel Landovský ... Jakob Kralicek \r\nFranz Buchrieser ... Maj. Adolf Kottan \r\nWalter Davy ... Paul Schremser \r\nPeter Neubauer ... Schrammel \r\nFrank Gorshin ... Harry Werner, alias Nash \r\nLukas Resetarits ... Ludwig Haumer \r\nNigel Davenport ... Pigel \r\nLiliana Nelska ... Erna Kovarik \r\nMaria Bill ... Elfi Kahlbeck \r\nBroderick Crawford ... Mike Carrady \r\nJoey Forman ... Eddie Owen \r\nHeinz Petters ... Genner \r\nHeinrich Strobele ... Hofrat Prager \r\nErhardt Koren ... Jerabek \r\nMichael Schottenberg ... Kripo \r\nAlfred Reiterer ... Kriminalbeamter \r\nMichaela Mock ... Polizeiärztin \r\nKlaus Uhlich ... Polizist \r\nOtto Tausig ... Kramml - Gemüsehändler \r\nLuise Prasser ... Hausmeisterin \r\nFranz Gary ... Mann im Steireranzug \r\nHans-Georg Nenning ... Sexshopverkäufer (as Georg Nenning) \r\nErni Mangold ... Wirtin \r\nHans Kraemer ... Oberkellner \r\nHeidi Melinc ... Stewardess \r\nBrigitte Slezak ... Leihwagenangestellte \r\nDieter Seefranz ... TV Sprecher \r\nKäthe Kratz ... Journalistin (as Kathi Kratz) \r\nDieter Berner ... Journalist \r\nAlfred Worm ... Journalist \r\nGerhard Swoboda ... Weigl - ein Freier \r\nEdith Kreuzberger ... Ilona \r\nLois Lang ... Gerald Martin Wiesinger \r\nImbert Kops ... Novotny \r\nPeter Turrini ... Passant mit 2 kleinen Hunden \r\nHanno Pöschl ... Mann bei Frau Kahlbeck \r\nrest of cast listed alphabetically: \r\nChris Lohner ... Fernsehsprecherin (uncredited) \r\nPeter Patzak ... Pilot (uncredited) \r\nFranz Suhrada ... Missionar (uncredited)',0,'5',2,'2008-07-31 07:16:04',111,1,'Peter Patzak','Peter Patzak, Helmut Zenker','Various','PAL - 1.66:1 (4:3)','Audio: German (DD 2.0) / English (partly)'),(266,1,'Piefke-Saga, Die (Teil 1-4)',1990,'1. Writing credits (in alphabetical order) \r\nFelix Mitterer writer \r\n\r\n2. Cast (in credits order) \r\nDietrich Mattausch ... Karl-Friedrich Sattmann \r\nBrigitte Grothum ... Else Sattmann \r\nFerdinand Dux ... Heinrich Sattmann \r\nSabine Cruso ... Sabine Sattmann \r\nRalf Komorr ... Gunnar Sattmann \r\nKurt Weinzierl ... Franz Wechselberger \r\nVeronika Faber ... Christel Wechselberger \r\nTobias Moretti ... Josef \'Joe\' Rotter \r\nJosef Kuderna ... Max Niederwieser \r\nGregor Bloéb ... Stefan Wechselberger \r\nHans Richter ... Hans Wechselberger \r\nBrigitte Jaufenthaler ... Anna Rotter \r\nPeter Kluibenschädel ... Andreas Rotter \r\nDoris Goldner ... Olga Rotter \r\nBarbara Weber ... Maria Rotter \r\nLudwig Dornauer ... Thomas Rotter \r\nrest of cast listed alphabetically: \r\nElse Anderka ... Lena Kantner \r\nAsta ... Asta, die Schäferhündin (as Hund Asta) \r\nJaromír Borek ... Handelsminister \r\nGert Burkard ... Herr Körner (as Gerd Burkard) \r\nLothar del Largo \r\nJosef Griesser ... Gendarm \r\nHelmut Haidacher ... Landeshauptmann \r\nHans Kolp ... Pfarrer \r\nKurt Müller-Walden ... Notar \r\nWalter Padreider ... Arzt \r\nHeinz Petters ... Chefredakteur \r\nClaudia Rieschel ... Jutta Karge \r\nSascha Scholl ... Manfred Hollescheck \r\nRobert Winterle \r\nPeter Faerber ... (uncredited) \r\nRainhard Fendrich ... Himself / Sänger im Fernsehen (archive footage) (uncredited) \r\nJoachim Fuchsberger ... Himself / Fernsehmoderator (archive footage) (uncredited) \r\nGerald Pichowetz ... Redaktionsmitglied (uncredited) \r\nWerner Sobotka ... Fotograf (uncredited) \r\n\r\n3. Original Music by \r\nWilhelm Dieter Siebert (as Willy Siebert) ',0,'5',2,'2008-07-31 07:23:17',385,1,'Wilfried Dotzel, Werner Masten (episode 4), Felix Mitterer (uncredited)','Felix Mitterer','Wilhelm Dieter Siebert (as Willy Siebert)','PAL - 4:3','Audio: German (DD 2.0)'),(267,1,'I\'m Not There [OT: I\'m Not There]',2008,'1. Writing Credits:\r\nTodd Haynes (screenplay)\r\nOren Moverman (screenplay)\r\nTodd Haynes (story) \r\n\r\n2. Cast (in credits order) complete, awaiting verification\r\nCate Blanchett ... Jude \r\nBen Whishaw ... Arthur \r\nChristian Bale ... Jack / Pastor John \r\nRichard Gere ... Billy \r\nMarcus Carl Franklin ... Woody / Chaplin Boy \r\nHeath Ledger ... Robbie \r\nKris Kristofferson ... Narrator (voice) \r\nDon Francks ... Hobo Joe \r\nRoc LaFortune ... Hobo Moe \r\nLarry Day ... Government Agent \r\nPaul Cagelet ... Carny / Bell-Hop \r\nBrian R.C. Wilmes ... Circus Man (as Brian RC Wilmes) \r\nPierre-Alexandre Fortin ... Gorgeous George \r\nRichie Havens ... Old Man Arvin \r\nTyrone Benskin ... Mr. Arvin \r\nKim Roberts ... Mrs. Arvin \r\nEric Newsome ... Sixties Narrator \r\nAngela Galuppo ... Folk Girl \r\nJane Wheeler ... TV Host \r\nJulianne Moore ... Alice Fabian \r\nPeter Friedman ... Morris Bernstein / Barker \r\nDavid Gow ... Variety Show Host \r\nFanny La Croix ... Actress \r\nKim Gordon ... Carla Hendricks \r\nMatthew Harbour ... Fan #1 \r\nKyle Switzer ... Fan #2 \r\nTerry Haig ... Gerry Hamlin \r\nGreg Kramer ... Drunk \r\nGordon Masten ... Moonshiner \r\nBill Croft ... Thief / Butcher \r\nCharlotte Gainsbourg ... Claire \r\nGabrielle Marcoux ... Molly - Age 6 \r\nJessey LaFlamme ... Carlie - Age 3 \r\nJennifer Rae Westley ... Louise \r\nPierre LeBlanc ... Director / Father of Tumbleweed Girl \r\nTim Post ... Newscaster \r\nRichard Robitaille ... Director #2 \r\nIvan Freud ... Performer #1 \r\nHolly O\'Brien ... Performer #2 \r\nDanny Blanco ... Black Doctor (as Danny Blanco-Hall) \r\nSusan Glover ... Mrs. Peacock \r\nVito DeFilippo ... Mr. Peacock \r\nAndrew Simms ... Mr. Snow \r\nLisa Bronwyn Moore ... Mrs. Snow \r\nJessica Kardos ... Nurse \r\nGarth Gilker ... Man in Hospital Bed \r\nJohn Koensgen ... Physician \r\nMark Camacho ... Norman \r\nLorne Brass ... Folk Guru / Chester \r\nAndrew Shaver ... Mike \r\nTavis Eachan Triance ... Jude\'s Musician: The Royal Mountain Band \r\nFrederic Charest ... Jude\'s Musician - The Royal Mountain Band \r\nWarren Brewer Auld ... Jude\'s Musician: The Royal Mountain Band \r\nSimon P.F. Nixon ... Jude\'s Musician: The Royal Mountain Band \r\nAndrew Greene ... Festival Guy #1 \r\nPaul Van Dyck ... Festival Guy #2 \r\nAl Vandecruys ... Festival Director \r\nLeif Anderson ... Sound Man \r\nBrett Watson ... College Student \r\nWyatt Bowen ... Dazed Kid \r\nPaul Johnston ... Bearded Scott \r\nNico Romberg ... Kid with Glasses \r\nClarice Byrne ... One Girl \r\nMaggie Castle ... Another Girl \r\nJoe Cobden ... Sonny \r\nKristen Hager ... Mona / Polly \r\nRichard Jutras ... Reporter #1 \r\nDaniel Richard Giverin ... Reporter #2 / Policeman (as Daniel Giverin Richard) \r\nMatt Holland ... Reporter #3 \r\nNoël Burton ... Reporter #4 (as Noel Burton) \r\nBruce Greenwood ... Keenan Jones / Garrett \r\nMichelle Williams ... Coco Rivington \r\nKyle Gatehouse ... Hotel Waiter \r\nJason Cavalier ... Roadie \r\nGreta Papageorgiu ... Stewardess \r\nTrevor Hayes ... Sydney \r\nMarie-Hélène Chartrand ... Woman Talking to Claire \r\nMarie-Julie Rivest ... Strange Woman \r\nJesse Todd ... Strange Man \r\nLina Roessler ... Publicist \r\nSherry Haynes ... Dame \r\nJohann St-Louis ... John \r\nMickael Sébastien Vitanza ... Paul \r\nPierre-Luc Lebeau ... George \r\nJean-Nicolas Déry ... Ringo \r\nKathleen Fee ... Duchess \r\nEmmanuel Schwartz ... Gawky Teen \r\nPauline Little ... Lady with Tape Recorder \r\nDavid Cross ... Allen Ginsberg \r\nEugene Brotto ... Peter Orlovsky \r\nShawn Baichoo ... Carnival Geek \r\nBenz Antoine ... Bobby Seale / Rabbit Brown \r\nCraig Thomas ... Huey P. Newton \r\nCatherine Colvey ... Mrs. Jones \r\nMax Walker ... Kid in the Crowd \r\nJean-Pierre Lalonde ... 2nd Kid in the Crowd \r\nCapone ... Henry - Billy\'s Dog \r\nHollywood ... Billy\'s Horse \r\nPaul Spence ... Homer (as Paul J. Spence) \r\nAlison Folland ... Grace \r\nGraham Cuthbertson ... Martin \r\nShaun Balbar ... Paparazzi (as Sean Balbar) \r\nFelix Pennell ... Red-Haired Boy \r\nJeremy Kantor ... Boy 2 \r\nAlexis Demers ... Molly - as a Baby \r\nSteve Godin ... Townfolk #1 \r\nArthur Holden ... Townsfolk #2 \r\nThiéry Dubé ... Priest (as Thiery Dubé) \r\nRob Burns ... Frantic Husband \r\nLeigh Ann Taylor ... Frantic Wife \r\nJim James ... Brass Band Singer \r\nJoey Burns ... Brass Band Player #1 \r\nJohn Convertino ... Brass Band Player #2 \r\nJane Gilchrist ... Mrs. Henry \r\nDennis St John ... Captain Henry \r\nMaxime Billick ... Clarice Henry \r\nMatthew Boylan ... Brian Jones \r\nPatrick Costello ... Artist \r\nHéléna Laliberté ... Intense Girl (as Helena Laliberté) \r\nDominic Laurence James ... Falling Man \r\nNathalie Girard ... Angel #1 \r\nSharlene Royer ... Angel #2 \r\nKathryn Kostlivy ... Angel #3 \r\nYolonda Ross ... Angela Reeves \r\nPier Paquette ... T-Bone (as Pier Kohl) \r\nJodie Resther ... Choir Singer (as Jodie Lynn Resther) \r\nKassandra Dasent ... Choir Singer (as Kassandra Terry Dasent) \r\nPhyllis Gooden ... Choir Singer \r\nJean-Loup Yale ... State Agent \r\n\r\n2. Original Music by:\r\nBob Dylan\r\nJim James and Calexico\r\nThe Monkees\r\nSonic Youth\r\nStephen Malkmus and The Million Dollar Bashers\r\nEddie Vedder and The Million Dollar Bashers\r\nMarcus Carl Franklin\r\nMason Jennings\r\nRichie Havens and Marcus Carl Franklin\r\nJohn Doe\r\nTom Verlaine and The Million Dollars Bashers\r\nTrini Lopez\r\nYo La Tengo\r\nCalexico\r\nNino Rota\r\nIggy & The Stooges\r\nAntony & The Johnsons',0,'24',2,'2008-10-04 08:08:48',130,1,'Todd Haynes','Todd Haynes (story & screenplay), Oren Moverman (screenplay)','Bob Dylan & others','PAL - Anamorph Widescreen (2,35:1)','Audio: German (DD 5.1), English (DD 5.1) - Subtitles: German, English (aurally handicapped)'),(268,1,'Adams Äpfel [OT: Adams æbler]',2005,'1. Writing credits (in alphabetical order) : \r\nAnders Thomas Jensen (writer) \r\n\r\n2. Cast (in credits order): \r\nUlrich Thomsen ... Adam Pedersen \r\nMads Mikkelsen ... Ivan \r\nNicolas Bro ... Gunnar \r\nPaprika Steen ... Sarah Svendsen \r\nAli Kazim ... Khalid \r\nOle Thestrup ... Dr. Kolberg \r\nNikolaj Lie Kaas ... Holger \r\nGyrd Løfquist ... Poul Nordkap \r\nLars Ranthe ... Esben \r\nPeter Reichhardt ... Nalle \r\nTomas Villum Jensen ... Arne \r\nPeter Lambert ... Jørgen \r\nSolvej K. Christensen ... Pige på tankstation \r\nRasmus Rise Michaelsen ... Ung fyr på tankstation #1 \r\nJacob-Ole Remming ... Ung fyr på tankstation #2 (as Jacob Ole Remming) \r\nrest of cast listed alphabetically: \r\nSolvej Christensen \r\nEmil Kevin Olsen ... Christoffer \r\nPer Holm Henriksen ... Patient (uncredited) \r\n\r\n3. Original Music by: \r\nJeppe Kaas ',0,'5',2,'2008-10-04 08:23:55',93,1,'Anders Thomas Jensen','Anders Thomas Jensen (writer)','Jeppe Kaas','PAL - Anamorph Widescreen (2,35:1)','Audio: Danish (DD 2.0), German (DD 2.0, DD 5.1) - Subtitles: German'),(269,2,'Keinohrhasen',2007,'1. Writing credits:\r\nAnika Decker (written by) \r\nTil Schweiger (written by)\r\n\r\n2. Cast (in credits order): \r\nTil Schweiger ... Ludo Dekker \r\nNora Tschirner ... Anna \r\nMatthias Schweighöfer ... Photograph Moritz \r\nAlwara Höfels ... Miriam \r\nJürgen Vogel ... Himself - famous movie star \r\nRick Kavanian ... Chefredakteur \r\nArmin Rohde ... Bello \r\nWolfgang Stumph ... Fieser Taxifahrer \r\nBarbara Rudnik ... Lilli \r\nChristian Tramitz ... Arzttyp \r\nrest of cast listed alphabetically: \r\nPasquale Aleardi ... Ludo\'s Anwalt \r\nGregor Bloéb ... Michi Nußbaumer \r\nRené Böhnke ... Zaungast \r\nAnne-Sophie Briest ... Mandy \r\nYvonne Catterfeld ... Herself - Celebrity-Braut \r\nClaudia Fritzsche ... Miese Rezeptionskrankenschwester \r\nJohannes Halonen ... Hochzeitsgast \r\nZora Holt ... Eifersüchtige Kellnerin \r\nLars Joermann ... Kellner \r\nWladimir Klitschko ... Husband \r\nDaniel Krauss ... Journalist \r\nPhilipp Kubitza \r\nFlorentine Lahme ... Sissi \r\nKai Lentrodt ... Taxifahrer 2 \r\nStephan Luca ... Arzt \r\nSonsee Neu ... Richterin \r\nAndrea Paula Paul ... Kosmetikerin \r\nJohannes Pautzke ... Junge \r\nNina Proll ... Daniela Berg \r\nAnastasia Schifler ... Kellerin #2 \r\nBarbara Schöneberger ... Herself \r\nSteffen Schroeder ... Rezeptionist Andreas \r\nPaul Maximilian Schüller ... Lollo \r\nEmma Schweiger ... Cheyenne-Blue \r\nLilli Schweiger ... Mädchen mit der Mütze \r\nLuna Schweiger ... Young Anna \r\nValentin Schweiger ... Young Ludo \r\nJeanne Tremsal ... Danielle \r\nElena Uhlig ... Wellness-Angestellte \r\nFahri Yardim ... Mucki \r\nBrigitte Zeh ... Nina \r\n\r\n3. Original Music by: \r\nStefan Hansen (music composer) \r\nDirk Reichardt (music composer) \r\nMirko Schaffer (music composer) ',0,'5',2,'2008-10-04 08:39:12',111,1,'Til Schweiger','Anika Decker & Til Schweiger','Stefan Hansen, Dirk Reichardt, Mirko Schaffer','PAL - Anamorph Widescreen (2,35:1)','Audio: German (DD 5.1) - Subtitles: German (aurally handicapped), English'),(270,1,'Chronicle of a Century XX (Vol. 1-5)',1999,'DVD 1:\r\n\r\nKapitel 1: Der Beginn eines Jahrhunderts\r\n01 Die allgemeine soziale Situation\r\n02 Die Politik in Europa\r\n03 Die Politik im Orient \r\n04 Wirtschaft \r\n05 Wissenschaft und Technik \r\n06 Kultur \r\n07 Vereinigte Staaten \r\n08 Südamerika \r\n09 Gesellschaft/Religion \r\n\r\nKapitel 2: Wie Welt vor 1914 \r\n01 Allgemeine Situation \r\n02 Die russische Politik \r\n03 Die Politik in den restlichen europäischen Ländern \r\n04 Die Politik im Orient \r\n05 Die nordamerikanische Politik \r\n06 Südamerika \r\n07 Wissenschaft und Technik \r\n08 Kultur, Gesellschaft und Sport \r\n\r\nDVD 2:\r\n\r\nKapitel 3: Der grosse Krieg \r\n01 Der Vorabend des Gefechts \r\n02 Der 1. Weltkrieg \r\n03 Die Zerstörungsmacht der Armeen \r\n04 Der Krieg nach dem Eintritt der Amerikaner \r\n05 Die russische Front \r\n06 Der Seekrieg \r\n07 Die Vereinigten Staaten während des Krieges \r\n08 Die letzten Angriffe \r\n09 Das Ende des Krieges \r\n10 Die russische Revolution \r\n11 Kultur, Gesellschaft und Sport \r\n\r\nKapitel 4: Die erste Nachkriegszeit \r\n01 Allgemeine soziale Situation \r\n02 Die Kriegswunden Europas \r\n03 Die Friedenskonferenz - Eine Konferenz ohne die Besiegten \r\n04 Die Ausbreitung des Totalitarismus \r\n05 Wissenschaft und Technik - Die Revolution von Einstein \r\n06 Die Vereinigten Staaten - Die industrielle Umgestaltung \r\n07 Die Veränderung in der Gesellschaft - Das Alkoholverbot und der \"Johnson\'s Act\" \r\n08 Der Wiederaufbau Europas - Die kritische wirtschaftliche Lage der Nachkriegszeit \r\n09 Hitlers unaufhaltsamer Aufstieg \r\n10 Die Situation in Rußland - Das gigantische Aufbrodeln von Problemen \r\n11 Kultur, Gesellschaft und Sport \r\n\r\nDVD 3:\r\n\r\nKapitel 5: Die nicht ganz so glücklichen 20er Jahre \r\n01 Allgemeines Situation - Eine goldene Zeit, um den Krieg zu vergessen \r\n02 Die Vereinigten Staaten - Die geburtenstarken Jahre \r\n03 Der Börsensturz - Die große Depression \r\n04 Sport - Die Olympiade während der Depression \r\n05 Die Entstehung von Nationen \r\n06 Europa - Der Anstieg der Inflationsrate \r\n07 Die Sowjetunion - Die Spaltung des russischen Kommunismus \r\n08 Der Umbruch der Gesellschaft weltweit - Die glücklichen 20er \r\n09 Südamerika - Die Entstehung der Unruhen und Revolutionen \r\n10 Die Situation im Orient - Die Antikolonialisierung \r\n11 Wissenschaft und Technik - Die Innovationen \r\n\r\nKapitel 6: Das Zeitalter des Totalitarismus \r\n01 Die politische Situation - Die Welt gleitet in einen weiteren Krieg \r\n02 Die Vereinigten Staaten - Die Epoche des \"New Deal\" \r\n03 Die Situation in Südamerika - Die wirtschaftliche, politische und soziale Krise \r\n04 Das alte Europa - Auf dem Weg zur Aufrüstung \r\n05 Der spanische Bürgerkrieg - Die Einleitung des 2. Weltkrieges \r\n06 Die Konflikte im Orient - Das Ende des Bürgerkrieges in China \r\n07 Das Atomzeitalter 08 Kultur, Gesellschaft und Sport \r\n\r\nKapitel 7: Der 2. Weltkrieg \r\n01 Die weltweite Situation \r\n02 Der Ausbrucht des 2. Weltkrieges \r\n03 Der Einmarsch der Deutschen in Paris \r\n04 Der Luftkrieg \r\n05 Die Wende im Krieg - Der Dreierpakt \r\n06 Der japanische Angriff auf Pearl Harbor \r\n07 Operation \"Overlord\" \r\n08 Das Leben unter dem Nazismus \r\n09 Der Anfang vom Ende - Die Kapitulation von Caserta \r\n10 Das Ende des Krieges \r\n11 Gesellschaft, Kultur und Sport - Das Leben während des Krieges \r\n\r\nDVD 4:\r\n\r\nKapitel 8: Der langsame Wiederaufbau \r\n01 Die schwierige Nachkriegszeit \r\n02 Die UdSSR und der Ostblock \r\n03 Die Konferenz in San Francisco \r\n04 Die Gründung Israels \r\n05 Ein neues Europa \r\n06 Die Potsdamer Konferenz \r\n07 Der Orient \r\n08 Die Vereinigten Staaten \r\n09 Südamerika \r\n10 Gesellschaft, Kultur und Sport \r\n11 Wissenschaft und Technik \r\n\r\nKapitel 9: Die 50er Jahre \r\n01 Die Kriege von Korea und Indochina \r\n02 Die Gesellschaft in den Vereinigten Staaten \r\n03 Europa \r\n04 Das Leben in der UdSSR \r\n05 Der Vordere Orient \r\n06 Die Situation in Südamerika \r\n07 Die schwierige Situation im Mittleren Orient \r\n08 Der Wettlauf im Weltraum \r\n09 Gesellschaft und Kunst \r\n\r\nKapitel 10: Die Entspannung \r\n01 Kennedys Amerika \r\n02 Das demokratische Deutschland \r\n03 Die Welt am Rande des 3. Weltkrieges \r\n04 Die Größe Kennedys \r\n05 Das Attentat auf Martin Luther King \r\n06 Vietnam: der Wahnsinn \r\n07 Verhaftung und Hinrichtung von Ché Guevara \r\n08 Die komplizierte Situation in Südamerika \r\n09 Politische Schwankungen in Europa \r\n10 UdSSR und China \r\n11 Der Mittlere Orient \r\n12 Die Situation in Afrika \r\n13 Gesellschaft, Kultur und Sport \r\n14 Wissenschaft und Technik \r\n\r\nDVD 5:\r\n\r\nKapitel 11: Das Ende der Krise rückt näher \r\n01 Eine neue Epoche \r\n02 Allgemeine soziale Situation \r\n03 Europa \r\n04 Der Mittlere Orient \r\n05 Afrika \r\n06 Die Vereinigten Staaten \r\n07 Die UdSSR nach Chruschtschow \r\n08 Das Leben in Südamerika \r\n09 Der Staatsstreich in Chile \r\n10 Wissenschaft und Technik \r\n11 Gesellschaft, Kultur und Sport \r\n\r\nKapitel 12: Unsicherheit und Veränderung \r\n01 Allgemeine Situation \r\n02 Die UdSSR und der sozialistische Block \r\n03 Die Vereinigten Staaten \r\n04 Europa \r\n05 Der Mauerfall \r\n06 Afrika \r\n07 Der Mittlere Orient \r\n08 Südamerika \r\n09 China \r\n10 Wissenschaft und Technik \r\n11 Gesellschaft, Kultur und Sport \r\n\r\nKapitel 13: Auf dem Weg zu einer neuen Weltordnung \r\n01 Die Spaltung der UdSSR \r\n02 Der Krieg im ehemaligen Jugoslawien \r\n03 Europa \r\n04 Die Vereinigten Staaten \r\n05 Südamerika \r\n06 Krieg am Persischen Golf \r\n07 Der Mittlere Orient \r\n08 Afrika \r\n09 Gesellschaft, Kultur und Sport \r\n10 Wissenschaft und Technik ',0,'23',2,'2008-10-04 09:03:20',342,1,'n/a','n/a','n/a','PAL - (4:3)','Audio: English, German, French, Italian, Spanish, Polish / (DD 5.1)'),(271,1,'Auf Anfang [: Reprise] [OT: Reprise]',2006,'1. Cast (in credits order) \r\nAnders Danielsen Lie ... Phillip Reisnes \r\nEspen Klouman-Høiner ... Erik \r\nViktoria Winge ... Kari Brekke \r\nHenrik Elvestad ... Henning \r\nChristian Rubeck ... Lars Etterstad AKA Porno Lars \r\nOdd Magnus Williamson ... Morten \r\nRebekka Karijord ... Johanne \r\nHenrik Mestad ... Jan Eivind \r\nPål Stokka ... Geir \r\nSigmund Sæverud ... Sten Egil Dahl \r\nrest of cast listed alphabetically: \r\nCecilie Bertran de Lis ... Sykesøster \r\nAnders Borchgrevink ... Joy Division jogger \r\nTone Danielsen ... Inger, Phillip\'s mother \r\nEindride Eidsvold ... Narrator (voice) \r\nKari Feilberg-Jacobsen ... Guest at party \r\nHege Serine Golf ... Geirs jente på fest (as Hege Golf) \r\nSilje Hagen ... Lillian \r\nThorbjørn Harr ... Mathis Wergeland \r\nDargny Holter ... Frodes mor \r\nJohn Sigurd Kristensen ... Jon (as John S. Kristensen) \r\nIvar Lykke ... Telesalgsjef \r\nElisabeth Sand ... Hanne, Erik\'s mother \r\nAnne Sandvik Lindmo ... Programleder \r\nAndreas Tylden ... Rune \r\nBjørn Tore Hansen ... Teleselger (uncredited) \r\n\r\n2. Writing credits\r\n(in alphabetical order) \r\nJoachim Trier writer \r\nEskil Vogt writer \r\n\r\n3. Original Music by \r\nOla Fløttum \r\nKnut Schreiner ',0,'2',2,'2008-11-22 12:34:31',102,1,'Joachim Trier','Joachim Trier, Eskil Vogt','Ola Fløttum, Knut Schreiner','PAL - Anamorphic Widescreen (1,85:1)','Audio: Norvegian (DD 5.1) - Subtitles: German'),(272,1,'Leningrad Cowboys Go America [OT: Leningrad Cowboys Go America]',1989,'1. Cast (in credits order) complete, awaiting verification\r\nMatti Pellonpää ... Vladimir (Manager) \r\nKari Väänänen ... Igor (Village Idiot) \r\nSakke Järvenpää ... The Leningrad Cowboys \r\nHeikki Keskinen ... The Leningrad Cowboys \r\nPimme Korhonen ... The Leningrad Cowboys \r\nSakari Kuosmanen ... The Leningrad Cowboys \r\nPuka Oinonen ... The Leningrad Cowboys \r\nSilu Seppälä ... The Leningrad Cowboys \r\nMauri Sumén ... The Leningrad Cowboys \r\nMato Valtonen ... The Leningrad Cowboys \r\nPekka Virtanen ... The Leningrad Cowboys \r\nNicky Tesco ... Lost Cousin \r\nOlli Tuominen ... Siberian Svengali \r\nKari Laine ... Siberian Chauffeur \r\nJatimatic Ohlstrom ... Father of the Cowboys \r\nRichard Boes ... Rockpromotor \r\nJim Jarmusch ... Car Dealer / New York \r\nGeorge M. Kunkle ... Banjo Player \r\nWilliam W. Robertson ... Barber \r\nMr. Morris ... Bartender / Memphis \r\nMs. Morris ... Bartender / Memphis \r\nMarty Olavarrieta ... Police Officer \r\nEarl Howard Jr. ... Bar Owner \r\nAlbert Gonzales ... Prison Warden \r\nDuke Robillard ... Nightclub Owner \r\nFrank Johnson ... Car Dealer / Houston \r\nErnie Wright ... Bartender / Houston \r\nPhillip Linson ... Nightclub Customer (as Phil Linson) \r\nRock ... Engine Thief \r\nTerry ... Engine Thief \r\nSpeed ... Engine Thief \r\nCarlton ... Engine Thief \r\nJudge Felix Barrera ... Bride\'s Father \r\nLaura Barrera ... Bride \r\nJohn Martinez ... Groom \r\nJose G. Salas ... Mexican Singer \r\n\r\n2. Writing credits\r\n(in alphabetical order) \r\nSakke Järvenpää story \r\nAki Kaurismäki screenplay \r\nAki Kaurismäki story \r\nMato Valtonen story \r\n\r\n3. Original Music by \r\nMauri Sumén \r\n',0,'5',2,'2008-11-22 12:39:48',76,1,'Aki Kaurismäki','Sakke Järvenpää, Aki Kaurismäki, Mato Valtonen','Mauri Sumén, Leningrad Cowboys','PAL - Anamorphic Widescreen (16:9)','Audio: English/Finnish (DD 2.0) - Subtitles: German, French'),(273,1,'Leningrad Cowboys Meet Moses [OT: Leningrad Cowboys Meet Moses]',1994,'1. Cast (in credits order) \r\nTwist-Twist Erkinharju ... Leningrad Cowboy \r\nBen Granfelt ... Leningrad Cowboy \r\nSakke Järvenpää ... Leningrad Cowboy \r\nJore Marjaranta ... Leningrad Cowboy \r\nEkke Niiva ... Leningrad Cowboy \r\nJyri Närvänen ... Leningrad Cowboy (as Lyle Närvänen) \r\nPemo Ojala ... Leningrad Cowboy \r\nSilu Seppälä ... Leningrad Cowboy \r\nMauri Sumén ... Leningrad Cowboy \r\nMato Valtonen ... Leningrad Cowboy \r\nMatti Pellonpää ... Moses / Vladimir \r\nKari Väänänen ... The Mute \r\nAndré Wilms ... Lazar / Johnson / Elijah \r\nNicky Tesco ... American Cousin \r\nJacques Blanc ... Owner of Bingo Parlour \r\nNicole Helies ... Bingo Hostess \r\nKirsi Tykkyläinen ... Singer of Babylon \r\nrest of cast listed alphabetically: \r\nAki Kaurismäki ... Factory Worker imitating Chaplin (uncredited) \r\n\r\n2. Writing credits\r\n(in alphabetical order) \r\nSakke Järvenpää story \r\nAki Kaurismäki story \r\nMato Valtonen story \r\n\r\n3. Original Music by \r\nMauri Sumén ',0,'5',2,'2008-11-22 12:43:31',90,1,'Aki Kaurismäki','Sakke Järvenpää, Aki Kaurismäki, Mato Valtonen','Mauri Sumén, Leningrad Cowboys','PAL - Anamorphic Widescreen (16:9)','Audio: English (DD 2.0) - Subtitles: German'),(274,1,'Boston Legal (Season One) [OT: Boston Legal (Season One)]',2004,'1. Series Cast\r\nJames Spader ... Alan Shore (97 episodes, 2004-2008) \r\nWilliam Shatner ... Denny Crane (97 episodes, 2004-2008) \r\nCandice Bergen ... Shirley Schmidt (87 episodes, 2005-2008) \r\nMark Valley ... Brad Chase / ... (70 episodes, 2004-2007) \r\nRene Auberjonois ... Paul Lewiston / ... (70 episodes, 2004-2008) \r\nJulie Bowen ... Denise Bauer (53 episodes, 2005-2008) \r\nChristian Clemenson ... Jerry Espenson / ... (46 episodes, 2005-2008) \r\nGary Anthony Williams ... Clarence / ... (36 episodes, 2006-2008) \r\nJohn Larroquette ... Carl Sack (29 episodes, 2007-2008) \r\nTara Summers ... Katie Lloyd (29 episodes, 2007-2008) \r\nConstance Zimmer ... Claire Simms (23 episodes, 2006-2007) \r\nHenry Gibson ... Judge Clark Brown (23 episodes, 2004-2008) \r\nMonica Potter ... Lori Colson (21 episodes, 2004-2005) \r\nRhona Mitra ... Tara Wilson (20 episodes, 2004-2005) \r\nSaffron Burrows ... Lorraine Weller (20 episodes, 2007-2008) \r\nMeredith Eaton ... Bethany Horowitz (18 episodes, 2006-2008) \r\nTaraji P. Henson ... Whitney Rome (17 episodes, 2007-2008) \r\nJustin Mentell ... Garrett Wells (16 episodes, 2005-2006) \r\nRyan Michelle Bathe ... Sara Holt (16 episodes, 2005-2006) \r\nBetty White ... Catherine Piper (15 episodes, 2005-2008) \r\nCraig Bierko ... Jeffrey Coho (14 episodes, 2006-2007) \r\nLake Bell ... Sally Heep (14 episodes, 2004-2006) \r\nJill Brennan ... Gracie Jane (14 episodes, 2005-2007) \r\nMarisa Coughlan ... Melissa Hughes (12 episodes, 2005-2006) \r\nShelley Berman ... Judge Robert Sanders (11 episodes, 2006-2008) \r\nMichael Ensign ... Judge Paul Resnick (10 episodes, 2004-2008) \r\nCurrie Graham ... A.D.A. Frank Ginsberg (9 episodes, 2005-2008) \r\nDavid Dean Bottrell ... Lincoln Meyer (8 episodes, 2006) \r\nAnthony Heald ... Judge Harvey Cooper (8 episodes, 2005-2008) \r\nRon Canada ... Judge Willard Reese (8 episodes, 2006-2008) \r\nTakayo Fischer ... Clerk / ... (8 episodes, 2005-2007) \r\nArmin Shimerman ... Judge Brian Hooper (7 episodes, 2006) \r\nGail O\'Grady ... Judge Gloria Weldon (7 episodes, 2007) \r\nMark L. Taylor ... Attorney Adam Jovanka (7 episodes, 2006-2008) \r\nRoma Maffia ... Judge Victoria Peyton (7 episodes, 2007-2008) \r\nMichael J. Fox ... Daniel Post (6 episodes, 2006) \r\nLeslie Jordan ... Bernard Ferrion (6 episodes, 2005) \r\nLou Beatty Jr. ... Judge Gordon Kolodny (6 episodes, 2004-2008) \r\nLaura Henry ... Clerk / ... (6 episodes, 2004-2007) \r\nKonstantina Mallios ... Receptionist / ... (6 episodes, 2005-2006) \r\nKurt Scholler ... Bailiff (6 episodes, 2006-2007) \r\nAshton Holmes ... Scott Little (5 episodes, 2006) \r\nCurtis Armstrong ... Dr. Zachary Simon (5 episodes, 2006) \r\nJoanna Cassidy ... Beverly Bridge (5 episodes, 2006) \r\nJohn Thaddeus ... Detective John Stephenson (5 episodes, 2005-2006) \r\nDelta Burke ... Bella Horowitz (5 episodes, 2006-2007) \r\nKatey Sagal ... Barbara Little (5 episodes, 2006) \r\nJayne Brook ... Rachel Lewiston (5 episodes, 2006) \r\nTyler Labine ... A.D.A. Jonathan Winant / ... (5 episodes, 2006) \r\nFrancesca Roberts ... Judge Jamie Atkinson (5 episodes, 2005-2008) \r\nKerry Washington ... Chelina Hall (5 episodes, 2005-2006) \r\nDon McManus ... A.D.A. John Lennox / ... (5 episodes, 2004-2008) \r\nWilliam Russ ... Attorney Christopher Palmer / ... (5 episodes, 2005-2008) \r\nChristopher Rich ... Attorney Melvin Palmer (5 episodes, 2005-2008) \r\nChuck McCann ... Judge Byron Fudd (5 episodes, 2007-2008) \r\nGlen Walker ... Anchorman / ... (5 episodes, 2004-2007) \r\nRebecca Lin ... Receptionist (5 episodes, 2004-2006) \r\nZylan Brooks ... Clerk / ... (5 episodes, 2005-2006) \r\nPamela Adlon ... Attorney Emma Path / ... (5 episodes, 2007-2008) \r\nKaren Lew ... Clerk / ... (5 episodes, 2007-2008) \r\nTom Selleck ... Ivan Tiggs (4 episodes, 2006) \r\nParker Posey ... Marlene Stanger / ... (4 episodes, 2006) \r\nAna Ortiz ... A.D.A. Holly Raines (4 episodes, 2006) \r\nVic Polizos ... Detective Frank Richmond (4 episodes, 2005-2006) \r\nMeredith Patterson ... Missy Tiggs / ... (4 episodes, 2006-2008) \r\nDebra Mooney ... Judge Patrice Webb (4 episodes, 2007-2008) \r\nErica Gimpel ... Attorney Samantha Fried (4 episodes, 2006-2007) \r\nJane Lynch ... Joanna Monroe (4 episodes, 2006-2008) \r\nPatrick Renna ... Warren Peters / ... (4 episodes, 2005-2007) \r\nRichard Portnow ... Judge Peter Harding (4 episodes, 2004-2006) \r\nEric Payne ... Sam Halpern / ... (4 episodes, 2004-2006) \r\nRichard V. Licata ... Judge Dale Melman (4 episodes, 2005-2006) \r\nMark Edward Smith ... Bailiff (4 episodes, 2005-2007) \r\nSteven Anderson ... Walter Seymore / ... (4 episodes, 2004-2008) \r\nLeyna Nguyen ... Reporter / ... (4 episodes, 2005-2008) \r\nTed Garcia ... Reporter #1 / ... (4 episodes, 2006-2008) \r\nDeena Dill ... Female Server (4 episodes, 2006) \r\nApril Rios ... Fiona (4 episodes, 2006) \r\nAshley Rios ... Fiona (4 episodes, 2006) \r\nNicole J. Butler ... Clerk / ... (4 episodes, 2007-2008) \r\nMary Gross ... Leigh Swift (4 episodes, 2007-2008) \r\nNorma Jean Riddick ... Juror / ... (4 episodes, 2007-2008) \r\nJohn Robert ... Attorney\'s client / ... (4 episodes, 2007) \r\nAndy Umberger ... Attorney Morrison (3 episodes, 2005-2006) \r\nHoward Hesseman ... Judge Robert Thompson (3 episodes, 2006-2007) \r\nNia Long ... Vanessa Walker (3 episodes, 2007) \r\nPatrick Breen ... A.D.A. Otto Beedle (3 episodes, 2006-2007) \r\nShawn Christian ... Tim Bauer (3 episodes, 2005) \r\nKurt Fuller ... Reverend Donald Diddum (3 episodes, 2005) \r\nAdam Arkin ... A.D.A. Douglas Kupfer (3 episodes, 2006) \r\nRandy Thompson ... Officer Carl Ralston (3 episodes, 2006-2007) \r\nEthan Phillips ... Michael Schiller (3 episodes, 2006) \r\nEd Begley Jr. ... Clifford Cabot (3 episodes, 2006-2007) \r\nFreddie Prinze Jr. ... Donny Crane (3 episodes, 2004-2006) \r\nMissi Pyle ... Renee Winger (3 episodes, 2006-2008) \r\nMark Derwin ... Attorney Michael Eaves (3 episodes, 2005-2007) \r\nH. Richard Greene ... Judge Harry Hingham (3 episodes, 2004-2005) \r\nJason Blicker ... A.D.A. Duncan Jones / ... (3 episodes, 2005-2006) \r\nPat Skipper ... Attorney Michael Roker (3 episodes, 2005-2008) \r\nThom Gossom Jr. ... Judge Blake Winters (3 episodes, 2005-2006) \r\nLisa Kaminir ... D.A. Valerie Murrow / ... (3 episodes, 2005) \r\nPatricia Belcher ... Judge Leslie Bishop (3 episodes, 2004-2007) \r\nLarry Miller ... Edwin Poole (3 episodes, 2004-2006) \r\nNigel Gibbs ... Detective Wade Spindle / ... (3 episodes, 2004-2006) \r\nFrank Birney ... Judge William Howe (3 episodes, 2004-2007) \r\nHildy Brooks ... Judge Nora Lang / ... (3 episodes, 2004-2007) \r\nMichael C. Alexander ... Officer Lawrence Michaels (3 episodes, 2004-2006) \r\nMary Boucher ... Judge Rose Olsheim (3 episodes, 2004-2006) \r\nChristopher Carroll ... Judge Stephen Bickel / ... (3 episodes, 2004-2006) \r\nJodi Lyn O\'Keefe ... Nora Jacobs (3 episodes, 2004-2005) \r\nJack Impellizzeri ... Officer Jones / ... (3 episodes, 2005-2007) \r\nMarcus Folmar ... Bailiff (3 episodes, 2006-2008) \r\nDavid Mehl ... Court Reporter / ... (3 episodes, 2006) \r\nPeter Onorati ... A.D.A. Stewart Betts (3 episodes, 2007-2008) \r\nRosemary Garris ... Juror #1 / ... (3 episodes, 2007) \r\nCraig muMs Grant ... Joseph Washington (3 episodes, 2007) \r\nBrett Hunt ... Reporter (3 episodes, 2008) \r\nRachelle Lefevre ... Dana Strickland (3 episodes, 2008) \r\nJeri Ryan ... Courtney Reese (2 episodes, 2006) \r\nKevin Dunn ... Attorney Jonathan Weiner (2 episodes, 2006-2007) \r\nTamara Feldman ... Cassie (2 episodes, 2005) \r\nLaura Leighton ... Erica Dolenz (2 episodes, 2006) \r\nLisa Vidal ... Irma Levine (2 episodes, 2006) \r\nAllan Louis ... Ande Mkeba (2 episodes, 2006) \r\nRupert Everett ... Malcolm Holmes (2 episodes, 2005) \r\nLindsay Frost ... Beth Guttman (2 episodes, 2006) \r\nZach Grenier ... U.S. Attorney Chris Randolph / ... (2 episodes, 2005-2007) \r\nRichard Fancy ... Father Michael Ryan (2 episodes, 2005) \r\nHeather Locklear ... Kelly Nolan (2 episodes, 2005) \r\nEmily Montague ... Hannah Guttman (2 episodes, 2006) \r\nDavid Burke ... D.A. Casey Mathias (2 episodes, 2005-2006) \r\nCameron Daddo ... Sean Wilkes (2 episodes, 2006) \r\nRobin Riker ... Candi Springtime / ... (2 episodes, 2006) \r\nDianna Miranda ... Helena Perez (2 episodes, 2005) \r\nBilly Mayo ... Detective Sean Wilkins (2 episodes, 2005-2007) \r\nMarc Vann ... D.A. Scott Berger / ... (2 episodes, 2005-2006) \r\nSteve Valentine ... Dan Rice (2 episodes, 2006) \r\nGregory Itzin ... A.D.A. Todd Milken (2 episodes, 2005) \r\nKelly Connell ... Attorney John Hoberg (2 episodes, 2006) \r\nRobert Wagner ... Barry Goal (2 episodes, 2006) \r\nJesse D. Goins ... Dr. Anyar Marks / ... (2 episodes, 2005-2006) \r\nDavid Pearl ... Bailiff (2 episodes, 2007) \r\nEllen Crawford ... Frances Stadler (2 episodes, 2005) \r\nLoretta Devine ... Annabelle Carruthers / ... (2 episodes, 2006-2007) \r\nRay Abruzzo ... John Sciarra / ... (2 episodes, 2007-2008) \r\nAlly Walker ... Attorney Phoebe Prentice / ... (2 episodes, 2008) \r\nAnne Betancourt ... Judge Isabel Hernandez (2 episodes, 2004-2006) \r\nRobert Joy ... A.D.A. Nicholas Preston / ... (2 episodes, 2004-2005) \r\nJim Jansen ... Marshall Kennedy (2 episodes, 2007-2008) \r\nLorna Raver ... Judge Katherine Taylor (2 episodes, 2004-2006) \r\nLawrence Pressman ... Judge Floyd Hurwitz (2 episodes, 2007-2008) \r\nChristine Tucci ... D.A. Mary Ann Huff (2 episodes, 2004-2007) \r\nVictor McCay ... Dr. Malcolm Freemont (2 episodes, 2005-2007) \r\nJere Burns ... A.D.A. Joe Isaacs / ... (2 episodes, 2006-2008) \r\nAllan Wasserman ... A.D.A. Oliver Goldberg / ... (2 episodes, 2004-2006) \r\nChristine Dunford ... Attorney Shelley Ford (2 episodes, 2006-2007) \r\nJim Ortlieb ... Dr. George Murrow (2 episodes, 2006) \r\nMarshall Manesh ... George Keene (2 episodes, 2004-2006) \r\nMichael Kostroff ... Dr. David Cannon (2 episodes, 2005-2006) \r\nButch Hammett ... George Tanner (2 episodes, 2006) \r\nDennis Cockrum ... Detective Gary Jacobs / ... (2 episodes, 2004-2006) \r\nEllen Bry ... Attorney Shelby Morris (2 episodes, 2006) \r\nMichael Patrick McGill ... Officer Brian Whistler (2 episodes, 2007) \r\nHelen Eigenberg ... Atty. Tompkins (2 episodes, 2004-2005) \r\nMarty Lodge ... Rick Guttman (2 episodes, 2006) \r\nTed Lyde ... Foreman / ... (2 episodes, 2006) \r\nDavid Clennon ... Attorney Braxton Mason (2 episodes, 2004-2008) \r\nAaron Lustig ... Dr. Herbert Waylon / ... (2 episodes, 2004-2008) \r\nPaul Schackman ... Attorney Pepper Minkin / ... (2 episodes, 2004-2008) \r\nJack Shearer ... Justice Antonin Scalia / ... (2 episodes, 2004-2008) \r\nHeidi Heller ... Clerk (2 episodes, 2004-2007) \r\nThomas Knickerbocker ... Dr. Mahoney / ... (2 episodes, 2004-2007) \r\nKarl T. Wright ... A.D.A. George Martin / ... (2 episodes, 2004-2007) \r\nBlair Bess ... Detective / ... (2 episodes, 2004-2006) \r\nDamien Leake ... Referee / ... (2 episodes, 2004-2006) \r\nNina Avetisova ... Paralegal (2 episodes, 2004-2005) \r\nDerrick McMillon ... Security Guard (2 episodes, 2004-2005) \r\nDavid Starzyk ... Attorney Daniel Gellman / ... (2 episodes, 2004-2005) \r\nNicole Bilderback ... Crane\'s Secretary / ... (2 episodes, 2004) \r\nAnita Finlay ... Helen Poole (2 episodes, 2004) \r\nJohn Michael Higgins ... Jerry Austin (2 episodes, 2004) \r\nAnthony S. Johnson ... Judge / ... (2 episodes, 2004) \r\nThomas Kopache ... Judge Dale Wallace / ... (2 episodes, 2004) \r\nElizabeth Mitchell ... Christine Pauley (2 episodes, 2004) \r\nAl Sharpton ... Himself (2 episodes, 2004) \r\nJ.J. Boone ... Jacqueline Ross / ... (2 episodes, 2005-2008) \r\nRon Ostrow ... Atty. Everett Cone (2 episodes, 2005-2007) \r\nBarry Sigismondi ... Lieutenant James (2 episodes, 2005-2007) \r\nBrad Wilson ... Clerk #1 / ... (2 episodes, 2005-2007) \r\nMichael Wiseman ... D.A. Bret Haber (2 episodes, 2005-2007) \r\nJason Brooks ... Justin Murray (2 episodes, 2005) \r\nRhomeyn Johnson ... Detective Willet (2 episodes, 2005) \r\nDiane Kim ... Marcia Allen / ... (2 episodes, 2005) \r\nAramis Knight ... Tito Perez (2 episodes, 2005) \r\nRay Laska ... Judge James Billmeyer (2 episodes, 2005) \r\nPhillip Palmer ... Anchor / ... (2 episodes, 2005) \r\nBob Rumnock ... Foreman / ... (2 episodes, 2005) \r\nDavid Saxa ... Dewey (2 episodes, 2005) \r\nTim McFadyen ... Clerk / ... (2 episodes, 2006-2008) \r\nMichael Ray Reed ... Juror / ... (2 episodes, 2006-2007) \r\nMichelle Russo ... Beautiful lady / ... (2 episodes, 2006-2007) \r\nSean Blodgett ... Reporter #1 (2 episodes, 2006) \r\nPeter Breitmayer ... Joel Landson (2 episodes, 2006) \r\nJim Dalton ... George Gering / ... (2 episodes, 2006) \r\nKathleen Davis ... Wedding Guest (2 episodes, 2006) \r\nKevin Isola ... Michael Reisz / ... (2 episodes, 2006) \r\nMarco Martinez ... Foreman (2 episodes, 2006) \r\nCraig Barnett ... M.E. Simmons / ... (2 episodes, 2007-2008) \r\nNora Dunn ... Attorney Cynthia Rhodes (2 episodes, 2007-2008) \r\nJenifer Lewis ... Judge Isabel Fisher (2 episodes, 2007-2008) \r\nMichael Loeffelholz ... Reverend Kurt Joyner (2 episodes, 2007-2008) \r\nAllison Miller ... Marlena Hoffman (2 episodes, 2007-2008) \r\nMark Moses ... A.D.A. George McDougal / ... (2 episodes, 2007-2008) \r\nChristie Lynn Smith ... Maureen Janely (2 episodes, 2007-2008) \r\nObba Babatundé ... Dr. Stanley Rivers / ... (2 episodes, 2007) \r\nMary Elizabeth Barrett ... Clerk / ... (2 episodes, 2007) \r\nC. Stephen Browder ... Bailiff (2 episodes, 2007) \r\nRob Brownstein ... Dr. Timothy Wood (2 episodes, 2007) \r\nYvette Nicole Brown ... Doris Thumper (2 episodes, 2007) \r\nLauri Johnson ... Sister Catherine (2 episodes, 2007) \r\nKhali Macintyre ... Nancy Wilding (2 episodes, 2007) \r\nRolando Molina ... Miguel Obisbo (2 episodes, 2007) \r\nMare Winningham ... Patrice Kelly (2 episodes, 2007) \r\nAlison La Placa ... Andrea Michele (2 episodes, 2008) \r\nAnnie Potts ... Joy Espenson (2 episodes, 2008) \r\nJames Rebhorn ... Attorney Wade Mathis / ... (2 episodes, 2008) \r\nRenee Taglia ... Attorney (2 episodes, 2008) \r\nNed Vaughn ... Joel Beavis / ... (2 episodes, 2008) \r\n\r\n2. Series Writing credits \r\nDavid E. Kelley (97 episodes, 2004-2008) \r\nLawrence Broch (16 episodes, 2005-2008) \r\nJanet Leahy (11 episodes, 2005-2007) \r\nMichael Reisz (10 episodes, 2005-2007) \r\nSanford Golden (10 episodes, 2006-2008) \r\nKaren Wyscarver (10 episodes, 2006-2008) \r\nPhoef Sutton (9 episodes, 2005-2007) \r\nSusan Dickes (9 episodes, 2006-2008) \r\nAndrew Kreisberg (8 episodes, 2005-2007) \r\nCorinne Brinkerhoff (8 episodes, 2006-2008) \r\nJonathan Shapiro (7 episodes, 2004-2008) \r\nCraig Turk (4 episodes, 2007-2008) \r\nJill Goldsmith (4 episodes, 2008) \r\nScott Kaufer (2 episodes, 2004) \r\nPeter Ocko (2 episodes, 2004) \r\nJeff Rake (2 episodes, 2004) \r\n\r\n3. Series Original Music by \r\nDanny Lux (26 episodes, 2004-2008)',0,'25',2,'2008-11-22 12:55:24',700,1,'Mike Listo (and others)','David E. Kelley (and others)','Danny Lux','PAL - Anamorphic Widescreen (1,78:1)','Audio: German (DD 2.0), English (DD 2.0) - Subtitles: German, English'); /*!40000 ALTER TABLE `movie` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `region` -- DROP TABLE IF EXISTS `region`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `region` ( `code` char(2) NOT NULL DEFAULT '', `name` varchar(255) NOT NULL DEFAULT '', KEY `code` (`code`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `region` -- LOCK TABLES `region` WRITE; /*!40000 ALTER TABLE `region` DISABLE KEYS */; INSERT INTO `region` VALUES ('VB','Vorarlberg'),('T','Tirol'),('S','Salzburg'),('OÖ','Oberösterreich'),('NÖ','Niederösterreich'),('BL','Burgenland'),('K','Kärnten'),('ST','Steiermark'),('W','Wien'); /*!40000 ALTER TABLE `region` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `user` -- DROP TABLE IF EXISTS `user`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `user` ( `id` int(11) NOT NULL AUTO_INCREMENT, `email` varchar(255) NOT NULL DEFAULT '', `password` varchar(32) NOT NULL DEFAULT '', `fname` varchar(255) NOT NULL DEFAULT '', `lname` varchar(255) NOT NULL DEFAULT '', `city` varchar(255) NOT NULL DEFAULT '', `regioncode` char(2) NOT NULL DEFAULT '', `countrycode` char(2) NOT NULL DEFAULT '', `enabled` tinyint(1) NOT NULL DEFAULT '0', `admin` tinyint(1) NOT NULL DEFAULT '0', `lastvisit` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `lastcheck` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', PRIMARY KEY (`id`) ) ENGINE=MyISAM AUTO_INCREMENT=14 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `user` -- LOCK TABLES `user` WRITE; /*!40000 ALTER TABLE `user` DISABLE KEYS */; INSERT INTO `user` VALUES (1,'mam@heimam.at','5a9361b28ee51795f1e82d9054919034','Markus','Mascelli','Wien','W','AT',1,1,'2016-04-20 01:09:42','2008-10-04 20:23:49'),(2,'rossama@yahoo.com','fb26dff8e956559ffe58cfd6a9103a00','Martha','Rossa','Wien','W','AT',1,0,'2008-10-04 20:24:16','2008-10-04 20:24:16'),(3,'angelika.unterholzner@gmx.at','e2140d8326c048036b7baffcef7d4827','Angelika','Unterholzner','Wien','W','AT',1,0,'2008-12-03 02:02:35','2005-05-11 13:43:12'),(4,'dailylama23@yahoo.de','44c9f7f6e218c86101fac88274d44c15','Claudio','Ruggieri','Salzburg','S','AT',1,0,'2004-10-22 16:57:23','2004-10-22 15:15:09'),(5,'guenther.schmidt@gmail.com','78918cecf8926d0cada4c5bc31af87a3','Günther','Schmidt','Wien','W','AT',1,0,'2006-11-01 07:21:25','2005-02-01 12:34:49'),(6,'christian.zeichmann@inode.at','f4ca04c03b59ca8cdddc7adc0e17bf70','Christian','Zeichmann','Wien','W','AT',1,0,'2005-02-01 13:43:42','2005-02-01 12:35:59'),(8,'christian.elmer@gmx.at','8488d8d38289f98b4e6e9bdc6727299c','Christian','Elmer','Wien','W','AT',1,0,'2005-05-03 22:42:26','2005-05-03 20:35:45'),(9,'rot.schopf@hotmail.com','d2e634849dbb46c82eab070e8079cc7b','Zlata','Vopatova','Wien','W','AT',1,0,'2007-01-09 14:24:02','2007-01-06 10:19:22'),(11,'joh.mar@gmx.net','10d011cc1d5d9efa0fe485e6c32d2ac1','haemma','haemma','Wien','W','AT',1,0,'2009-07-06 21:55:41','2009-07-06 14:07:18'),(12,'alexander.fabozzi@atosorigin.com','71a6723b9c92809fd9b5eee1b4323239','Alexander','Fabozzi','Wien','W','AT',1,0,'2010-06-14 12:56:46','2010-06-14 12:52:19'),(13,'cornelia.gass@kapsch.net','eebeb5de3f5c39a6d06eabd0fde35c17','Cornelia','Gass','Wien','W','AT',1,0,'2016-03-23 08:24:38','2014-09-20 08:29:17'); /*!40000 ALTER TABLE `user` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `userprefs` -- DROP TABLE IF EXISTS `userprefs`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `userprefs` ( `userid` int(11) NOT NULL DEFAULT '0', `item` varchar(255) NOT NULL DEFAULT '', `value` varchar(255) NOT NULL DEFAULT '', KEY `userid` (`userid`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `userprefs` -- LOCK TABLES `userprefs` WRITE; /*!40000 ALTER TABLE `userprefs` DISABLE KEYS */; INSERT INTO `userprefs` VALUES (2,'movienav','3'),(2,'theme','indusiv'),(2,'defregion','2'),(2,'defmedia','1'),(2,'movcolumns','2047'),(1,'movienav','3'),(1,'theme','indusiv'),(1,'defregion','2'),(1,'defmedia','1'),(1,'movcolumns','2047'),(4,'movienav','3'),(4,'theme','indusiv'),(4,'defregion','2'),(4,'defmedia','1'),(4,'movcolumns','2047'),(5,'movienav','3'),(5,'theme','indusiv'),(5,'defregion','2'),(5,'defmedia','1'),(5,'movcolumns','2047'); /*!40000 ALTER TABLE `userprefs` ENABLE KEYS */; UNLOCK TABLES; -- -- Current Database: `extcalendar_mamcal` -- CREATE DATABASE /*!32312 IF NOT EXISTS*/ `extcalendar_mamcal` /*!40100 DEFAULT CHARACTER SET latin1 */; USE `extcalendar_mamcal`; -- -- Table structure for table `mamcal_categories` -- DROP TABLE IF EXISTS `mamcal_categories`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `mamcal_categories` ( `cat_id` int(11) NOT NULL AUTO_INCREMENT, `cat_parent` int(11) NOT NULL DEFAULT '0', `cat_name` varchar(150) NOT NULL DEFAULT '', `description` text NOT NULL, `color` varchar(10) DEFAULT '#000000', `bgcolor` varchar(10) DEFAULT '#EEF0F0', `options` tinyint(4) DEFAULT '0', `enabled` tinyint(4) DEFAULT '0', PRIMARY KEY (`cat_id`), UNIQUE KEY `cat_id` (`cat_id`) ) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=latin1 COMMENT='Table for event categories'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `mamcal_categories` -- LOCK TABLES `mamcal_categories` WRITE; /*!40000 ALTER TABLE `mamcal_categories` DISABLE KEYS */; INSERT INTO `mamcal_categories` VALUES (1,0,'General','This is the default category','#000000','#EEF0F0',0,1); /*!40000 ALTER TABLE `mamcal_categories` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `mamcal_config` -- DROP TABLE IF EXISTS `mamcal_config`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `mamcal_config` ( `name` varchar(40) NOT NULL DEFAULT '', `value` varchar(255) NOT NULL DEFAULT '', PRIMARY KEY (`name`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1 COMMENT='Table for configurable parameters'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `mamcal_config` -- LOCK TABLES `mamcal_config` WRITE; /*!40000 ALTER TABLE `mamcal_config` DISABLE KEYS */; INSERT INTO `mamcal_config` VALUES ('allowed_file_extensions','GIF/PNG/JPG/JPEG'),('max_upl_size','20000'),('cookie_name','ext20'),('cookie_path','/'),('debug_mode','0'),('events_per_page','10'),('calendar_name','mamCAL'),('calendar_admin_email','mam@heimam.at'),('calendar_description','mam\'s online calendar'),('lang','english'),('charset','language-file'),('main_table_width','650'),('max_tabs','12'),('theme','default'),('time_format_24hours','1'),('auto_daylight_saving','1'),('default_view','2'),('popup_event_mode','0'),('popup_event_width','550'),('popup_event_height','300'),('add_event_view','1'),('cats_view','1'),('daily_view','1'),('weekly_view','1'),('monthly_view','1'),('flyer_view','1'),('search_view','1'),('day_start','1'),('archive','1'),('flyer_show_picture','1'),('addevent_allow_html','0'),('addevent_allow_contact','1'),('addevent_allow_email','1'),('addevent_allow_url','1'),('addevent_allow_picture','1'),('new_post_notification','1'),('cal_view_max_chars','100'),('flyer_view_max_chars','100'),('weekly_view_max_chars','100'),('daily_view_max_chars','100'),('cats_view_max_chars','100'),('mini_cal_def_picture','def_pic.gif'),('mini_cal_diplay_options','default'),('release_name','2.0 Beta 2'),('release_version','200.26'),('release_type','beta'),('sort_order','ta'),('picture_chmod','0644'),('max_upl_dim','450'),('allow_user_registration','1'),('reg_email_verify','1'),('reg_duplicate_emails','0'),('calendar_status','1'),('show_recurrent_events','1'),('multi_day_events','all'),('cal_view_show_week','1'),('mail_method','mail'),('mail_smtp_host','mgate.telekabel.at'),('mail_smtp_auth','0'),('mail_smtp_username',''),('mail_smtp_password',''),('legend_cat_columns','4'),('timezone','1'); /*!40000 ALTER TABLE `mamcal_config` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `mamcal_events` -- DROP TABLE IF EXISTS `mamcal_events`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `mamcal_events` ( `id` int(11) NOT NULL AUTO_INCREMENT, `title` varchar(255) NOT NULL DEFAULT '', `description` text NOT NULL, `contact` text NOT NULL, `url` varchar(100) NOT NULL DEFAULT '', `email` varchar(120) NOT NULL DEFAULT '', `picture` varchar(100) NOT NULL DEFAULT '', `cat` tinyint(2) NOT NULL DEFAULT '0', `day` tinyint(2) NOT NULL DEFAULT '0', `month` smallint(2) NOT NULL DEFAULT '0', `year` smallint(4) NOT NULL DEFAULT '0', `approved` tinyint(1) NOT NULL DEFAULT '0', `start_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `end_date` datetime DEFAULT '0000-00-00 00:00:00', `recur_type` varchar(16) DEFAULT NULL, `recur_val` tinyint(4) DEFAULT '0', `recur_end_type` tinyint(1) unsigned NOT NULL DEFAULT '0', `recur_count` tinyint(3) unsigned NOT NULL DEFAULT '0', `recur_until` date DEFAULT '0000-00-00', PRIMARY KEY (`id`), UNIQUE KEY `id` (`id`), KEY `start_date` (`start_date`) ) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=latin1 COMMENT='Table holding events and their attributes'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `mamcal_events` -- LOCK TABLES `mamcal_events` WRITE; /*!40000 ALTER TABLE `mamcal_events` DISABLE KEYS */; INSERT INTO `mamcal_events` VALUES (1,'ExtCalendar Installed','Congratulations! ExtCalendar is installed and ready to kick !','','','','',1,5,6,2006,1,'2006-06-05 18:13:13','2006-06-05 18:13:13',NULL,0,0,0,'0000-00-00'); /*!40000 ALTER TABLE `mamcal_events` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `mamcal_groups` -- DROP TABLE IF EXISTS `mamcal_groups`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `mamcal_groups` ( `group_id` int(11) NOT NULL AUTO_INCREMENT, `group_name` varchar(255) NOT NULL DEFAULT '', `description` varchar(255) NOT NULL DEFAULT '', `has_admin_access` tinyint(1) NOT NULL DEFAULT '0', `can_manage_accounts` tinyint(1) NOT NULL DEFAULT '0', `can_change_settings` tinyint(1) NOT NULL DEFAULT '0', `can_manage_cats` tinyint(1) NOT NULL DEFAULT '0', `upl_need_approval` tinyint(1) NOT NULL DEFAULT '1', `locked` tinyint(1) NOT NULL DEFAULT '0', PRIMARY KEY (`group_id`) ) ENGINE=MyISAM AUTO_INCREMENT=5 DEFAULT CHARSET=latin1 COMMENT='Table holding user groups'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `mamcal_groups` -- LOCK TABLES `mamcal_groups` WRITE; /*!40000 ALTER TABLE `mamcal_groups` DISABLE KEYS */; INSERT INTO `mamcal_groups` VALUES (1,'Administrators','Members of this group have the absolute power.',1,1,1,1,0,1),(2,'Moderators','Moderators can manage content of the calendar',1,0,0,1,0,0),(3,'Anonymous','Group of anonymous users',0,0,0,0,1,1),(4,'Banned','The damned group.',0,0,0,0,1,1); /*!40000 ALTER TABLE `mamcal_groups` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `mamcal_plugins` -- DROP TABLE IF EXISTS `mamcal_plugins`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `mamcal_plugins` ( `plugin_id` int(11) NOT NULL AUTO_INCREMENT, `plugin_name` varchar(64) NOT NULL DEFAULT '', `plugin_priority` tinyint(2) unsigned NOT NULL DEFAULT '50', `plugin_path` varchar(255) DEFAULT NULL, PRIMARY KEY (`plugin_id`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1 COMMENT='Table holding installed plugins'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `mamcal_plugins` -- LOCK TABLES `mamcal_plugins` WRITE; /*!40000 ALTER TABLE `mamcal_plugins` DISABLE KEYS */; /*!40000 ALTER TABLE `mamcal_plugins` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `mamcal_templates` -- DROP TABLE IF EXISTS `mamcal_templates`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `mamcal_templates` ( `template_id` int(11) NOT NULL AUTO_INCREMENT, `template_type` varchar(16) NOT NULL DEFAULT '', `template_description` varchar(255) DEFAULT NULL, `template_status` tinyint(1) NOT NULL DEFAULT '0', `template_value` text, `last_access` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', PRIMARY KEY (`template_id`), UNIQUE KEY `template_type` (`template_type`), KEY `template_status` (`template_status`), FULLTEXT KEY `template_value` (`template_value`) ) ENGINE=MyISAM AUTO_INCREMENT=4 DEFAULT CHARSET=latin1 COMMENT='Table for custom interface template'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `mamcal_templates` -- LOCK TABLES `mamcal_templates` WRITE; /*!40000 ALTER TABLE `mamcal_templates` DISABLE KEYS */; INSERT INTO `mamcal_templates` VALUES (1,'header','Custom header structure to display on top',0,'\r\n
\r\n
{CAL_NAME}
\r\n
{CAL_DESCRIPTION}
\r\n
\r\n {ADMIN_MENU}\r\n
\r\n {MAIN_MENU} \r\n
\r\n
\r\n','2006-06-05 20:13:13'),(2,'footer','Custom footer structure to display at the bottom',0,'
\r\n
\r\n','2006-06-05 20:13:13'),(3,'meta','Space to hold meta tags and other browser related information',1,'','2006-06-05 20:13:13'); /*!40000 ALTER TABLE `mamcal_templates` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `mamcal_users` -- DROP TABLE IF EXISTS `mamcal_users`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `mamcal_users` ( `user_id` int(11) NOT NULL AUTO_INCREMENT, `username` varchar(30) NOT NULL DEFAULT '', `password` varchar(64) NOT NULL DEFAULT '', `firstname` varchar(64) DEFAULT '', `lastname` varchar(64) DEFAULT '', `group_id` int(11) NOT NULL DEFAULT '2', `lastvisit` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `email` varchar(255) NOT NULL DEFAULT '', `user_regdate` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `user_lang` varchar(255) NOT NULL DEFAULT '', `user_website` varchar(255) NOT NULL DEFAULT '', `user_location` varchar(255) NOT NULL DEFAULT '', `user_occupation` varchar(255) NOT NULL DEFAULT '', `reg_key` varchar(64) DEFAULT NULL, `user_status` tinyint(1) NOT NULL DEFAULT '0', PRIMARY KEY (`user_id`), UNIQUE KEY `username` (`username`) ) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=latin1 COMMENT='Table for calendar users'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `mamcal_users` -- LOCK TABLES `mamcal_users` WRITE; /*!40000 ALTER TABLE `mamcal_users` DISABLE KEYS */; INSERT INTO `mamcal_users` VALUES (1,'admin','5a9361b28ee51795f1e82d9054919034','Mr.','Administrator',1,'2006-10-26 23:47:48','mam@heimam.at','2006-06-05 20:13:13','','','','',NULL,1); /*!40000 ALTER TABLE `mamcal_users` ENABLE KEYS */; UNLOCK TABLES; -- -- Current Database: `horde` -- CREATE DATABASE /*!32312 IF NOT EXISTS*/ `horde` /*!40100 DEFAULT CHARACTER SET latin1 */; USE `horde`; -- -- Table structure for table `horde_alarms` -- DROP TABLE IF EXISTS `horde_alarms`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `horde_alarms` ( `alarm_id` varchar(250) NOT NULL, `alarm_uid` varchar(250) NOT NULL, `alarm_start` datetime NOT NULL, `alarm_end` datetime DEFAULT NULL, `alarm_methods` varchar(255) DEFAULT NULL, `alarm_params` text, `alarm_title` varchar(255) NOT NULL, `alarm_text` text, `alarm_snooze` datetime DEFAULT NULL, `alarm_dismissed` tinyint(1) NOT NULL DEFAULT '0', `alarm_internal` text, KEY `alarm_id_idx` (`alarm_id`), KEY `alarm_user_idx` (`alarm_uid`), KEY `alarm_start_idx` (`alarm_start`), KEY `alarm_end_idx` (`alarm_end`), KEY `alarm_snooze_idx` (`alarm_snooze`), KEY `alarm_dismissed_idx` (`alarm_dismissed`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `horde_alarms` -- LOCK TABLES `horde_alarms` WRITE; /*!40000 ALTER TABLE `horde_alarms` DISABLE KEYS */; /*!40000 ALTER TABLE `horde_alarms` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `horde_cache` -- DROP TABLE IF EXISTS `horde_cache`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `horde_cache` ( `cache_id` varchar(32) NOT NULL, `cache_timestamp` bigint(20) NOT NULL, `cache_expiration` bigint(20) NOT NULL, `cache_data` longblob, PRIMARY KEY (`cache_id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `horde_cache` -- LOCK TABLES `horde_cache` WRITE; /*!40000 ALTER TABLE `horde_cache` DISABLE KEYS */; /*!40000 ALTER TABLE `horde_cache` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `horde_datatree` -- DROP TABLE IF EXISTS `horde_datatree`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `horde_datatree` ( `datatree_id` int(10) unsigned NOT NULL, `group_uid` varchar(255) NOT NULL, `user_uid` varchar(255) NOT NULL, `datatree_name` varchar(255) NOT NULL, `datatree_parents` varchar(255) NOT NULL, `datatree_order` int(11) DEFAULT NULL, `datatree_data` text, `datatree_serialized` smallint(6) NOT NULL DEFAULT '0', PRIMARY KEY (`datatree_id`), KEY `datatree_datatree_name_idx` (`datatree_name`), KEY `datatree_group_idx` (`group_uid`), KEY `datatree_user_idx` (`user_uid`), KEY `datatree_serialized_idx` (`datatree_serialized`), KEY `datatree_parents_idx` (`datatree_parents`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `horde_datatree` -- LOCK TABLES `horde_datatree` WRITE; /*!40000 ALTER TABLE `horde_datatree` DISABLE KEYS */; /*!40000 ALTER TABLE `horde_datatree` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `horde_datatree_attributes` -- DROP TABLE IF EXISTS `horde_datatree_attributes`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `horde_datatree_attributes` ( `datatree_id` int(10) unsigned NOT NULL, `attribute_name` varchar(255) NOT NULL, `attribute_key` varchar(255) NOT NULL DEFAULT '', `attribute_value` text, KEY `datatree_attribute_idx` (`datatree_id`), KEY `datatree_attribute_name_idx` (`attribute_name`), KEY `datatree_attribute_key_idx` (`attribute_key`), KEY `datatree_attribute_value_idx` (`attribute_value`(255)) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `horde_datatree_attributes` -- LOCK TABLES `horde_datatree_attributes` WRITE; /*!40000 ALTER TABLE `horde_datatree_attributes` DISABLE KEYS */; /*!40000 ALTER TABLE `horde_datatree_attributes` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `horde_groups` -- DROP TABLE IF EXISTS `horde_groups`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `horde_groups` ( `group_uid` int(10) unsigned NOT NULL, `group_name` varchar(255) NOT NULL, `group_parents` varchar(255) NOT NULL, `group_email` varchar(255) DEFAULT NULL, PRIMARY KEY (`group_uid`), UNIQUE KEY `group_name` (`group_name`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `horde_groups` -- LOCK TABLES `horde_groups` WRITE; /*!40000 ALTER TABLE `horde_groups` DISABLE KEYS */; /*!40000 ALTER TABLE `horde_groups` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `horde_groups_members` -- DROP TABLE IF EXISTS `horde_groups_members`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `horde_groups_members` ( `group_uid` int(10) unsigned NOT NULL, `user_uid` varchar(255) NOT NULL, KEY `group_uid_idx` (`group_uid`), KEY `user_uid_idx` (`user_uid`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `horde_groups_members` -- LOCK TABLES `horde_groups_members` WRITE; /*!40000 ALTER TABLE `horde_groups_members` DISABLE KEYS */; /*!40000 ALTER TABLE `horde_groups_members` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `horde_histories` -- DROP TABLE IF EXISTS `horde_histories`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `horde_histories` ( `history_id` int(10) unsigned NOT NULL, `object_uid` varchar(255) NOT NULL, `history_action` varchar(32) NOT NULL, `history_ts` bigint(20) NOT NULL, `history_desc` text, `history_who` varchar(255) DEFAULT NULL, `history_extra` text, PRIMARY KEY (`history_id`), KEY `history_action_idx` (`history_action`), KEY `history_ts_idx` (`history_ts`), KEY `history_uid_idx` (`object_uid`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `horde_histories` -- LOCK TABLES `horde_histories` WRITE; /*!40000 ALTER TABLE `horde_histories` DISABLE KEYS */; /*!40000 ALTER TABLE `horde_histories` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `horde_locks` -- DROP TABLE IF EXISTS `horde_locks`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `horde_locks` ( `lock_id` varchar(36) NOT NULL, `lock_owner` varchar(32) NOT NULL, `lock_scope` varchar(32) NOT NULL, `lock_principal` varchar(255) NOT NULL, `lock_origin_timestamp` bigint(20) NOT NULL, `lock_update_timestamp` bigint(20) NOT NULL, `lock_expiry_timestamp` bigint(20) NOT NULL, `lock_type` tinyint(3) unsigned NOT NULL, PRIMARY KEY (`lock_id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `horde_locks` -- LOCK TABLES `horde_locks` WRITE; /*!40000 ALTER TABLE `horde_locks` DISABLE KEYS */; /*!40000 ALTER TABLE `horde_locks` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `horde_perms` -- DROP TABLE IF EXISTS `horde_perms`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `horde_perms` ( `perm_id` int(11) NOT NULL, `perm_name` varchar(255) NOT NULL, `perm_parents` varchar(255) NOT NULL, `perm_data` text, PRIMARY KEY (`perm_id`), UNIQUE KEY `perm_name` (`perm_name`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `horde_perms` -- LOCK TABLES `horde_perms` WRITE; /*!40000 ALTER TABLE `horde_perms` DISABLE KEYS */; /*!40000 ALTER TABLE `horde_perms` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `horde_prefs` -- DROP TABLE IF EXISTS `horde_prefs`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `horde_prefs` ( `pref_uid` varchar(200) NOT NULL, `pref_scope` varchar(16) NOT NULL DEFAULT '', `pref_name` varchar(32) NOT NULL, `pref_value` longtext, PRIMARY KEY (`pref_uid`,`pref_scope`,`pref_name`), KEY `pref_uid_idx` (`pref_uid`), KEY `pref_scope_idx` (`pref_scope`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `horde_prefs` -- LOCK TABLES `horde_prefs` WRITE; /*!40000 ALTER TABLE `horde_prefs` DISABLE KEYS */; /*!40000 ALTER TABLE `horde_prefs` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `horde_sessionhandler` -- DROP TABLE IF EXISTS `horde_sessionhandler`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `horde_sessionhandler` ( `session_id` varchar(32) NOT NULL, `session_lastmodified` bigint(20) NOT NULL, `session_data` longblob, PRIMARY KEY (`session_id`), KEY `session_lastmodified_idx` (`session_lastmodified`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `horde_sessionhandler` -- LOCK TABLES `horde_sessionhandler` WRITE; /*!40000 ALTER TABLE `horde_sessionhandler` DISABLE KEYS */; /*!40000 ALTER TABLE `horde_sessionhandler` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `horde_signups` -- DROP TABLE IF EXISTS `horde_signups`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `horde_signups` ( `user_name` varchar(255) NOT NULL, `signup_date` varchar(255) NOT NULL, `signup_host` varchar(255) NOT NULL, `signup_data` text NOT NULL, PRIMARY KEY (`user_name`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `horde_signups` -- LOCK TABLES `horde_signups` WRITE; /*!40000 ALTER TABLE `horde_signups` DISABLE KEYS */; /*!40000 ALTER TABLE `horde_signups` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `horde_syncml_anchors` -- DROP TABLE IF EXISTS `horde_syncml_anchors`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `horde_syncml_anchors` ( `syncml_syncpartner` varchar(255) NOT NULL, `syncml_db` varchar(255) NOT NULL, `syncml_uid` varchar(255) NOT NULL, `syncml_clientanchor` varchar(255) DEFAULT NULL, `syncml_serveranchor` varchar(255) DEFAULT NULL, KEY `syncml_anchors_syncpartner_idx` (`syncml_syncpartner`), KEY `syncml_anchors_db_idx` (`syncml_db`), KEY `syncml_anchors_uid_idx` (`syncml_uid`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `horde_syncml_anchors` -- LOCK TABLES `horde_syncml_anchors` WRITE; /*!40000 ALTER TABLE `horde_syncml_anchors` DISABLE KEYS */; /*!40000 ALTER TABLE `horde_syncml_anchors` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `horde_syncml_map` -- DROP TABLE IF EXISTS `horde_syncml_map`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `horde_syncml_map` ( `syncml_syncpartner` varchar(255) NOT NULL, `syncml_db` varchar(255) NOT NULL, `syncml_uid` varchar(255) NOT NULL, `syncml_cuid` varchar(255) DEFAULT NULL, `syncml_suid` varchar(255) DEFAULT NULL, `syncml_timestamp` int(11) DEFAULT NULL, KEY `syncml_syncpartner_idx` (`syncml_syncpartner`), KEY `syncml_db_idx` (`syncml_db`), KEY `syncml_uid_idx` (`syncml_uid`), KEY `syncml_cuid_idx` (`syncml_cuid`), KEY `syncml_suid_idx` (`syncml_suid`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `horde_syncml_map` -- LOCK TABLES `horde_syncml_map` WRITE; /*!40000 ALTER TABLE `horde_syncml_map` DISABLE KEYS */; /*!40000 ALTER TABLE `horde_syncml_map` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `horde_tokens` -- DROP TABLE IF EXISTS `horde_tokens`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `horde_tokens` ( `token_address` varchar(100) NOT NULL, `token_id` varchar(32) NOT NULL, `token_timestamp` bigint(20) NOT NULL, PRIMARY KEY (`token_address`,`token_id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `horde_tokens` -- LOCK TABLES `horde_tokens` WRITE; /*!40000 ALTER TABLE `horde_tokens` DISABLE KEYS */; /*!40000 ALTER TABLE `horde_tokens` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `horde_users` -- DROP TABLE IF EXISTS `horde_users`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `horde_users` ( `user_uid` varchar(255) NOT NULL, `user_pass` varchar(255) NOT NULL, `user_soft_expiration_date` int(11) DEFAULT NULL, `user_hard_expiration_date` int(11) DEFAULT NULL, PRIMARY KEY (`user_uid`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `horde_users` -- LOCK TABLES `horde_users` WRITE; /*!40000 ALTER TABLE `horde_users` DISABLE KEYS */; /*!40000 ALTER TABLE `horde_users` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `horde_vfs` -- DROP TABLE IF EXISTS `horde_vfs`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `horde_vfs` ( `vfs_id` int(10) unsigned NOT NULL, `vfs_type` smallint(5) unsigned NOT NULL, `vfs_path` varchar(255) NOT NULL, `vfs_name` varchar(255) NOT NULL, `vfs_modified` bigint(20) NOT NULL, `vfs_owner` varchar(255) NOT NULL, `vfs_data` longblob, PRIMARY KEY (`vfs_id`), KEY `vfs_path_idx` (`vfs_path`), KEY `vfs_name_idx` (`vfs_name`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `horde_vfs` -- LOCK TABLES `horde_vfs` WRITE; /*!40000 ALTER TABLE `horde_vfs` DISABLE KEYS */; /*!40000 ALTER TABLE `horde_vfs` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `imp_sentmail` -- DROP TABLE IF EXISTS `imp_sentmail`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `imp_sentmail` ( `sentmail_id` bigint(20) NOT NULL, `sentmail_who` varchar(255) NOT NULL, `sentmail_ts` bigint(20) NOT NULL, `sentmail_messageid` varchar(255) NOT NULL, `sentmail_action` varchar(32) NOT NULL, `sentmail_recipient` varchar(255) NOT NULL, `sentmail_success` int(11) NOT NULL, PRIMARY KEY (`sentmail_id`), KEY `sentmail_ts_idx` (`sentmail_ts`), KEY `sentmail_who_idx` (`sentmail_who`), KEY `sentmail_success_idx` (`sentmail_success`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `imp_sentmail` -- LOCK TABLES `imp_sentmail` WRITE; /*!40000 ALTER TABLE `imp_sentmail` DISABLE KEYS */; /*!40000 ALTER TABLE `imp_sentmail` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `ingo_forwards` -- DROP TABLE IF EXISTS `ingo_forwards`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `ingo_forwards` ( `forward_owner` varchar(255) NOT NULL, `forward_addresses` text, `forward_keep` int(11) NOT NULL DEFAULT '0', PRIMARY KEY (`forward_owner`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `ingo_forwards` -- LOCK TABLES `ingo_forwards` WRITE; /*!40000 ALTER TABLE `ingo_forwards` DISABLE KEYS */; /*!40000 ALTER TABLE `ingo_forwards` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `ingo_lists` -- DROP TABLE IF EXISTS `ingo_lists`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `ingo_lists` ( `list_owner` varchar(255) NOT NULL, `list_blacklist` int(11) DEFAULT '0', `list_address` varchar(255) NOT NULL, KEY `list_idx` (`list_owner`,`list_blacklist`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `ingo_lists` -- LOCK TABLES `ingo_lists` WRITE; /*!40000 ALTER TABLE `ingo_lists` DISABLE KEYS */; /*!40000 ALTER TABLE `ingo_lists` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `ingo_rules` -- DROP TABLE IF EXISTS `ingo_rules`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `ingo_rules` ( `rule_id` int(11) NOT NULL, `rule_owner` varchar(255) NOT NULL, `rule_name` varchar(255) NOT NULL, `rule_action` int(11) NOT NULL, `rule_value` varchar(255) DEFAULT NULL, `rule_flags` int(11) DEFAULT NULL, `rule_conditions` text, `rule_combine` int(11) DEFAULT NULL, `rule_stop` int(11) DEFAULT NULL, `rule_active` int(11) NOT NULL DEFAULT '1', `rule_order` int(11) NOT NULL DEFAULT '0', PRIMARY KEY (`rule_id`), KEY `rule_owner_idx` (`rule_owner`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `ingo_rules` -- LOCK TABLES `ingo_rules` WRITE; /*!40000 ALTER TABLE `ingo_rules` DISABLE KEYS */; /*!40000 ALTER TABLE `ingo_rules` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `ingo_shares` -- DROP TABLE IF EXISTS `ingo_shares`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `ingo_shares` ( `share_id` int(11) NOT NULL, `share_name` varchar(255) NOT NULL, `share_owner` varchar(255) NOT NULL, `share_flags` smallint(6) NOT NULL DEFAULT '0', `perm_creator` smallint(6) NOT NULL DEFAULT '0', `perm_default` smallint(6) NOT NULL DEFAULT '0', `perm_guest` smallint(6) NOT NULL DEFAULT '0', `attribute_name` varchar(255) NOT NULL, `attribute_desc` varchar(255) DEFAULT NULL, PRIMARY KEY (`share_id`), KEY `ingo_shares_share_name_idx` (`share_name`), KEY `ingo_shares_share_owner_idx` (`share_owner`), KEY `ingo_shares_perm_creator_idx` (`perm_creator`), KEY `ingo_shares_perm_default_idx` (`perm_default`), KEY `ingo_shares_perm_guest_idx` (`perm_guest`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `ingo_shares` -- LOCK TABLES `ingo_shares` WRITE; /*!40000 ALTER TABLE `ingo_shares` DISABLE KEYS */; /*!40000 ALTER TABLE `ingo_shares` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `ingo_shares_groups` -- DROP TABLE IF EXISTS `ingo_shares_groups`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `ingo_shares_groups` ( `share_id` int(11) NOT NULL, `group_uid` varchar(255) NOT NULL, `perm` smallint(6) NOT NULL, KEY `ingo_shares_groups_share_id_idx` (`share_id`), KEY `ingo_shares_groups_group_uid_idx` (`group_uid`), KEY `ingo_shares_groups_perm_idx` (`perm`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `ingo_shares_groups` -- LOCK TABLES `ingo_shares_groups` WRITE; /*!40000 ALTER TABLE `ingo_shares_groups` DISABLE KEYS */; /*!40000 ALTER TABLE `ingo_shares_groups` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `ingo_shares_users` -- DROP TABLE IF EXISTS `ingo_shares_users`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `ingo_shares_users` ( `share_id` int(11) NOT NULL, `user_uid` varchar(255) NOT NULL, `perm` smallint(6) NOT NULL, KEY `ingo_shares_users_share_id_idx` (`share_id`), KEY `ingo_shares_users_user_uid_idx` (`user_uid`), KEY `ingo_shares_users_perm_idx` (`perm`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `ingo_shares_users` -- LOCK TABLES `ingo_shares_users` WRITE; /*!40000 ALTER TABLE `ingo_shares_users` DISABLE KEYS */; /*!40000 ALTER TABLE `ingo_shares_users` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `ingo_spam` -- DROP TABLE IF EXISTS `ingo_spam`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `ingo_spam` ( `spam_owner` varchar(255) NOT NULL, `spam_level` int(11) DEFAULT '5', `spam_folder` varchar(255) DEFAULT NULL, PRIMARY KEY (`spam_owner`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `ingo_spam` -- LOCK TABLES `ingo_spam` WRITE; /*!40000 ALTER TABLE `ingo_spam` DISABLE KEYS */; /*!40000 ALTER TABLE `ingo_spam` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `ingo_vacations` -- DROP TABLE IF EXISTS `ingo_vacations`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `ingo_vacations` ( `vacation_owner` varchar(255) NOT NULL, `vacation_addresses` text, `vacation_subject` varchar(255) DEFAULT NULL, `vacation_reason` text, `vacation_days` int(11) DEFAULT '7', `vacation_start` int(11) DEFAULT NULL, `vacation_end` int(11) DEFAULT NULL, `vacation_excludes` text, `vacation_ignorelists` int(11) DEFAULT '1', PRIMARY KEY (`vacation_owner`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `ingo_vacations` -- LOCK TABLES `ingo_vacations` WRITE; /*!40000 ALTER TABLE `ingo_vacations` DISABLE KEYS */; /*!40000 ALTER TABLE `ingo_vacations` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `kronolith_events` -- DROP TABLE IF EXISTS `kronolith_events`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `kronolith_events` ( `event_id` varchar(32) NOT NULL, `event_uid` varchar(255) NOT NULL, `calendar_id` varchar(255) NOT NULL, `event_creator_id` varchar(255) NOT NULL, `event_description` text, `event_location` text, `event_status` int(11) DEFAULT '0', `event_attendees` text, `event_keywords` text, `event_exceptions` text, `event_title` varchar(255) DEFAULT NULL, `event_category` varchar(80) DEFAULT NULL, `event_recurtype` smallint(6) DEFAULT '0', `event_recurinterval` smallint(6) DEFAULT NULL, `event_recurdays` smallint(6) DEFAULT NULL, `event_recurenddate` datetime DEFAULT NULL, `event_recurcount` int(11) DEFAULT NULL, `event_start` datetime DEFAULT NULL, `event_end` datetime DEFAULT NULL, `event_alarm` int(11) DEFAULT '0', `event_modified` int(11) NOT NULL, `event_private` tinyint(4) NOT NULL DEFAULT '0', PRIMARY KEY (`event_id`), KEY `kronolith_calendar_idx` (`calendar_id`), KEY `kronolith_uid_idx` (`event_uid`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `kronolith_events` -- LOCK TABLES `kronolith_events` WRITE; /*!40000 ALTER TABLE `kronolith_events` DISABLE KEYS */; /*!40000 ALTER TABLE `kronolith_events` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `kronolith_shares` -- DROP TABLE IF EXISTS `kronolith_shares`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `kronolith_shares` ( `share_id` int(11) NOT NULL, `share_name` varchar(255) NOT NULL, `share_owner` varchar(255) NOT NULL, `share_flags` smallint(6) NOT NULL DEFAULT '0', `perm_creator` smallint(6) NOT NULL DEFAULT '0', `perm_default` smallint(6) NOT NULL DEFAULT '0', `perm_guest` smallint(6) NOT NULL DEFAULT '0', `attribute_name` varchar(255) NOT NULL, `attribute_desc` varchar(255) DEFAULT NULL, PRIMARY KEY (`share_id`), KEY `kronolith_shares_share_name_idx` (`share_name`), KEY `kronolith_shares_share_owner_idx` (`share_owner`), KEY `kronolith_shares_perm_creator_idx` (`perm_creator`), KEY `kronolith_shares_perm_default_idx` (`perm_default`), KEY `kronolith_shares_perm_guest_idx` (`perm_guest`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `kronolith_shares` -- LOCK TABLES `kronolith_shares` WRITE; /*!40000 ALTER TABLE `kronolith_shares` DISABLE KEYS */; /*!40000 ALTER TABLE `kronolith_shares` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `kronolith_shares_groups` -- DROP TABLE IF EXISTS `kronolith_shares_groups`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `kronolith_shares_groups` ( `share_id` int(11) NOT NULL, `group_uid` varchar(255) NOT NULL, `perm` smallint(6) NOT NULL, KEY `kronolith_shares_groups_share_id_idx` (`share_id`), KEY `kronolith_shares_groups_group_uid_idx` (`group_uid`), KEY `kronolith_shares_groups_perm_idx` (`perm`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `kronolith_shares_groups` -- LOCK TABLES `kronolith_shares_groups` WRITE; /*!40000 ALTER TABLE `kronolith_shares_groups` DISABLE KEYS */; /*!40000 ALTER TABLE `kronolith_shares_groups` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `kronolith_shares_users` -- DROP TABLE IF EXISTS `kronolith_shares_users`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `kronolith_shares_users` ( `share_id` int(11) NOT NULL, `user_uid` varchar(255) NOT NULL, `perm` smallint(6) NOT NULL, KEY `kronolith_shares_users_share_id_idx` (`share_id`), KEY `kronolith_shares_users_user_uid_idx` (`user_uid`), KEY `kronolith_shares_users_perm_idx` (`perm`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `kronolith_shares_users` -- LOCK TABLES `kronolith_shares_users` WRITE; /*!40000 ALTER TABLE `kronolith_shares_users` DISABLE KEYS */; /*!40000 ALTER TABLE `kronolith_shares_users` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `kronolith_storage` -- DROP TABLE IF EXISTS `kronolith_storage`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `kronolith_storage` ( `vfb_owner` varchar(255) DEFAULT NULL, `vfb_email` varchar(255) NOT NULL, `vfb_serialized` text NOT NULL, KEY `kronolith_vfb_owner_idx` (`vfb_owner`), KEY `kronolith_vfb_email_idx` (`vfb_email`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `kronolith_storage` -- LOCK TABLES `kronolith_storage` WRITE; /*!40000 ALTER TABLE `kronolith_storage` DISABLE KEYS */; /*!40000 ALTER TABLE `kronolith_storage` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `mnemo_memos` -- DROP TABLE IF EXISTS `mnemo_memos`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `mnemo_memos` ( `memo_owner` varchar(255) NOT NULL, `memo_id` varchar(32) NOT NULL, `memo_uid` varchar(255) NOT NULL, `memo_desc` varchar(64) NOT NULL, `memo_body` text, `memo_category` varchar(80) DEFAULT NULL, `memo_private` smallint(6) NOT NULL DEFAULT '0', PRIMARY KEY (`memo_owner`,`memo_id`), KEY `mnemo_notepad_idx` (`memo_owner`), KEY `mnemo_uid_idx` (`memo_uid`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `mnemo_memos` -- LOCK TABLES `mnemo_memos` WRITE; /*!40000 ALTER TABLE `mnemo_memos` DISABLE KEYS */; /*!40000 ALTER TABLE `mnemo_memos` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `mnemo_shares` -- DROP TABLE IF EXISTS `mnemo_shares`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `mnemo_shares` ( `share_id` int(11) NOT NULL, `share_name` varchar(255) NOT NULL, `share_owner` varchar(255) NOT NULL, `share_flags` smallint(6) NOT NULL DEFAULT '0', `perm_creator` smallint(6) NOT NULL DEFAULT '0', `perm_default` smallint(6) NOT NULL DEFAULT '0', `perm_guest` smallint(6) NOT NULL DEFAULT '0', `attribute_name` varchar(255) NOT NULL, `attribute_desc` varchar(255) DEFAULT NULL, PRIMARY KEY (`share_id`), KEY `mnemo_shares_share_name_idx` (`share_name`), KEY `mnemo_shares_share_owner_idx` (`share_owner`), KEY `mnemo_shares_perm_creator_idx` (`perm_creator`), KEY `mnemo_shares_perm_default_idx` (`perm_default`), KEY `mnemo_shares_perm_guest_idx` (`perm_guest`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `mnemo_shares` -- LOCK TABLES `mnemo_shares` WRITE; /*!40000 ALTER TABLE `mnemo_shares` DISABLE KEYS */; /*!40000 ALTER TABLE `mnemo_shares` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `mnemo_shares_groups` -- DROP TABLE IF EXISTS `mnemo_shares_groups`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `mnemo_shares_groups` ( `share_id` int(11) NOT NULL, `group_uid` varchar(255) NOT NULL, `perm` smallint(6) NOT NULL, KEY `mnemo_shares_groups_share_id_idx` (`share_id`), KEY `mnemo_shares_groups_group_uid_idx` (`group_uid`), KEY `mnemo_shares_groups_perm_idx` (`perm`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `mnemo_shares_groups` -- LOCK TABLES `mnemo_shares_groups` WRITE; /*!40000 ALTER TABLE `mnemo_shares_groups` DISABLE KEYS */; /*!40000 ALTER TABLE `mnemo_shares_groups` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `mnemo_shares_users` -- DROP TABLE IF EXISTS `mnemo_shares_users`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `mnemo_shares_users` ( `share_id` int(11) NOT NULL, `user_uid` varchar(255) NOT NULL, `perm` smallint(6) NOT NULL, KEY `mnemo_shares_users_share_id_idx` (`share_id`), KEY `mnemo_shares_users_user_uid_idx` (`user_uid`), KEY `mnemo_shares_users_perm_idx` (`perm`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `mnemo_shares_users` -- LOCK TABLES `mnemo_shares_users` WRITE; /*!40000 ALTER TABLE `mnemo_shares_users` DISABLE KEYS */; /*!40000 ALTER TABLE `mnemo_shares_users` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `turba_objects` -- DROP TABLE IF EXISTS `turba_objects`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `turba_objects` ( `object_id` varchar(32) NOT NULL, `owner_id` varchar(255) NOT NULL, `object_type` varchar(255) NOT NULL DEFAULT 'Object', `object_uid` varchar(255) DEFAULT NULL, `object_members` blob, `object_firstname` varchar(255) DEFAULT NULL, `object_lastname` varchar(255) DEFAULT NULL, `object_middlenames` varchar(255) DEFAULT NULL, `object_nameprefix` varchar(32) DEFAULT NULL, `object_namesuffix` varchar(32) DEFAULT NULL, `object_alias` varchar(32) DEFAULT NULL, `object_photo` blob, `object_phototype` varchar(10) DEFAULT NULL, `object_bday` varchar(10) DEFAULT NULL, `object_homestreet` varchar(255) DEFAULT NULL, `object_homepob` varchar(10) DEFAULT NULL, `object_homecity` varchar(255) DEFAULT NULL, `object_homeprovince` varchar(255) DEFAULT NULL, `object_homepostalcode` varchar(10) DEFAULT NULL, `object_homecountry` varchar(255) DEFAULT NULL, `object_workstreet` varchar(255) DEFAULT NULL, `object_workpob` varchar(10) DEFAULT NULL, `object_workcity` varchar(255) DEFAULT NULL, `object_workprovince` varchar(255) DEFAULT NULL, `object_workpostalcode` varchar(10) DEFAULT NULL, `object_workcountry` varchar(255) DEFAULT NULL, `object_tz` varchar(32) DEFAULT NULL, `object_geo` varchar(255) DEFAULT NULL, `object_email` varchar(255) DEFAULT NULL, `object_homephone` varchar(25) DEFAULT NULL, `object_workphone` varchar(25) DEFAULT NULL, `object_cellphone` varchar(25) DEFAULT NULL, `object_fax` varchar(25) DEFAULT NULL, `object_pager` varchar(25) DEFAULT NULL, `object_title` varchar(255) DEFAULT NULL, `object_role` varchar(255) DEFAULT NULL, `object_logo` blob, `object_logotype` varchar(10) DEFAULT NULL, `object_company` varchar(255) DEFAULT NULL, `object_category` varchar(80) DEFAULT NULL, `object_notes` text, `object_url` varchar(255) DEFAULT NULL, `object_freebusyurl` varchar(255) DEFAULT NULL, `object_pgppublickey` text, `object_smimepublickey` text, PRIMARY KEY (`object_id`), KEY `turba_owner_idx` (`owner_id`), KEY `turba_email_idx` (`object_email`), KEY `turba_firstname_idx` (`object_firstname`), KEY `turba_lastname_idx` (`object_lastname`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `turba_objects` -- LOCK TABLES `turba_objects` WRITE; /*!40000 ALTER TABLE `turba_objects` DISABLE KEYS */; /*!40000 ALTER TABLE `turba_objects` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `turba_shares` -- DROP TABLE IF EXISTS `turba_shares`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `turba_shares` ( `share_id` int(11) NOT NULL, `share_name` varchar(255) NOT NULL, `share_owner` varchar(255) NOT NULL, `share_flags` smallint(6) NOT NULL DEFAULT '0', `perm_creator` smallint(6) NOT NULL DEFAULT '0', `perm_default` smallint(6) NOT NULL DEFAULT '0', `perm_guest` smallint(6) NOT NULL DEFAULT '0', `attribute_name` varchar(255) NOT NULL, `attribute_desc` varchar(255) DEFAULT NULL, `attribute_params` text, PRIMARY KEY (`share_id`), KEY `turba_shares_share_name_idx` (`share_name`), KEY `turba_shares_share_owner_idx` (`share_owner`), KEY `turba_shares_perm_creator_idx` (`perm_creator`), KEY `turba_shares_perm_default_idx` (`perm_default`), KEY `turba_shares_perm_guest_idx` (`perm_guest`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `turba_shares` -- LOCK TABLES `turba_shares` WRITE; /*!40000 ALTER TABLE `turba_shares` DISABLE KEYS */; /*!40000 ALTER TABLE `turba_shares` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `turba_shares_groups` -- DROP TABLE IF EXISTS `turba_shares_groups`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `turba_shares_groups` ( `share_id` int(11) NOT NULL, `group_uid` varchar(255) NOT NULL, `perm` smallint(6) NOT NULL, KEY `turba_shares_groups_share_id_idx` (`share_id`), KEY `turba_shares_groups_group_uid_idx` (`group_uid`), KEY `turba_shares_groups_perm_idx` (`perm`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `turba_shares_groups` -- LOCK TABLES `turba_shares_groups` WRITE; /*!40000 ALTER TABLE `turba_shares_groups` DISABLE KEYS */; /*!40000 ALTER TABLE `turba_shares_groups` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `turba_shares_users` -- DROP TABLE IF EXISTS `turba_shares_users`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `turba_shares_users` ( `share_id` int(11) NOT NULL, `user_uid` varchar(255) NOT NULL, `perm` smallint(6) NOT NULL, KEY `turba_shares_users_share_id_idx` (`share_id`), KEY `turba_shares_users_user_uid_idx` (`user_uid`), KEY `turba_shares_users_perm_idx` (`perm`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `turba_shares_users` -- LOCK TABLES `turba_shares_users` WRITE; /*!40000 ALTER TABLE `turba_shares_users` DISABLE KEYS */; /*!40000 ALTER TABLE `turba_shares_users` ENABLE KEYS */; UNLOCK TABLES; -- -- Current Database: `joomla_einstein` -- CREATE DATABASE /*!32312 IF NOT EXISTS*/ `joomla_einstein` /*!40100 DEFAULT CHARACTER SET latin1 */; USE `joomla_einstein`; -- -- Table structure for table `einstein_banner` -- DROP TABLE IF EXISTS `einstein_banner`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `einstein_banner` ( `bid` int(11) NOT NULL AUTO_INCREMENT, `cid` int(11) NOT NULL DEFAULT '0', `type` varchar(10) NOT NULL DEFAULT 'banner', `name` varchar(50) NOT NULL DEFAULT '', `imptotal` int(11) NOT NULL DEFAULT '0', `impmade` int(11) NOT NULL DEFAULT '0', `clicks` int(11) NOT NULL DEFAULT '0', `imageurl` varchar(100) NOT NULL DEFAULT '', `clickurl` varchar(200) NOT NULL DEFAULT '', `date` datetime DEFAULT NULL, `showBanner` tinyint(1) NOT NULL DEFAULT '0', `checked_out` tinyint(1) NOT NULL DEFAULT '0', `checked_out_time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `editor` varchar(50) DEFAULT NULL, `custombannercode` text, PRIMARY KEY (`bid`), KEY `viewbanner` (`showBanner`) ) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `einstein_banner` -- LOCK TABLES `einstein_banner` WRITE; /*!40000 ALTER TABLE `einstein_banner` DISABLE KEYS */; INSERT INTO `einstein_banner` VALUES (1,1,'banner','OSM 1',0,42,0,'osmbanner1.png','http://www.opensourcematters.org','2004-07-07 15:31:29',1,0,'2000-00-00 00:00:00',NULL,NULL),(2,1,'banner','OSM 2',0,48,0,'osmbanner2.png','http://www.opensourcematters.org','2004-07-07 15:31:29',1,0,'2000-00-00 00:00:00',NULL,NULL); /*!40000 ALTER TABLE `einstein_banner` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `einstein_bannerclient` -- DROP TABLE IF EXISTS `einstein_bannerclient`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `einstein_bannerclient` ( `cid` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(60) NOT NULL DEFAULT '', `contact` varchar(60) NOT NULL DEFAULT '', `email` varchar(60) NOT NULL DEFAULT '', `extrainfo` text NOT NULL, `checked_out` tinyint(1) NOT NULL DEFAULT '0', `checked_out_time` time DEFAULT NULL, `editor` varchar(50) DEFAULT NULL, PRIMARY KEY (`cid`) ) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `einstein_bannerclient` -- LOCK TABLES `einstein_bannerclient` WRITE; /*!40000 ALTER TABLE `einstein_bannerclient` DISABLE KEYS */; INSERT INTO `einstein_bannerclient` VALUES (1,'Open Source Matters','Administrator','admin@opensourcematters.org','',0,'00:00:00',NULL); /*!40000 ALTER TABLE `einstein_bannerclient` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `einstein_bannerfinish` -- DROP TABLE IF EXISTS `einstein_bannerfinish`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `einstein_bannerfinish` ( `bid` int(11) NOT NULL AUTO_INCREMENT, `cid` int(11) NOT NULL DEFAULT '0', `type` varchar(10) NOT NULL DEFAULT '', `name` varchar(50) NOT NULL DEFAULT '', `impressions` int(11) NOT NULL DEFAULT '0', `clicks` int(11) NOT NULL DEFAULT '0', `imageurl` varchar(50) NOT NULL DEFAULT '', `datestart` datetime DEFAULT NULL, `dateend` datetime DEFAULT NULL, PRIMARY KEY (`bid`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `einstein_bannerfinish` -- LOCK TABLES `einstein_bannerfinish` WRITE; /*!40000 ALTER TABLE `einstein_bannerfinish` DISABLE KEYS */; /*!40000 ALTER TABLE `einstein_bannerfinish` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `einstein_categories` -- DROP TABLE IF EXISTS `einstein_categories`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `einstein_categories` ( `id` int(11) NOT NULL AUTO_INCREMENT, `parent_id` int(11) NOT NULL DEFAULT '0', `title` varchar(50) NOT NULL DEFAULT '', `name` varchar(255) NOT NULL DEFAULT '', `image` varchar(100) NOT NULL DEFAULT '', `section` varchar(50) NOT NULL DEFAULT '', `image_position` varchar(10) NOT NULL DEFAULT '', `description` text NOT NULL, `published` tinyint(1) NOT NULL DEFAULT '0', `checked_out` int(11) unsigned NOT NULL DEFAULT '0', `checked_out_time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `editor` varchar(50) DEFAULT NULL, `ordering` int(11) NOT NULL DEFAULT '0', `access` tinyint(3) unsigned NOT NULL DEFAULT '0', `count` int(11) NOT NULL DEFAULT '0', `params` text NOT NULL, PRIMARY KEY (`id`), KEY `cat_idx` (`section`,`published`,`access`), KEY `idx_section` (`section`), KEY `idx_access` (`access`), KEY `idx_checkout` (`checked_out`) ) ENGINE=MyISAM AUTO_INCREMENT=13 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `einstein_categories` -- LOCK TABLES `einstein_categories` WRITE; /*!40000 ALTER TABLE `einstein_categories` DISABLE KEYS */; INSERT INTO `einstein_categories` VALUES (1,0,'Latest','Latest News','taking_notes.jpg','1','left','The latest news from the Joomla! Team',1,0,'0000-00-00 00:00:00','',0,0,1,''),(2,0,'Joomla!','Joomla!','clock.jpg','com_weblinks','left','A selection of links that are all related to the Joomla! Project.',1,0,'0000-00-00 00:00:00',NULL,0,0,0,''),(3,0,'Newsflash','Newsflash','','2','left','',1,0,'0000-00-00 00:00:00','',0,0,0,''),(4,0,'Joomla!','Joomla!','','com_newsfeeds','left','',1,0,'0000-00-00 00:00:00',NULL,2,0,0,''),(5,0,'Business: general','Business: general','','com_newsfeeds','left','',1,0,'0000-00-00 00:00:00',NULL,1,0,0,''),(7,0,'Examples','Example FAQs','key.jpg','3','left','Here you will find an example set of FAQs.',1,0,'0000-00-00 00:00:00',NULL,0,0,2,''),(9,0,'Finance','Finance','','com_newsfeeds','left','',1,0,'0000-00-00 00:00:00',NULL,5,0,0,''),(10,0,'Linux','Linux','','com_newsfeeds','left','
\r\n',1,0,'0000-00-00 00:00:00',NULL,6,0,0,''),(11,0,'Internet','Internet','','com_newsfeeds','left','',1,0,'0000-00-00 00:00:00',NULL,7,0,0,''),(12,0,'Contacts','Contacts','','com_contact_details','left','Contact Details for this website',1,0,'0000-00-00 00:00:00',NULL,0,0,0,''); /*!40000 ALTER TABLE `einstein_categories` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `einstein_components` -- DROP TABLE IF EXISTS `einstein_components`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `einstein_components` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(50) NOT NULL DEFAULT '', `link` varchar(255) NOT NULL DEFAULT '', `menuid` int(11) unsigned NOT NULL DEFAULT '0', `parent` int(11) unsigned NOT NULL DEFAULT '0', `admin_menu_link` varchar(255) NOT NULL DEFAULT '', `admin_menu_alt` varchar(255) NOT NULL DEFAULT '', `option` varchar(50) NOT NULL DEFAULT '', `ordering` int(11) NOT NULL DEFAULT '0', `admin_menu_img` varchar(255) NOT NULL DEFAULT '', `iscore` tinyint(4) NOT NULL DEFAULT '0', `params` text NOT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM AUTO_INCREMENT=19 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `einstein_components` -- LOCK TABLES `einstein_components` WRITE; /*!40000 ALTER TABLE `einstein_components` DISABLE KEYS */; INSERT INTO `einstein_components` VALUES (1,'Banners','',0,0,'','Banner Management','com_banners',0,'js/ThemeOffice/component.png',0,''),(2,'Manage Banners','',0,1,'option=com_banners','Active Banners','com_banners',1,'js/ThemeOffice/edit.png',0,''),(3,'Manage Clients','',0,1,'option=com_banners&task=listclients','Manage Clients','com_banners',2,'js/ThemeOffice/categories.png',0,''),(4,'Web Links','option=com_weblinks',0,0,'','Manage Weblinks','com_weblinks',0,'js/ThemeOffice/globe2.png',0,''),(5,'Weblink Items','',0,4,'option=com_weblinks','View existing weblinks','com_weblinks',1,'js/ThemeOffice/edit.png',0,''),(6,'Weblink Categories','',0,4,'option=categories§ion=com_weblinks','Manage weblink categories','',2,'js/ThemeOffice/categories.png',0,''),(7,'Contacts','option=com_contact',0,0,'','Edit contact details','com_contact',0,'js/ThemeOffice/user.png',1,''),(8,'Manage Contacts','',0,7,'option=com_contact','Edit contact details','com_contact',0,'js/ThemeOffice/edit.png',1,''),(9,'Contact Categories','',0,7,'option=categories§ion=com_contact_details','Manage contact categories','',2,'js/ThemeOffice/categories.png',1,''),(10,'FrontPage','option=com_frontpage',0,0,'','Manage Front Page Items','com_frontpage',0,'js/ThemeOffice/component.png',1,''),(11,'Polls','option=com_poll',0,0,'option=com_poll','Manage Polls','com_poll',0,'js/ThemeOffice/component.png',0,''),(12,'News Feeds','option=com_newsfeeds',0,0,'','News Feeds Management','com_newsfeeds',0,'js/ThemeOffice/component.png',0,''),(13,'Manage News Feeds','',0,12,'option=com_newsfeeds','Manage News Feeds','com_newsfeeds',1,'js/ThemeOffice/edit.png',0,''),(14,'Manage Categories','',0,12,'option=com_categories§ion=com_newsfeeds','Manage Categories','',2,'js/ThemeOffice/categories.png',0,''),(15,'Login','option=com_login',0,0,'','','com_login',0,'',1,''),(16,'Search','option=com_search',0,0,'','','com_search',0,'',1,''),(17,'Syndicate','',0,0,'option=com_syndicate&hidemainmenu=1','Manage Syndication Settings','com_syndicate',0,'js/ThemeOffice/component.png',0,''),(18,'Mass Mail','',0,0,'option=com_massmail&hidemainmenu=1','Send Mass Mail','com_massmail',0,'js/ThemeOffice/mass_email.png',0,''); /*!40000 ALTER TABLE `einstein_components` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `einstein_contact_details` -- DROP TABLE IF EXISTS `einstein_contact_details`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `einstein_contact_details` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(100) NOT NULL DEFAULT '', `con_position` varchar(50) DEFAULT NULL, `address` text, `suburb` varchar(50) DEFAULT NULL, `state` varchar(20) DEFAULT NULL, `country` varchar(50) DEFAULT NULL, `postcode` varchar(10) DEFAULT NULL, `telephone` varchar(25) DEFAULT NULL, `fax` varchar(25) DEFAULT NULL, `misc` mediumtext, `image` varchar(100) DEFAULT NULL, `imagepos` varchar(20) DEFAULT NULL, `email_to` varchar(100) DEFAULT NULL, `default_con` tinyint(1) unsigned NOT NULL DEFAULT '0', `published` tinyint(1) unsigned NOT NULL DEFAULT '0', `checked_out` int(11) unsigned NOT NULL DEFAULT '0', `checked_out_time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `ordering` int(11) NOT NULL DEFAULT '0', `params` text NOT NULL, `user_id` int(11) NOT NULL DEFAULT '0', `catid` int(11) NOT NULL DEFAULT '0', `access` tinyint(3) unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`id`) ) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `einstein_contact_details` -- LOCK TABLES `einstein_contact_details` WRITE; /*!40000 ALTER TABLE `einstein_contact_details` DISABLE KEYS */; INSERT INTO `einstein_contact_details` VALUES (1,'Name','Position','Street','Suburb','State','Country','Zip Code','Telephone','Fax','Miscellanous info','asterisk.png','top','email@email.com',1,1,0,'0000-00-00 00:00:00',1,'',0,12,0); /*!40000 ALTER TABLE `einstein_contact_details` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `einstein_content` -- DROP TABLE IF EXISTS `einstein_content`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `einstein_content` ( `id` int(11) unsigned NOT NULL AUTO_INCREMENT, `title` varchar(100) NOT NULL DEFAULT '', `title_alias` varchar(100) NOT NULL DEFAULT '', `introtext` mediumtext NOT NULL, `fulltext` mediumtext NOT NULL, `state` tinyint(3) NOT NULL DEFAULT '0', `sectionid` int(11) unsigned NOT NULL DEFAULT '0', `mask` int(11) unsigned NOT NULL DEFAULT '0', `catid` int(11) unsigned NOT NULL DEFAULT '0', `created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `created_by` int(11) unsigned NOT NULL DEFAULT '0', `created_by_alias` varchar(100) NOT NULL DEFAULT '', `modified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `modified_by` int(11) unsigned NOT NULL DEFAULT '0', `checked_out` int(11) unsigned NOT NULL DEFAULT '0', `checked_out_time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `publish_up` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `publish_down` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `images` text NOT NULL, `urls` text NOT NULL, `attribs` text NOT NULL, `version` int(11) unsigned NOT NULL DEFAULT '1', `parentid` int(11) unsigned NOT NULL DEFAULT '0', `ordering` int(11) NOT NULL DEFAULT '0', `metakey` text NOT NULL, `metadesc` text NOT NULL, `access` int(11) unsigned NOT NULL DEFAULT '0', `hits` int(11) unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`id`), KEY `idx_section` (`sectionid`), KEY `idx_access` (`access`), KEY `idx_checkout` (`checked_out`), KEY `idx_state` (`state`), KEY `idx_catid` (`catid`), KEY `idx_mask` (`mask`) ) ENGINE=MyISAM AUTO_INCREMENT=12 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `einstein_content` -- LOCK TABLES `einstein_content` WRITE; /*!40000 ALTER TABLE `einstein_content` DISABLE KEYS */; INSERT INTO `einstein_content` VALUES (1,'Welcome to Joomla!','Welcome','If you\'ve read anything at all about Content Management Systems (CMS), you\'ll probably know at least three things: CMS are the most exciting way to do business, CMS can be really, I mean really, complicated and lastly Portals are absolutely, outrageously, often unaffordably expensive.

{mosimage}Joomla! is set to change all that ... Joomla! is different from the normal models for portal software. For a start, it\'s not complicated. Joomla! has been developed for the masses. It\'s licensed under the GNU/GPL license, easy to install and administer and reliable. Joomla! doesn\'t even require the user or administrator of the system to know HTML to operate it once it\'s up and running.','

Joomla! features:

\r\n\r\n

Extensive Administration:

\r\n',1,1,0,1,'2004-06-12 11:54:06',62,'Web Master','2004-06-12 12:33:27',62,0,'0000-00-00 00:00:00','2004-01-01 00:00:00','0000-00-00 00:00:00','asterisk.png|left|Joomla! Logo|1|Example Caption|bottom|center|120','','',1,0,1,'','',0,0),(2,'Newsflash 1','','Joomla! 1.0 - \'Experience the Freedom\'!. It has never been easier to create\r\nyour own dynamic site. Manage all your content from the best CMS admin\r\ninterface.','',1,2,1,3,'2004-08-09 08:30:34',62,'','0000-00-00 00:00:00',0,0,'0000-00-00 00:00:00','2004-08-09 00:00:00','0000-00-00 00:00:00','','','',1,0,1,'','',0,0),(3,'Newsflash 2','','Yesterday all servers in the U.S. went out on strike in a bid to get more RAM and better CPUs. A spokes person said that the need for better RAM was due to some fool increasing the front-side bus speed. In future, busses will be told to slow down in residential motherboards.','',1,2,1,3,'2004-08-09 08:30:34',62,'','0000-00-00 00:00:00',0,0,'0000-00-00 00:00:00','2004-08-09 00:00:00','0000-00-00 00:00:00','','','',1,0,2,'','',0,0),(4,'Newsflash 3','','Aoccdrnig to a rscheearch at an Elingsh uinervtisy, it deosn\'t mttaer in waht oredr the ltteers in a wrod are, the olny iprmoetnt tihng is taht frist and lsat ltteer is at the rghit pclae. The rset can be a toatl mses and you can sitll raed it wouthit porbelm. Tihs is bcuseae we do not raed ervey lteter by itslef but the wrod as a wlohe.','',1,2,1,3,'2004-08-09 08:30:34',62,'','0000-00-00 00:00:00',0,0,'0000-00-00 00:00:00','2004-08-09 00:00:00','0000-00-00 00:00:00','','','',1,0,3,'','',0,1),(5,'Joomla! License Guidelines','','

This website is powered by Joomla! The software and default templates on which it runs are Copyright 2005 Open Source Matters. All other content and data, including data entered into this website and templates added after installation, are copyrighted by their respective copyright owners.

If you want to distribute, copy or modify Joomla!, you are welcome to do so under the terms of the GNU General Public License. If you are unfamiliar with this license, you might want to read \'How To Apply These Terms To Your Program\' and the \'GNU General Public License FAQ\'.

','',1,0,0,0,'2004-08-19 20:11:07',62,'','2004-08-19 20:14:49',62,0,'0000-00-00 00:00:00','2004-08-19 00:00:00','0000-00-00 00:00:00','','','menu_image=\nitem_title=1\npageclass_sfx=\nback_button=\nrating=\nauthor=\ncreatedate=\nmodifydate=\npdf=\nprint=\nemail=',1,0,11,'','',0,11),(6,'Example News Item 1','News1','{mosimage}Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat,\r\nsed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit\r\namet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam\r\nvoluptua. At vero eos et accusam et justo duo dolores et ea rebum.','

{mosimage}Duis autem vel eum iriure dolor in hendrerit in vulputate\r\nvelit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at\r\nvero eros et accumsan et iusto odio dignissim qui blandit praesent luptatum\r\nzzril delenit augue duis dolore te feugait nulla facilisi. Lorem ipsum dolor\r\nsit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt\r\nut laoreet dolore magna aliquam erat volutpat.

\r\n\r\n

Ut wisi enim ad minim veniam, quis nostrud exerci tation\r\nullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis\r\nautem vel eum iriure dolor in hendrerit in vulputate velit esse molestie\r\nconsequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan\r\net iusto odio dignissim qui blandit praesent luptatum zzril delenit augue duis\r\ndolore te feugait nulla facilisi.

\r\n\r\n

Nam liber tempor cum soluta nobis eleifend option congue\r\nnihil imperdiet doming id quod mazim placerat facer possim assum. Lorem ipsum\r\ndolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod\r\ntincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim\r\nveniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut\r\naliquip ex ea commodo consequat.

\r\n\r\n

Duis autem vel eum iriure dolor in hendrerit in vulputate\r\nvelit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis. At\r\nvero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd\r\ngubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum\r\ndolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor\r\ninvidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero\r\neos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no\r\nsea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit\r\namet, consetetur sadipscing elitr, At accusam aliquyam diam diam dolore dolores\r\nduo eirmod eos erat, et nonumy sed tempor et et invidunt justo labore Stet\r\nclita ea et gubergren, kasd magna no rebum. sanctus sea sed takimata ut vero\r\nvoluptua. est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet,\r\nconsetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore\r\net dolore magna aliquyam erat.

\r\n\r\n

Consetetur sadipscing elitr, sed diam nonumy eirmod tempor\r\ninvidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero\r\neos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no\r\nsea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit\r\namet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut\r\nlabore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam\r\net justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata\r\nsanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur\r\nsadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore\r\nmagna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo\r\ndolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est\r\nLorem ipsum dolor sit amet.

',1,1,0,1,'2004-07-07 11:54:06',62,'','2004-07-07 18:05:05',62,0,'0000-00-00 00:00:00','2004-07-07 00:00:00','0000-00-00 00:00:00','food/coffee.jpg|left||0\r\nfood/bread.jpg|right||0','','',1,0,2,'','',0,4),(7,'Example News Item 2','News2','

{mosimage}Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat,\r\nsed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit\r\namet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam\r\nvoluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem\r\nipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At\r\nvero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet.

','',1,1,0,1,'2004-07-07 11:54:06',62,'','2004-07-07 18:11:30',62,0,'0000-00-00 00:00:00','2004-07-07 00:00:00','0000-00-00 00:00:00','food/bun.jpg|right||0','','',1,0,3,'','',0,2),(8,'Example News Item 3','News3','

{mosimage}Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat,\r\nsed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit\r\namet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam\r\nvoluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem\r\nipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At\r\nvero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet.

','',1,1,0,1,'2004-04-12 11:54:06',62,'','2004-07-07 18:08:23',62,0,'0000-00-00 00:00:00','2004-07-07 00:00:00','0000-00-00 00:00:00','fruit/pears.jpg|right||0','','',1,0,4,'','',0,1),(9,'Example News Item 4','News4','

Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat,\r\nsed diam voluptua. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam\r\nvoluptua. At\r\nvero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet.

','

{mosimage}Duis autem vel eum iriure dolor in hendrerit in vulputate\r\nvelit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at\r\nvero eros et accumsan et iusto odio dignissim qui blandit praesent luptatum\r\nzzril delenit augue duis dolore te feugait nulla facilisi. Lorem ipsum dolor\r\nsit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt\r\nut laoreet dolore magna aliquam erat volutpat.

\r\n\r\n{mospagebreak}

{mosimage}Ut wisi enim ad minim veniam, quis nostrud exerci tation\r\nullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis\r\nautem vel eum iriure dolor in hendrerit in vulputate velit esse molestie\r\nconsequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan\r\net iusto odio dignissim qui blandit praesent luptatum zzril delenit augue duis\r\ndolore te feugait nulla facilisi.

\r\n\r\n

{mosimage}Nam liber tempor cum soluta nobis eleifend option congue\r\nnihil imperdiet doming id quod mazim placerat facer possim assum. Lorem ipsum\r\ndolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod\r\ntincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim\r\nveniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut\r\naliquip ex ea commodo consequat.

\r\n\r\n

Duis autem vel eum iriure dolor in hendrerit in vulputate\r\nvelit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis. At\r\nvero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd\r\ngubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum\r\ndolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor\r\ninvidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero\r\neos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no\r\nsea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit\r\namet, consetetur sadipscing elitr, At accusam aliquyam diam diam dolore dolores\r\nduo eirmod eos erat, et nonumy sed tempor et et invidunt justo labore Stet\r\nclita ea et gubergren, kasd magna no rebum. sanctus sea sed takimata ut vero\r\nvoluptua. est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet,\r\nconsetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore\r\net dolore magna aliquyam erat.

\r\n\r\n{mospagebreak}

Consetetur sadipscing elitr, sed diam nonumy eirmod tempor\r\ninvidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero\r\neos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no\r\nsea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit\r\namet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut\r\nlabore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam\r\net justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata\r\nsanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur\r\nsadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore\r\nmagna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo\r\ndolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est\r\nLorem ipsum dolor sit amet.

',1,1,0,1,'2004-07-07 11:54:06',62,'','2004-07-07 18:10:23',62,0,'0000-00-00 00:00:00','2004-07-07 00:00:00','0000-00-00 00:00:00','fruit/strawberry.jpg|left||0\r\nfruit/pears.jpg|right||0\r\nfruit/cherry.jpg|left||0','','',1,0,5,'','',0,6),(10,'Example FAQ Item 1','FAQ1','

Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat,\r\nsed diam voluptua. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam\r\nvoluptua. At\r\nvero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet.

','',1,3,0,7,'2004-05-12 11:54:06',62,'','2004-07-07 18:10:23',62,0,'0000-00-00 00:00:00','2004-01-01 00:00:00','0000-00-00 00:00:00','','','',1,0,5,'','',0,8),(11,'Example FAQ Item 2','FAQ2','

Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat,\r\nsed diam voluptua. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam\r\nvoluptua. At\r\nvero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet.

','

{mosimage}Duis autem vel eum iriure dolor in hendrerit in vulputate\r\nvelit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at\r\nvero eros et accumsan et iusto odio dignissim qui blandit praesent luptatum\r\nzzril delenit augue duis dolore te feugait nulla facilisi. Lorem ipsum dolor\r\nsit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt\r\nut laoreet dolore magna aliquam erat volutpat.

\r\n\r\n

{mosimage}Ut wisi enim ad minim veniam, quis nostrud exerci tation\r\nullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis\r\nautem vel eum iriure dolor in hendrerit in vulputate velit esse molestie\r\nconsequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan\r\net iusto odio dignissim qui blandit praesent luptatum zzril delenit augue duis\r\ndolore te feugait nulla facilisi.

\r\n\r\n

{mosimage}Nam liber tempor cum soluta nobis eleifend option congue\r\nnihil imperdiet doming id quod mazim placerat facer possim assum. Lorem ipsum\r\ndolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod\r\ntincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim\r\nveniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut\r\naliquip ex ea commodo consequat.

\r\n\r\n

Duis autem vel eum iriure dolor in hendrerit in vulputate\r\nvelit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis. At\r\nvero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd\r\ngubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum\r\ndolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor\r\ninvidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero\r\neos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no\r\nsea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit\r\namet, consetetur sadipscing elitr, At accusam aliquyam diam diam dolore dolores\r\nduo eirmod eos erat, et nonumy sed tempor et et invidunt justo labore Stet\r\nclita ea et gubergren, kasd magna no rebum. sanctus sea sed takimata ut vero\r\nvoluptua. est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet,\r\nconsetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore\r\net dolore magna aliquyam erat.

\r\n\r\n

Consetetur sadipscing elitr, sed diam nonumy eirmod tempor\r\ninvidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero\r\neos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no\r\nsea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit\r\namet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut\r\nlabore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam\r\net justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata\r\nsanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur\r\nsadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore\r\nmagna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo\r\ndolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est\r\nLorem ipsum dolor sit amet.

',1,3,0,7,'2004-05-12 11:54:06',62,'Web master','2004-07-07 18:10:23',62,0,'0000-00-00 00:00:00','2004-01-01 00:00:00','0000-00-00 00:00:00','fruit/cherry.jpg|left||0\r\nfruit/peas.jpg|right||0\r\nfood/milk.jpg|left||0','','',1,0,5,'','',0,10); /*!40000 ALTER TABLE `einstein_content` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `einstein_content_frontpage` -- DROP TABLE IF EXISTS `einstein_content_frontpage`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `einstein_content_frontpage` ( `content_id` int(11) NOT NULL DEFAULT '0', `ordering` int(11) NOT NULL DEFAULT '0', PRIMARY KEY (`content_id`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `einstein_content_frontpage` -- LOCK TABLES `einstein_content_frontpage` WRITE; /*!40000 ALTER TABLE `einstein_content_frontpage` DISABLE KEYS */; INSERT INTO `einstein_content_frontpage` VALUES (1,1),(2,2),(3,3),(4,4),(5,5); /*!40000 ALTER TABLE `einstein_content_frontpage` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `einstein_content_rating` -- DROP TABLE IF EXISTS `einstein_content_rating`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `einstein_content_rating` ( `content_id` int(11) NOT NULL DEFAULT '0', `rating_sum` int(11) unsigned NOT NULL DEFAULT '0', `rating_count` int(11) unsigned NOT NULL DEFAULT '0', `lastip` varchar(50) NOT NULL DEFAULT '', PRIMARY KEY (`content_id`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `einstein_content_rating` -- LOCK TABLES `einstein_content_rating` WRITE; /*!40000 ALTER TABLE `einstein_content_rating` DISABLE KEYS */; /*!40000 ALTER TABLE `einstein_content_rating` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `einstein_core_acl_aro` -- DROP TABLE IF EXISTS `einstein_core_acl_aro`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `einstein_core_acl_aro` ( `aro_id` int(11) NOT NULL AUTO_INCREMENT, `section_value` varchar(240) NOT NULL DEFAULT '0', `value` varchar(240) NOT NULL DEFAULT '', `order_value` int(11) NOT NULL DEFAULT '0', `name` varchar(255) NOT NULL DEFAULT '', `hidden` int(11) NOT NULL DEFAULT '0', PRIMARY KEY (`aro_id`), UNIQUE KEY `einstein_gacl_section_value_value_aro` (`section_value`(100),`value`(100)), KEY `einstein_gacl_hidden_aro` (`hidden`) ) ENGINE=MyISAM AUTO_INCREMENT=11 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `einstein_core_acl_aro` -- LOCK TABLES `einstein_core_acl_aro` WRITE; /*!40000 ALTER TABLE `einstein_core_acl_aro` DISABLE KEYS */; INSERT INTO `einstein_core_acl_aro` VALUES (10,'users','62',0,'Administrator',0); /*!40000 ALTER TABLE `einstein_core_acl_aro` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `einstein_core_acl_aro_groups` -- DROP TABLE IF EXISTS `einstein_core_acl_aro_groups`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `einstein_core_acl_aro_groups` ( `group_id` int(11) NOT NULL AUTO_INCREMENT, `parent_id` int(11) NOT NULL DEFAULT '0', `name` varchar(255) NOT NULL DEFAULT '', `lft` int(11) NOT NULL DEFAULT '0', `rgt` int(11) NOT NULL DEFAULT '0', PRIMARY KEY (`group_id`), KEY `parent_id_aro_groups` (`parent_id`), KEY `einstein_gacl_parent_id_aro_groups` (`parent_id`), KEY `einstein_gacl_lft_rgt_aro_groups` (`lft`,`rgt`) ) ENGINE=MyISAM AUTO_INCREMENT=31 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `einstein_core_acl_aro_groups` -- LOCK TABLES `einstein_core_acl_aro_groups` WRITE; /*!40000 ALTER TABLE `einstein_core_acl_aro_groups` DISABLE KEYS */; INSERT INTO `einstein_core_acl_aro_groups` VALUES (17,0,'ROOT',1,22),(28,17,'USERS',2,21),(29,28,'Public Frontend',3,12),(18,29,'Registered',4,11),(19,18,'Author',5,10),(20,19,'Editor',6,9),(21,20,'Publisher',7,8),(30,28,'Public Backend',13,20),(23,30,'Manager',14,19),(24,23,'Administrator',15,18),(25,24,'Super Administrator',16,17); /*!40000 ALTER TABLE `einstein_core_acl_aro_groups` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `einstein_core_acl_aro_sections` -- DROP TABLE IF EXISTS `einstein_core_acl_aro_sections`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `einstein_core_acl_aro_sections` ( `section_id` int(11) NOT NULL AUTO_INCREMENT, `value` varchar(230) NOT NULL DEFAULT '', `order_value` int(11) NOT NULL DEFAULT '0', `name` varchar(230) NOT NULL DEFAULT '', `hidden` int(11) NOT NULL DEFAULT '0', PRIMARY KEY (`section_id`), UNIQUE KEY `value_aro_sections` (`value`), UNIQUE KEY `einstein_gacl_value_aro_sections` (`value`), KEY `hidden_aro_sections` (`hidden`), KEY `einstein_gacl_hidden_aro_sections` (`hidden`) ) ENGINE=MyISAM AUTO_INCREMENT=11 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `einstein_core_acl_aro_sections` -- LOCK TABLES `einstein_core_acl_aro_sections` WRITE; /*!40000 ALTER TABLE `einstein_core_acl_aro_sections` DISABLE KEYS */; INSERT INTO `einstein_core_acl_aro_sections` VALUES (10,'users',1,'Users',0); /*!40000 ALTER TABLE `einstein_core_acl_aro_sections` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `einstein_core_acl_groups_aro_map` -- DROP TABLE IF EXISTS `einstein_core_acl_groups_aro_map`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `einstein_core_acl_groups_aro_map` ( `group_id` int(11) NOT NULL DEFAULT '0', `section_value` varchar(240) NOT NULL DEFAULT '', `aro_id` int(11) NOT NULL DEFAULT '0', UNIQUE KEY `group_id_aro_id_groups_aro_map` (`group_id`,`section_value`,`aro_id`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `einstein_core_acl_groups_aro_map` -- LOCK TABLES `einstein_core_acl_groups_aro_map` WRITE; /*!40000 ALTER TABLE `einstein_core_acl_groups_aro_map` DISABLE KEYS */; INSERT INTO `einstein_core_acl_groups_aro_map` VALUES (25,'',10); /*!40000 ALTER TABLE `einstein_core_acl_groups_aro_map` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `einstein_core_log_items` -- DROP TABLE IF EXISTS `einstein_core_log_items`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `einstein_core_log_items` ( `time_stamp` date NOT NULL DEFAULT '0000-00-00', `item_table` varchar(50) NOT NULL DEFAULT '', `item_id` int(11) unsigned NOT NULL DEFAULT '0', `hits` int(11) unsigned NOT NULL DEFAULT '0' ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `einstein_core_log_items` -- LOCK TABLES `einstein_core_log_items` WRITE; /*!40000 ALTER TABLE `einstein_core_log_items` DISABLE KEYS */; /*!40000 ALTER TABLE `einstein_core_log_items` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `einstein_core_log_searches` -- DROP TABLE IF EXISTS `einstein_core_log_searches`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `einstein_core_log_searches` ( `search_term` varchar(128) NOT NULL DEFAULT '', `hits` int(11) unsigned NOT NULL DEFAULT '0' ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `einstein_core_log_searches` -- LOCK TABLES `einstein_core_log_searches` WRITE; /*!40000 ALTER TABLE `einstein_core_log_searches` DISABLE KEYS */; /*!40000 ALTER TABLE `einstein_core_log_searches` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `einstein_groups` -- DROP TABLE IF EXISTS `einstein_groups`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `einstein_groups` ( `id` tinyint(3) unsigned NOT NULL DEFAULT '0', `name` varchar(50) NOT NULL DEFAULT '', PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `einstein_groups` -- LOCK TABLES `einstein_groups` WRITE; /*!40000 ALTER TABLE `einstein_groups` DISABLE KEYS */; INSERT INTO `einstein_groups` VALUES (0,'Public'),(1,'Registered'),(2,'Special'); /*!40000 ALTER TABLE `einstein_groups` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `einstein_mambots` -- DROP TABLE IF EXISTS `einstein_mambots`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `einstein_mambots` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(100) NOT NULL DEFAULT '', `element` varchar(100) NOT NULL DEFAULT '', `folder` varchar(100) NOT NULL DEFAULT '', `access` tinyint(3) unsigned NOT NULL DEFAULT '0', `ordering` int(11) NOT NULL DEFAULT '0', `published` tinyint(3) NOT NULL DEFAULT '0', `iscore` tinyint(3) NOT NULL DEFAULT '0', `client_id` tinyint(3) NOT NULL DEFAULT '0', `checked_out` int(11) unsigned NOT NULL DEFAULT '0', `checked_out_time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `params` text NOT NULL, PRIMARY KEY (`id`), KEY `idx_folder` (`published`,`client_id`,`access`,`folder`) ) ENGINE=MyISAM AUTO_INCREMENT=20 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `einstein_mambots` -- LOCK TABLES `einstein_mambots` WRITE; /*!40000 ALTER TABLE `einstein_mambots` DISABLE KEYS */; INSERT INTO `einstein_mambots` VALUES (1,'MOS Image','mosimage','content',0,-10000,1,1,0,0,'0000-00-00 00:00:00',''),(2,'MOS Pagination','mospaging','content',0,10000,1,1,0,0,'0000-00-00 00:00:00',''),(3,'Legacy Mambot Includer','legacybots','content',0,1,0,1,0,0,'0000-00-00 00:00:00',''),(4,'SEF','mossef','content',0,3,1,0,0,0,'0000-00-00 00:00:00',''),(5,'MOS Rating','mosvote','content',0,4,1,1,0,0,'0000-00-00 00:00:00',''),(6,'Search Content','content.searchbot','search',0,1,1,1,0,0,'0000-00-00 00:00:00',''),(7,'Search Weblinks','weblinks.searchbot','search',0,2,1,1,0,0,'0000-00-00 00:00:00',''),(8,'Code support','moscode','content',0,2,0,0,0,0,'0000-00-00 00:00:00',''),(9,'No WYSIWYG Editor','none','editors',0,0,1,1,0,0,'0000-00-00 00:00:00',''),(10,'TinyMCE WYSIWYG Editor','tinymce','editors',0,0,1,1,0,0,'0000-00-00 00:00:00','theme=advanced'),(11,'MOS Image Editor Button','mosimage.btn','editors-xtd',0,0,1,0,0,0,'0000-00-00 00:00:00',''),(12,'MOS Pagebreak Editor Button','mospage.btn','editors-xtd',0,0,1,0,0,0,'0000-00-00 00:00:00',''),(13,'Search Contacts','contacts.searchbot','search',0,3,1,1,0,0,'0000-00-00 00:00:00',''),(14,'Search Categories','categories.searchbot','search',0,4,1,0,0,0,'0000-00-00 00:00:00',''),(15,'Search Sections','sections.searchbot','search',0,5,1,0,0,0,'0000-00-00 00:00:00',''),(16,'Email Cloaking','mosemailcloak','content',0,5,1,0,0,0,'0000-00-00 00:00:00',''),(17,'GeSHi','geshi','content',0,5,0,0,0,0,'0000-00-00 00:00:00',''),(18,'Search Newsfeeds','newsfeeds.searchbot','search',0,6,1,0,0,0,'0000-00-00 00:00:00',''),(19,'Load Module Positions','mosloadposition','content',0,6,1,0,0,0,'0000-00-00 00:00:00',''); /*!40000 ALTER TABLE `einstein_mambots` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `einstein_menu` -- DROP TABLE IF EXISTS `einstein_menu`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `einstein_menu` ( `id` int(11) NOT NULL AUTO_INCREMENT, `menutype` varchar(25) DEFAULT NULL, `name` varchar(100) DEFAULT NULL, `link` text, `type` varchar(50) NOT NULL DEFAULT '', `published` tinyint(1) NOT NULL DEFAULT '0', `parent` int(11) unsigned NOT NULL DEFAULT '0', `componentid` int(11) unsigned NOT NULL DEFAULT '0', `sublevel` int(11) DEFAULT '0', `ordering` int(11) DEFAULT '0', `checked_out` int(11) unsigned NOT NULL DEFAULT '0', `checked_out_time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `pollid` int(11) NOT NULL DEFAULT '0', `browserNav` tinyint(4) DEFAULT '0', `access` tinyint(3) unsigned NOT NULL DEFAULT '0', `utaccess` tinyint(3) unsigned NOT NULL DEFAULT '0', `params` text NOT NULL, PRIMARY KEY (`id`), KEY `componentid` (`componentid`,`menutype`,`published`,`access`), KEY `menutype` (`menutype`) ) ENGINE=MyISAM AUTO_INCREMENT=26 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `einstein_menu` -- LOCK TABLES `einstein_menu` WRITE; /*!40000 ALTER TABLE `einstein_menu` DISABLE KEYS */; INSERT INTO `einstein_menu` VALUES (1,'mainmenu','Home','index.php?option=com_frontpage','components',1,0,10,0,1,0,'0000-00-00 00:00:00',0,0,0,3,'leading=1\r\nintro=2\r\nlink=1\r\nimage=1\r\npage_title=0\r\nheader=Welcome to the Frontpage\r\norderby_sec=front\r\nprint=0\r\npdf=0\r\nemail=0\r\nback_button=0'),(2,'mainmenu','News','index.php?option=com_content&task=section&id=1','content_section',1,0,1,0,3,0,'0000-00-00 00:00:00',0,0,0,3,''),(3,'mainmenu','Contact Us','index.php?option=com_contact','components',1,0,7,0,6,0,'0000-00-00 00:00:00',0,0,0,3,''),(23,'mainmenu','Links','index.php?option=com_weblinks','components',1,0,4,0,5,0,'0000-00-00 00:00:00',0,0,0,0,'menu_image=web_links.jpg\npageclass_sfx=\nback_button=\npage_title=1\nheader=\nheadings=1\nhits=\nitem_description=1\nother_cat=1\ndescription=1\ndescription_text=\nimage=-1\nimage_align=right\nweblink_icons='),(5,'mainmenu','Search','index.php?option=com_search','components',1,0,16,0,7,0,'0000-00-00 00:00:00',0,0,0,3,''),(6,'mainmenu','Joomla! License','index.php?option=com_content&task=view&id=5','content_typed',1,0,11,0,2,0,'0000-00-00 00:00:00',0,0,0,0,''),(7,'mainmenu','News Feeds','index.php?option=com_newsfeeds','components',1,0,12,0,8,0,'0000-00-00 00:00:00',0,0,0,3,'menu_image=-1\npageclass_sfx=\nback_button=\npage_title=1\nheader='),(8,'mainmenu','Wrapper','index.php?option=com_wrapper','wrapper',1,0,0,0,10,0,'0000-00-00 00:00:00',0,0,0,3,'menu_image=-1\npageclass_sfx=\nback_button=\npage_title=1\nheader=\nscrolling=auto\nwidth=100%\nheight=600\nheight_auto=0\nurl=www.joomla.org'),(9,'mainmenu','Blog','index.php?option=com_content&task=blogsection&id=0','content_blog_section',1,0,0,0,4,0,'0000-00-00 00:00:00',0,0,0,3,'menu_image=-1\npageclass_sfx=\nback_button=\nheader=A blog of all section with no images\npage_title=1\nleading=0\nintro=6\ncolumns=2\nlink=4\norderby_pri=\norderby_sec=\npagination=2\npagination_results=1\nimage=0\ndescription=0\ndescription_image=0\ncategory=0\ncategory_link=0\nitem_title=1\nlink_titles=\nreadmore=\nrating=\nauthor=\ncreatedate=\nmodifydate=\npdf=\nprint=\nemail=\nsectionid='),(10,'othermenu','Joomla! Home','http://www.joomla.org','url',1,0,0,0,1,0,'0000-00-00 00:00:00',0,0,0,3,''),(11,'othermenu','Joomla! Forums','http://forum.joomla.org','url',1,0,0,0,1,0,'0000-00-00 00:00:00',0,0,0,3,''),(12,'othermenu','OSM Home','http://www.opensourcematters.org','url',1,0,0,0,1,0,'0000-00-00 00:00:00',0,0,0,3,''),(24,'othermenu','Administrator','administrator/','url',1,0,0,0,3,0,'0000-00-00 00:00:00',0,0,0,3,'menu_image=-1'),(21,'usermenu','Your Details','index.php?option=com_user&task=UserDetails','url',1,0,0,0,1,0,'2000-00-00 00:00:00',0,0,1,3,''),(13,'usermenu','Submit News','index.php?option=com_content&task=new§ionid=1&Itemid=0','url',1,0,0,0,2,0,'2000-00-00 00:00:00',0,0,1,2,''),(14,'usermenu','Submit WebLink','index.php?option=com_weblinks&task=new','url',1,0,0,0,4,0,'2000-00-00 00:00:00',0,0,1,2,''),(15,'usermenu','Check-In My Items','index.php?option=com_user&task=CheckIn','url',1,0,0,0,5,0,'0000-00-00 00:00:00',0,0,1,2,''),(16,'usermenu','Logout','index.php?option=com_login','components',1,0,15,0,5,0,'0000-00-00 00:00:00',0,0,1,3,''),(17,'topmenu','Home','index.php','url',1,0,0,0,1,0,'0000-00-00 00:00:00',0,0,0,3,''),(18,'topmenu','Contact Us','index.php?option=com_contact&Itemid=3','url',1,0,0,0,2,0,'0000-00-00 00:00:00',0,0,0,3,''),(19,'topmenu','News','index.php?option=com_content&task=section&id=1&Itemid=2','url',1,0,0,0,3,0,'0000-00-00 00:00:00',0,0,0,3,''),(20,'topmenu','Links','index.php?option=com_weblinks&Itemid=23','url',1,0,0,0,4,0,'0000-00-00 00:00:00',0,0,0,3,'menu_image=-1'),(25,'mainmenu','FAQs','index.php?option=com_content&task=category§ionid=3&id=7','content_category',1,0,7,0,9,0,'0000-00-00 00:00:00',0,0,0,0,'menu_image=-1\npage_title=1\npageclass_sfx=\nback_button=\norderby=\ndate_format=\ndate=\nauthor=\ntitle=1\nhits=\nheadings=1\nnavigation=1\norder_select=1\ndisplay=1\ndisplay_num=50\nfilter=1\nfilter_type=title\nother_cat=1\nempty_cat=0\ncat_items=1\ncat_description=1'); /*!40000 ALTER TABLE `einstein_menu` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `einstein_messages` -- DROP TABLE IF EXISTS `einstein_messages`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `einstein_messages` ( `message_id` int(10) unsigned NOT NULL AUTO_INCREMENT, `user_id_from` int(10) unsigned NOT NULL DEFAULT '0', `user_id_to` int(10) unsigned NOT NULL DEFAULT '0', `folder_id` int(10) unsigned NOT NULL DEFAULT '0', `date_time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `state` int(11) NOT NULL DEFAULT '0', `priority` int(1) unsigned NOT NULL DEFAULT '0', `subject` varchar(230) NOT NULL DEFAULT '', `message` text NOT NULL, PRIMARY KEY (`message_id`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `einstein_messages` -- LOCK TABLES `einstein_messages` WRITE; /*!40000 ALTER TABLE `einstein_messages` DISABLE KEYS */; /*!40000 ALTER TABLE `einstein_messages` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `einstein_messages_cfg` -- DROP TABLE IF EXISTS `einstein_messages_cfg`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `einstein_messages_cfg` ( `user_id` int(10) unsigned NOT NULL DEFAULT '0', `cfg_name` varchar(100) NOT NULL DEFAULT '', `cfg_value` varchar(255) NOT NULL DEFAULT '', UNIQUE KEY `idx_user_var_name` (`user_id`,`cfg_name`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `einstein_messages_cfg` -- LOCK TABLES `einstein_messages_cfg` WRITE; /*!40000 ALTER TABLE `einstein_messages_cfg` DISABLE KEYS */; /*!40000 ALTER TABLE `einstein_messages_cfg` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `einstein_modules` -- DROP TABLE IF EXISTS `einstein_modules`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `einstein_modules` ( `id` int(11) NOT NULL AUTO_INCREMENT, `title` text NOT NULL, `content` text NOT NULL, `ordering` int(11) NOT NULL DEFAULT '0', `position` varchar(10) DEFAULT NULL, `checked_out` int(11) unsigned NOT NULL DEFAULT '0', `checked_out_time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `published` tinyint(1) NOT NULL DEFAULT '0', `module` varchar(50) DEFAULT NULL, `numnews` int(11) NOT NULL DEFAULT '0', `access` tinyint(3) unsigned NOT NULL DEFAULT '0', `showtitle` tinyint(3) unsigned NOT NULL DEFAULT '1', `params` text NOT NULL, `iscore` tinyint(4) NOT NULL DEFAULT '0', `client_id` tinyint(4) NOT NULL DEFAULT '0', PRIMARY KEY (`id`), KEY `published` (`published`,`access`), KEY `newsfeeds` (`module`,`published`) ) ENGINE=MyISAM AUTO_INCREMENT=33 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `einstein_modules` -- LOCK TABLES `einstein_modules` WRITE; /*!40000 ALTER TABLE `einstein_modules` DISABLE KEYS */; INSERT INTO `einstein_modules` VALUES (1,'Polls','',1,'right',0,'0000-00-00 00:00:00',1,'mod_poll',0,0,1,'',0,0),(2,'User Menu','',2,'left',0,'0000-00-00 00:00:00',1,'mod_mainmenu',0,1,1,'menutype=usermenu',1,0),(3,'Main Menu','',1,'left',0,'0000-00-00 00:00:00',1,'mod_mainmenu',0,0,1,'menutype=mainmenu',1,0),(4,'Login Form','',3,'left',0,'0000-00-00 00:00:00',1,'mod_login',0,0,1,'',1,0),(5,'Syndicate','',4,'left',0,'0000-00-00 00:00:00',1,'mod_rssfeed',0,0,1,'',1,0),(6,'Latest News','',4,'user1',0,'0000-00-00 00:00:00',1,'mod_latestnews',0,0,1,'',1,0),(7,'Statistics','',4,'left',0,'0000-00-00 00:00:00',0,'mod_stats',0,0,1,'serverinfo=1\nsiteinfo=1\ncounter=1\nincrease=0\nmoduleclass_sfx=',0,0),(8,'Who\'s Online','',1,'right',0,'0000-00-00 00:00:00',1,'mod_whosonline',0,0,1,'online=1\nusers=1\nmoduleclass_sfx=',0,0),(9,'Popular','',6,'user2',0,'0000-00-00 00:00:00',1,'mod_mostread',0,0,1,'',0,0),(10,'Template Chooser','',6,'left',0,'0000-00-00 00:00:00',0,'mod_templatechooser',0,0,1,'show_preview=1',0,0),(11,'Archive','',7,'left',0,'0000-00-00 00:00:00',0,'mod_archive',0,0,1,'',1,0),(12,'Sections','',8,'left',0,'0000-00-00 00:00:00',0,'mod_sections',0,0,1,'',1,0),(13,'Newsflash','',1,'top',0,'0000-00-00 00:00:00',1,'mod_newsflash',0,0,1,'catid=3\r\nstyle=random\r\nitems=\r\nmoduleclass_sfx=',0,0),(14,'Related Items','',9,'left',0,'0000-00-00 00:00:00',0,'mod_related_items',0,0,1,'',0,0),(15,'Search','',1,'user4',0,'0000-00-00 00:00:00',1,'mod_search',0,0,0,'',0,0),(16,'Random Image','',9,'right',0,'0000-00-00 00:00:00',1,'mod_random_image',0,0,1,'',0,0),(17,'Top Menu','',1,'user3',0,'0000-00-00 00:00:00',1,'mod_mainmenu',0,0,0,'menutype=topmenu\nmenu_style=list_flat\nmenu_images=n\nmenu_images_align=left\nexpand_menu=n\nclass_sfx=-nav\nmoduleclass_sfx=\nindent_image1=0\nindent_image2=0\nindent_image3=0\nindent_image4=0\nindent_image5=0\nindent_image6=0',1,0),(18,'Banners','',1,'banner',0,'0000-00-00 00:00:00',1,'mod_banners',0,0,0,'banner_cids=\nmoduleclass_sfx=\n',1,0),(19,'Components','',2,'cpanel',0,'0000-00-00 00:00:00',1,'mod_components',0,99,1,'',1,1),(20,'Popular','',3,'cpanel',0,'0000-00-00 00:00:00',1,'mod_popular',0,99,1,'',0,1),(21,'Latest Items','',4,'cpanel',0,'0000-00-00 00:00:00',1,'mod_latest',0,99,1,'',0,1),(22,'Menu Stats','',5,'cpanel',0,'0000-00-00 00:00:00',1,'mod_stats',0,99,1,'',0,1),(23,'Unread Messages','',1,'header',0,'0000-00-00 00:00:00',1,'mod_unread',0,99,1,'',1,1),(24,'Online Users','',2,'header',0,'0000-00-00 00:00:00',1,'mod_online',0,99,1,'',1,1),(25,'Full Menu','',1,'top',0,'0000-00-00 00:00:00',1,'mod_fullmenu',0,99,1,'',1,1),(26,'Pathway','',1,'pathway',0,'0000-00-00 00:00:00',1,'mod_pathway',0,99,1,'',1,1),(27,'Toolbar','',1,'toolbar',0,'0000-00-00 00:00:00',1,'mod_toolbar',0,99,1,'',1,1),(28,'System Message','',1,'inset',0,'0000-00-00 00:00:00',1,'mod_mosmsg',0,99,1,'',1,1),(29,'Quick Icons','',1,'icon',0,'0000-00-00 00:00:00',1,'mod_quickicon',0,99,1,'',1,1),(30,'Other Menu','',2,'left',0,'0000-00-00 00:00:00',1,'mod_mainmenu',0,0,0,'menutype=othermenu\nmenu_style=vert_indent\ncache=0\nmenu_images=0\nmenu_images_align=0\nexpand_menu=0\nclass_sfx=\nmoduleclass_sfx=\nindent_image=0\nindent_image1=\nindent_image2=\nindent_image3=\nindent_image4=\nindent_image5=\nindent_image6=',0,0),(31,'Wrapper','',10,'left',0,'0000-00-00 00:00:00',0,'mod_wrapper',0,0,1,'',0,0),(32,'Logged','',0,'cpanel',0,'0000-00-00 00:00:00',1,'mod_logged',0,99,1,'',0,1); /*!40000 ALTER TABLE `einstein_modules` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `einstein_modules_menu` -- DROP TABLE IF EXISTS `einstein_modules_menu`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `einstein_modules_menu` ( `moduleid` int(11) NOT NULL DEFAULT '0', `menuid` int(11) NOT NULL DEFAULT '0', PRIMARY KEY (`moduleid`,`menuid`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `einstein_modules_menu` -- LOCK TABLES `einstein_modules_menu` WRITE; /*!40000 ALTER TABLE `einstein_modules_menu` DISABLE KEYS */; INSERT INTO `einstein_modules_menu` VALUES (1,1),(2,0),(3,0),(4,1),(5,1),(6,1),(6,2),(6,4),(6,27),(6,36),(8,1),(9,1),(9,2),(9,4),(9,27),(9,36),(10,1),(13,0),(15,0),(17,0),(18,0),(30,0); /*!40000 ALTER TABLE `einstein_modules_menu` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `einstein_newsfeeds` -- DROP TABLE IF EXISTS `einstein_newsfeeds`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `einstein_newsfeeds` ( `catid` int(11) NOT NULL DEFAULT '0', `id` int(11) NOT NULL AUTO_INCREMENT, `name` text NOT NULL, `link` text NOT NULL, `filename` varchar(200) DEFAULT NULL, `published` tinyint(1) NOT NULL DEFAULT '0', `numarticles` int(11) unsigned NOT NULL DEFAULT '1', `cache_time` int(11) unsigned NOT NULL DEFAULT '3600', `checked_out` tinyint(3) unsigned NOT NULL DEFAULT '0', `checked_out_time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `ordering` int(11) NOT NULL DEFAULT '0', PRIMARY KEY (`id`), KEY `published` (`published`) ) ENGINE=MyISAM AUTO_INCREMENT=11 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `einstein_newsfeeds` -- LOCK TABLES `einstein_newsfeeds` WRITE; /*!40000 ALTER TABLE `einstein_newsfeeds` DISABLE KEYS */; INSERT INTO `einstein_newsfeeds` VALUES (4,1,'Joomla! - Official News','http://www.joomla.org/index.php?option=com_rss_xtd&feed=RSS2.0&type=com_frontpage&Itemid=1','',1,5,3600,0,'0000-00-00 00:00:00',8),(4,2,'Joomla! - Community News','http://www.joomla.org/index.php?option=com_rss_xtd&feed=RSS2.0&type=com_content&task=blogcategory&id=0&Itemid=33','',1,5,3600,0,'0000-00-00 00:00:00',9),(4,3,'OpenSourceMatters','http://www.opensourcematters.org/index2.php?option=com_rss&feed=RSS2.0&no_html=1','',1,5,3600,0,'0000-00-00 00:00:00',10),(10,4,'Linux Today','http://linuxtoday.com/backend/my-netscape.rdf','',1,3,3600,0,'0000-00-00 00:00:00',1),(5,5,'Business News','http://headlines.internet.com/internetnews/bus-news/news.rss','',1,3,3600,0,'0000-00-00 00:00:00',2),(11,6,'Web Developer News','http://headlines.internet.com/internetnews/wd-news/news.rss','',1,3,3600,0,'0000-00-00 00:00:00',3),(10,7,'Linux Central:New Products','http://linuxcentral.com/backend/lcnew.rdf','',1,3,3600,0,'0000-00-00 00:00:00',4),(10,8,'Linux Central:Best Selling','http://linuxcentral.com/backend/lcbestns.rdf','',1,3,3600,0,'0000-00-00 00:00:00',5),(10,9,'Linux Central:Daily Specials','http://linuxcentral.com/backend/lcspecialns.rdf','',1,3,3600,0,'0000-00-00 00:00:00',6),(9,10,'Internet:Finance News','http://headlines.internet.com/internetnews/fina-news/news.rss','',1,3,3600,0,'0000-00-00 00:00:00',7); /*!40000 ALTER TABLE `einstein_newsfeeds` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `einstein_poll_data` -- DROP TABLE IF EXISTS `einstein_poll_data`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `einstein_poll_data` ( `id` int(11) NOT NULL AUTO_INCREMENT, `pollid` int(4) NOT NULL DEFAULT '0', `text` text NOT NULL, `hits` int(11) NOT NULL DEFAULT '0', PRIMARY KEY (`id`), KEY `pollid` (`pollid`,`text`(1)) ) ENGINE=MyISAM AUTO_INCREMENT=13 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `einstein_poll_data` -- LOCK TABLES `einstein_poll_data` WRITE; /*!40000 ALTER TABLE `einstein_poll_data` DISABLE KEYS */; INSERT INTO `einstein_poll_data` VALUES (1,14,'Absolutely simple',1),(2,14,'Reasonably easy',0),(3,14,'Not straight-forward but I worked it out',0),(4,14,'I had to install extra server stuff',0),(5,14,'I had no idea and got my friend to do it',0),(6,14,'My dog ran away with the README ...',0),(7,14,'',0),(8,14,'',0),(9,14,'',0),(10,14,'',0),(11,14,'',0),(12,14,'',0); /*!40000 ALTER TABLE `einstein_poll_data` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `einstein_poll_date` -- DROP TABLE IF EXISTS `einstein_poll_date`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `einstein_poll_date` ( `id` bigint(20) NOT NULL AUTO_INCREMENT, `date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `vote_id` int(11) NOT NULL DEFAULT '0', `poll_id` int(11) NOT NULL DEFAULT '0', PRIMARY KEY (`id`), KEY `poll_id` (`poll_id`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `einstein_poll_date` -- LOCK TABLES `einstein_poll_date` WRITE; /*!40000 ALTER TABLE `einstein_poll_date` DISABLE KEYS */; /*!40000 ALTER TABLE `einstein_poll_date` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `einstein_poll_menu` -- DROP TABLE IF EXISTS `einstein_poll_menu`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `einstein_poll_menu` ( `pollid` int(11) NOT NULL DEFAULT '0', `menuid` int(11) NOT NULL DEFAULT '0', PRIMARY KEY (`pollid`,`menuid`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `einstein_poll_menu` -- LOCK TABLES `einstein_poll_menu` WRITE; /*!40000 ALTER TABLE `einstein_poll_menu` DISABLE KEYS */; INSERT INTO `einstein_poll_menu` VALUES (14,1); /*!40000 ALTER TABLE `einstein_poll_menu` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `einstein_polls` -- DROP TABLE IF EXISTS `einstein_polls`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `einstein_polls` ( `id` int(11) unsigned NOT NULL AUTO_INCREMENT, `title` varchar(100) NOT NULL DEFAULT '', `voters` int(9) NOT NULL DEFAULT '0', `checked_out` int(11) NOT NULL DEFAULT '0', `checked_out_time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `published` tinyint(1) NOT NULL DEFAULT '0', `access` int(11) NOT NULL DEFAULT '0', `lag` int(11) NOT NULL DEFAULT '0', PRIMARY KEY (`id`) ) ENGINE=MyISAM AUTO_INCREMENT=15 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `einstein_polls` -- LOCK TABLES `einstein_polls` WRITE; /*!40000 ALTER TABLE `einstein_polls` DISABLE KEYS */; INSERT INTO `einstein_polls` VALUES (14,'This Joomla! installation was ....',0,0,'2000-00-00 00:00:00',1,0,86400); /*!40000 ALTER TABLE `einstein_polls` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `einstein_sections` -- DROP TABLE IF EXISTS `einstein_sections`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `einstein_sections` ( `id` int(11) NOT NULL AUTO_INCREMENT, `title` varchar(50) NOT NULL DEFAULT '', `name` varchar(255) NOT NULL DEFAULT '', `image` varchar(100) NOT NULL DEFAULT '', `scope` varchar(50) NOT NULL DEFAULT '', `image_position` varchar(10) NOT NULL DEFAULT '', `description` text NOT NULL, `published` tinyint(1) NOT NULL DEFAULT '0', `checked_out` int(11) unsigned NOT NULL DEFAULT '0', `checked_out_time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `ordering` int(11) NOT NULL DEFAULT '0', `access` tinyint(3) unsigned NOT NULL DEFAULT '0', `count` int(11) NOT NULL DEFAULT '0', `params` text NOT NULL, PRIMARY KEY (`id`), KEY `idx_scope` (`scope`) ) ENGINE=MyISAM AUTO_INCREMENT=4 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `einstein_sections` -- LOCK TABLES `einstein_sections` WRITE; /*!40000 ALTER TABLE `einstein_sections` DISABLE KEYS */; INSERT INTO `einstein_sections` VALUES (1,'News','The News','articles.jpg','content','right','Select a news topic from the list below, then select a news article to read.',1,0,'0000-00-00 00:00:00',1,0,1,''),(2,'Newsflashes','Newsflashes','','content','left','',1,0,'0000-00-00 00:00:00',2,0,1,''),(3,'FAQs','Frequently Asked Questions','pastarchives.jpg','content','left','From the list below choose one of our FAQs topics, then select an FAQ to read. If you have a question which is not in this section, please contact us.',1,0,'0000-00-00 00:00:00',2,0,1,''); /*!40000 ALTER TABLE `einstein_sections` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `einstein_session` -- DROP TABLE IF EXISTS `einstein_session`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `einstein_session` ( `username` varchar(50) DEFAULT '', `time` varchar(14) DEFAULT '', `session_id` varchar(200) NOT NULL DEFAULT '0', `guest` tinyint(4) DEFAULT '1', `userid` int(11) DEFAULT '0', `usertype` varchar(50) DEFAULT '', `gid` tinyint(3) unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`session_id`), KEY `whosonline` (`guest`,`usertype`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `einstein_session` -- LOCK TABLES `einstein_session` WRITE; /*!40000 ALTER TABLE `einstein_session` DISABLE KEYS */; /*!40000 ALTER TABLE `einstein_session` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `einstein_stats_agents` -- DROP TABLE IF EXISTS `einstein_stats_agents`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `einstein_stats_agents` ( `agent` varchar(255) NOT NULL DEFAULT '', `type` tinyint(1) unsigned NOT NULL DEFAULT '0', `hits` int(11) unsigned NOT NULL DEFAULT '1' ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `einstein_stats_agents` -- LOCK TABLES `einstein_stats_agents` WRITE; /*!40000 ALTER TABLE `einstein_stats_agents` DISABLE KEYS */; /*!40000 ALTER TABLE `einstein_stats_agents` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `einstein_template_positions` -- DROP TABLE IF EXISTS `einstein_template_positions`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `einstein_template_positions` ( `id` int(11) NOT NULL AUTO_INCREMENT, `position` varchar(10) NOT NULL DEFAULT '', `description` varchar(255) NOT NULL DEFAULT '', PRIMARY KEY (`id`) ) ENGINE=MyISAM AUTO_INCREMENT=28 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `einstein_template_positions` -- LOCK TABLES `einstein_template_positions` WRITE; /*!40000 ALTER TABLE `einstein_template_positions` DISABLE KEYS */; INSERT INTO `einstein_template_positions` VALUES (1,'left',''),(2,'right',''),(3,'top',''),(4,'bottom',''),(5,'inset',''),(6,'banner',''),(7,'header',''),(8,'footer',''),(9,'newsflash',''),(10,'legals',''),(11,'pathway',''),(12,'toolbar',''),(13,'cpanel',''),(14,'user1',''),(15,'user2',''),(16,'user3',''),(17,'user4',''),(18,'user5',''),(19,'user6',''),(20,'user7',''),(21,'user8',''),(22,'user9',''),(23,'advert1',''),(24,'advert2',''),(25,'advert3',''),(26,'icon',''),(27,'debug',''); /*!40000 ALTER TABLE `einstein_template_positions` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `einstein_templates_menu` -- DROP TABLE IF EXISTS `einstein_templates_menu`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `einstein_templates_menu` ( `template` varchar(50) NOT NULL DEFAULT '', `menuid` int(11) NOT NULL DEFAULT '0', `client_id` tinyint(4) NOT NULL DEFAULT '0', PRIMARY KEY (`template`,`menuid`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `einstein_templates_menu` -- LOCK TABLES `einstein_templates_menu` WRITE; /*!40000 ALTER TABLE `einstein_templates_menu` DISABLE KEYS */; INSERT INTO `einstein_templates_menu` VALUES ('owtweb_einstein',0,0),('joomla_admin',0,1); /*!40000 ALTER TABLE `einstein_templates_menu` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `einstein_users` -- DROP TABLE IF EXISTS `einstein_users`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `einstein_users` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(50) NOT NULL DEFAULT '', `username` varchar(25) NOT NULL DEFAULT '', `email` varchar(100) NOT NULL DEFAULT '', `password` varchar(100) NOT NULL DEFAULT '', `usertype` varchar(25) NOT NULL DEFAULT '', `block` tinyint(4) NOT NULL DEFAULT '0', `sendEmail` tinyint(4) DEFAULT '0', `gid` tinyint(3) unsigned NOT NULL DEFAULT '1', `registerDate` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `lastvisitDate` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `activation` varchar(100) NOT NULL DEFAULT '', `params` text NOT NULL, PRIMARY KEY (`id`), KEY `usertype` (`usertype`), KEY `idx_name` (`name`) ) ENGINE=MyISAM AUTO_INCREMENT=63 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `einstein_users` -- LOCK TABLES `einstein_users` WRITE; /*!40000 ALTER TABLE `einstein_users` DISABLE KEYS */; INSERT INTO `einstein_users` VALUES (62,'Administrator','admin','mam@heimam.at','5a9361b28ee51795f1e82d9054919034','Super Administrator',0,1,25,'2006-06-04 21:35:31','2007-04-04 21:09:14','',''); /*!40000 ALTER TABLE `einstein_users` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `einstein_usertypes` -- DROP TABLE IF EXISTS `einstein_usertypes`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `einstein_usertypes` ( `id` tinyint(3) unsigned NOT NULL DEFAULT '0', `name` varchar(50) NOT NULL DEFAULT '', `mask` varchar(11) NOT NULL DEFAULT '', PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `einstein_usertypes` -- LOCK TABLES `einstein_usertypes` WRITE; /*!40000 ALTER TABLE `einstein_usertypes` DISABLE KEYS */; INSERT INTO `einstein_usertypes` VALUES (0,'superadministrator',''),(1,'administrator',''),(2,'editor',''),(3,'user',''),(4,'author',''),(5,'publisher',''),(6,'manager',''); /*!40000 ALTER TABLE `einstein_usertypes` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `einstein_weblinks` -- DROP TABLE IF EXISTS `einstein_weblinks`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `einstein_weblinks` ( `id` int(11) unsigned NOT NULL AUTO_INCREMENT, `catid` int(11) NOT NULL DEFAULT '0', `sid` int(11) NOT NULL DEFAULT '0', `title` varchar(250) NOT NULL DEFAULT '', `url` varchar(250) NOT NULL DEFAULT '', `description` varchar(250) NOT NULL DEFAULT '', `date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `hits` int(11) NOT NULL DEFAULT '0', `published` tinyint(1) NOT NULL DEFAULT '0', `checked_out` int(11) NOT NULL DEFAULT '0', `checked_out_time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `ordering` int(11) NOT NULL DEFAULT '0', `archived` tinyint(1) NOT NULL DEFAULT '0', `approved` tinyint(1) NOT NULL DEFAULT '1', `params` text NOT NULL, PRIMARY KEY (`id`), KEY `catid` (`catid`,`published`,`archived`) ) ENGINE=MyISAM AUTO_INCREMENT=6 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `einstein_weblinks` -- LOCK TABLES `einstein_weblinks` WRITE; /*!40000 ALTER TABLE `einstein_weblinks` DISABLE KEYS */; INSERT INTO `einstein_weblinks` VALUES (1,2,0,'Joomla!','http://www.joomla.org','Home of Joomla!','2005-02-14 15:19:02',2,1,0,'0000-00-00 00:00:00',1,0,1,'target=0'),(2,2,0,'php.net','http://www.php.net','The language that Joomla! is developed in','2004-07-07 11:33:24',0,1,0,'0000-00-00 00:00:00',3,0,1,''),(3,2,0,'MySQL','http://www.mysql.com','The database that Joomla! uses','2004-07-07 10:18:31',0,1,0,'0000-00-00 00:00:00',5,0,1,''),(4,2,0,'OpenSourceMatters','http://www.opensourcematters.org','Home of OSM','2005-02-14 15:19:02',2,1,0,'0000-00-00 00:00:00',1,0,1,'target=0'),(5,2,0,'Joomla! - Forums','http://forum.joomla.org','Joomla! Forums','2005-02-14 15:19:02',2,1,0,'0000-00-00 00:00:00',1,0,1,'target=0'); /*!40000 ALTER TABLE `einstein_weblinks` ENABLE KEYS */; UNLOCK TABLES; -- -- Current Database: `joomla_mamfm` -- CREATE DATABASE /*!32312 IF NOT EXISTS*/ `joomla_mamfm` /*!40100 DEFAULT CHARACTER SET latin1 */; USE `joomla_mamfm`; -- -- Table structure for table `mamfm_banner` -- DROP TABLE IF EXISTS `mamfm_banner`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `mamfm_banner` ( `bid` int(11) NOT NULL AUTO_INCREMENT, `cid` int(11) NOT NULL DEFAULT '0', `type` varchar(10) NOT NULL DEFAULT 'banner', `name` varchar(50) NOT NULL DEFAULT '', `imptotal` int(11) NOT NULL DEFAULT '0', `impmade` int(11) NOT NULL DEFAULT '0', `clicks` int(11) NOT NULL DEFAULT '0', `imageurl` varchar(100) NOT NULL DEFAULT '', `clickurl` varchar(200) NOT NULL DEFAULT '', `date` datetime DEFAULT NULL, `showBanner` tinyint(1) NOT NULL DEFAULT '0', `checked_out` tinyint(1) NOT NULL DEFAULT '0', `checked_out_time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `editor` varchar(50) DEFAULT NULL, `custombannercode` text, PRIMARY KEY (`bid`), KEY `viewbanner` (`showBanner`) ) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `mamfm_banner` -- LOCK TABLES `mamfm_banner` WRITE; /*!40000 ALTER TABLE `mamfm_banner` DISABLE KEYS */; INSERT INTO `mamfm_banner` VALUES (1,1,'banner','OSM 1',0,42,0,'osmbanner1.png','http://www.opensourcematters.org','2004-07-07 15:31:29',1,0,'2000-00-00 00:00:00',NULL,NULL),(2,1,'banner','OSM 2',0,49,0,'osmbanner2.png','http://www.opensourcematters.org','2004-07-07 15:31:29',1,0,'2000-00-00 00:00:00',NULL,NULL); /*!40000 ALTER TABLE `mamfm_banner` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `mamfm_bannerclient` -- DROP TABLE IF EXISTS `mamfm_bannerclient`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `mamfm_bannerclient` ( `cid` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(60) NOT NULL DEFAULT '', `contact` varchar(60) NOT NULL DEFAULT '', `email` varchar(60) NOT NULL DEFAULT '', `extrainfo` text NOT NULL, `checked_out` tinyint(1) NOT NULL DEFAULT '0', `checked_out_time` time DEFAULT NULL, `editor` varchar(50) DEFAULT NULL, PRIMARY KEY (`cid`) ) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `mamfm_bannerclient` -- LOCK TABLES `mamfm_bannerclient` WRITE; /*!40000 ALTER TABLE `mamfm_bannerclient` DISABLE KEYS */; INSERT INTO `mamfm_bannerclient` VALUES (1,'Open Source Matters','Administrator','admin@opensourcematters.org','',0,'00:00:00',NULL); /*!40000 ALTER TABLE `mamfm_bannerclient` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `mamfm_bannerfinish` -- DROP TABLE IF EXISTS `mamfm_bannerfinish`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `mamfm_bannerfinish` ( `bid` int(11) NOT NULL AUTO_INCREMENT, `cid` int(11) NOT NULL DEFAULT '0', `type` varchar(10) NOT NULL DEFAULT '', `name` varchar(50) NOT NULL DEFAULT '', `impressions` int(11) NOT NULL DEFAULT '0', `clicks` int(11) NOT NULL DEFAULT '0', `imageurl` varchar(50) NOT NULL DEFAULT '', `datestart` datetime DEFAULT NULL, `dateend` datetime DEFAULT NULL, PRIMARY KEY (`bid`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `mamfm_bannerfinish` -- LOCK TABLES `mamfm_bannerfinish` WRITE; /*!40000 ALTER TABLE `mamfm_bannerfinish` DISABLE KEYS */; /*!40000 ALTER TABLE `mamfm_bannerfinish` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `mamfm_categories` -- DROP TABLE IF EXISTS `mamfm_categories`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `mamfm_categories` ( `id` int(11) NOT NULL AUTO_INCREMENT, `parent_id` int(11) NOT NULL DEFAULT '0', `title` varchar(50) NOT NULL DEFAULT '', `name` varchar(255) NOT NULL DEFAULT '', `image` varchar(100) NOT NULL DEFAULT '', `section` varchar(50) NOT NULL DEFAULT '', `image_position` varchar(10) NOT NULL DEFAULT '', `description` text NOT NULL, `published` tinyint(1) NOT NULL DEFAULT '0', `checked_out` int(11) unsigned NOT NULL DEFAULT '0', `checked_out_time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `editor` varchar(50) DEFAULT NULL, `ordering` int(11) NOT NULL DEFAULT '0', `access` tinyint(3) unsigned NOT NULL DEFAULT '0', `count` int(11) NOT NULL DEFAULT '0', `params` text NOT NULL, PRIMARY KEY (`id`), KEY `cat_idx` (`section`,`published`,`access`), KEY `idx_section` (`section`), KEY `idx_access` (`access`), KEY `idx_checkout` (`checked_out`) ) ENGINE=MyISAM AUTO_INCREMENT=13 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `mamfm_categories` -- LOCK TABLES `mamfm_categories` WRITE; /*!40000 ALTER TABLE `mamfm_categories` DISABLE KEYS */; INSERT INTO `mamfm_categories` VALUES (1,0,'Latest','Latest News','taking_notes.jpg','1','left','The latest news from the Joomla! Team',1,0,'0000-00-00 00:00:00','',0,0,1,''),(2,0,'Joomla!','Joomla!','clock.jpg','com_weblinks','left','A selection of links that are all related to the Joomla! Project.',1,0,'0000-00-00 00:00:00',NULL,0,0,0,''),(3,0,'Newsflash','Newsflash','','2','left','',1,0,'0000-00-00 00:00:00','',0,0,0,''),(4,0,'Joomla!','Joomla!','','com_newsfeeds','left','',1,0,'0000-00-00 00:00:00',NULL,2,0,0,''),(5,0,'Business: general','Business: general','','com_newsfeeds','left','',1,0,'0000-00-00 00:00:00',NULL,1,0,0,''),(7,0,'Examples','Example FAQs','key.jpg','3','left','Here you will find an example set of FAQs.',1,0,'0000-00-00 00:00:00',NULL,0,0,2,''),(9,0,'Finance','Finance','','com_newsfeeds','left','',1,0,'0000-00-00 00:00:00',NULL,5,0,0,''),(10,0,'Linux','Linux','','com_newsfeeds','left','
\r\n',1,0,'0000-00-00 00:00:00',NULL,6,0,0,''),(11,0,'Internet','Internet','','com_newsfeeds','left','',1,0,'0000-00-00 00:00:00',NULL,7,0,0,''),(12,0,'Contacts','Contacts','','com_contact_details','left','Contact Details for this website',1,0,'0000-00-00 00:00:00',NULL,0,0,0,''); /*!40000 ALTER TABLE `mamfm_categories` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `mamfm_components` -- DROP TABLE IF EXISTS `mamfm_components`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `mamfm_components` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(50) NOT NULL DEFAULT '', `link` varchar(255) NOT NULL DEFAULT '', `menuid` int(11) unsigned NOT NULL DEFAULT '0', `parent` int(11) unsigned NOT NULL DEFAULT '0', `admin_menu_link` varchar(255) NOT NULL DEFAULT '', `admin_menu_alt` varchar(255) NOT NULL DEFAULT '', `option` varchar(50) NOT NULL DEFAULT '', `ordering` int(11) NOT NULL DEFAULT '0', `admin_menu_img` varchar(255) NOT NULL DEFAULT '', `iscore` tinyint(4) NOT NULL DEFAULT '0', `params` text NOT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM AUTO_INCREMENT=19 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `mamfm_components` -- LOCK TABLES `mamfm_components` WRITE; /*!40000 ALTER TABLE `mamfm_components` DISABLE KEYS */; INSERT INTO `mamfm_components` VALUES (1,'Banners','',0,0,'','Banner Management','com_banners',0,'js/ThemeOffice/component.png',0,''),(2,'Manage Banners','',0,1,'option=com_banners','Active Banners','com_banners',1,'js/ThemeOffice/edit.png',0,''),(3,'Manage Clients','',0,1,'option=com_banners&task=listclients','Manage Clients','com_banners',2,'js/ThemeOffice/categories.png',0,''),(4,'Web Links','option=com_weblinks',0,0,'','Manage Weblinks','com_weblinks',0,'js/ThemeOffice/globe2.png',0,''),(5,'Weblink Items','',0,4,'option=com_weblinks','View existing weblinks','com_weblinks',1,'js/ThemeOffice/edit.png',0,''),(6,'Weblink Categories','',0,4,'option=categories§ion=com_weblinks','Manage weblink categories','',2,'js/ThemeOffice/categories.png',0,''),(7,'Contacts','option=com_contact',0,0,'','Edit contact details','com_contact',0,'js/ThemeOffice/user.png',1,''),(8,'Manage Contacts','',0,7,'option=com_contact','Edit contact details','com_contact',0,'js/ThemeOffice/edit.png',1,''),(9,'Contact Categories','',0,7,'option=categories§ion=com_contact_details','Manage contact categories','',2,'js/ThemeOffice/categories.png',1,''),(10,'FrontPage','option=com_frontpage',0,0,'','Manage Front Page Items','com_frontpage',0,'js/ThemeOffice/component.png',1,''),(11,'Polls','option=com_poll',0,0,'option=com_poll','Manage Polls','com_poll',0,'js/ThemeOffice/component.png',0,''),(12,'News Feeds','option=com_newsfeeds',0,0,'','News Feeds Management','com_newsfeeds',0,'js/ThemeOffice/component.png',0,''),(13,'Manage News Feeds','',0,12,'option=com_newsfeeds','Manage News Feeds','com_newsfeeds',1,'js/ThemeOffice/edit.png',0,''),(14,'Manage Categories','',0,12,'option=com_categories§ion=com_newsfeeds','Manage Categories','',2,'js/ThemeOffice/categories.png',0,''),(15,'Login','option=com_login',0,0,'','','com_login',0,'',1,''),(16,'Search','option=com_search',0,0,'','','com_search',0,'',1,''),(17,'Syndicate','',0,0,'option=com_syndicate&hidemainmenu=1','Manage Syndication Settings','com_syndicate',0,'js/ThemeOffice/component.png',0,''),(18,'Mass Mail','',0,0,'option=com_massmail&hidemainmenu=1','Send Mass Mail','com_massmail',0,'js/ThemeOffice/mass_email.png',0,''); /*!40000 ALTER TABLE `mamfm_components` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `mamfm_contact_details` -- DROP TABLE IF EXISTS `mamfm_contact_details`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `mamfm_contact_details` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(100) NOT NULL DEFAULT '', `con_position` varchar(50) DEFAULT NULL, `address` text, `suburb` varchar(50) DEFAULT NULL, `state` varchar(20) DEFAULT NULL, `country` varchar(50) DEFAULT NULL, `postcode` varchar(10) DEFAULT NULL, `telephone` varchar(25) DEFAULT NULL, `fax` varchar(25) DEFAULT NULL, `misc` mediumtext, `image` varchar(100) DEFAULT NULL, `imagepos` varchar(20) DEFAULT NULL, `email_to` varchar(100) DEFAULT NULL, `default_con` tinyint(1) unsigned NOT NULL DEFAULT '0', `published` tinyint(1) unsigned NOT NULL DEFAULT '0', `checked_out` int(11) unsigned NOT NULL DEFAULT '0', `checked_out_time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `ordering` int(11) NOT NULL DEFAULT '0', `params` text NOT NULL, `user_id` int(11) NOT NULL DEFAULT '0', `catid` int(11) NOT NULL DEFAULT '0', `access` tinyint(3) unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`id`) ) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `mamfm_contact_details` -- LOCK TABLES `mamfm_contact_details` WRITE; /*!40000 ALTER TABLE `mamfm_contact_details` DISABLE KEYS */; INSERT INTO `mamfm_contact_details` VALUES (1,'Name','Position','Street','Suburb','State','Country','Zip Code','Telephone','Fax','Miscellanous info','asterisk.png','top','email@email.com',1,1,0,'0000-00-00 00:00:00',1,'',0,12,0); /*!40000 ALTER TABLE `mamfm_contact_details` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `mamfm_content` -- DROP TABLE IF EXISTS `mamfm_content`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `mamfm_content` ( `id` int(11) unsigned NOT NULL AUTO_INCREMENT, `title` varchar(100) NOT NULL DEFAULT '', `title_alias` varchar(100) NOT NULL DEFAULT '', `introtext` mediumtext NOT NULL, `fulltext` mediumtext NOT NULL, `state` tinyint(3) NOT NULL DEFAULT '0', `sectionid` int(11) unsigned NOT NULL DEFAULT '0', `mask` int(11) unsigned NOT NULL DEFAULT '0', `catid` int(11) unsigned NOT NULL DEFAULT '0', `created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `created_by` int(11) unsigned NOT NULL DEFAULT '0', `created_by_alias` varchar(100) NOT NULL DEFAULT '', `modified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `modified_by` int(11) unsigned NOT NULL DEFAULT '0', `checked_out` int(11) unsigned NOT NULL DEFAULT '0', `checked_out_time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `publish_up` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `publish_down` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `images` text NOT NULL, `urls` text NOT NULL, `attribs` text NOT NULL, `version` int(11) unsigned NOT NULL DEFAULT '1', `parentid` int(11) unsigned NOT NULL DEFAULT '0', `ordering` int(11) NOT NULL DEFAULT '0', `metakey` text NOT NULL, `metadesc` text NOT NULL, `access` int(11) unsigned NOT NULL DEFAULT '0', `hits` int(11) unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`id`), KEY `idx_section` (`sectionid`), KEY `idx_access` (`access`), KEY `idx_checkout` (`checked_out`), KEY `idx_state` (`state`), KEY `idx_catid` (`catid`), KEY `idx_mask` (`mask`) ) ENGINE=MyISAM AUTO_INCREMENT=12 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `mamfm_content` -- LOCK TABLES `mamfm_content` WRITE; /*!40000 ALTER TABLE `mamfm_content` DISABLE KEYS */; INSERT INTO `mamfm_content` VALUES (1,'Welcome to Joomla!','Welcome','If you\'ve read anything at all about Content Management Systems (CMS), you\'ll probably know at least three things: CMS are the most exciting way to do business, CMS can be really, I mean really, complicated and lastly Portals are absolutely, outrageously, often unaffordably expensive.

{mosimage}Joomla! is set to change all that ... Joomla! is different from the normal models for portal software. For a start, it\'s not complicated. Joomla! has been developed for the masses. It\'s licensed under the GNU/GPL license, easy to install and administer and reliable. Joomla! doesn\'t even require the user or administrator of the system to know HTML to operate it once it\'s up and running.','

Joomla! features:

\r\n\r\n

Extensive Administration:

\r\n',1,1,0,1,'2004-06-12 11:54:06',62,'Web Master','2004-06-12 12:33:27',62,0,'0000-00-00 00:00:00','2004-01-01 00:00:00','0000-00-00 00:00:00','asterisk.png|left|Joomla! Logo|1|Example Caption|bottom|center|120','','',1,0,1,'','',0,0),(2,'Newsflash 1','','Joomla! 1.0 - \'Experience the Freedom\'!. It has never been easier to create\r\nyour own dynamic site. Manage all your content from the best CMS admin\r\ninterface.','',1,2,1,3,'2004-08-09 08:30:34',62,'','0000-00-00 00:00:00',0,0,'0000-00-00 00:00:00','2004-08-09 00:00:00','0000-00-00 00:00:00','','','',1,0,1,'','',0,0),(3,'Newsflash 2','','Yesterday all servers in the U.S. went out on strike in a bid to get more RAM and better CPUs. A spokes person said that the need for better RAM was due to some fool increasing the front-side bus speed. In future, busses will be told to slow down in residential motherboards.','',1,2,1,3,'2004-08-09 08:30:34',62,'','0000-00-00 00:00:00',0,0,'0000-00-00 00:00:00','2004-08-09 00:00:00','0000-00-00 00:00:00','','','',1,0,2,'','',0,0),(4,'Newsflash 3','','Aoccdrnig to a rscheearch at an Elingsh uinervtisy, it deosn\'t mttaer in waht oredr the ltteers in a wrod are, the olny iprmoetnt tihng is taht frist and lsat ltteer is at the rghit pclae. The rset can be a toatl mses and you can sitll raed it wouthit porbelm. Tihs is bcuseae we do not raed ervey lteter by itslef but the wrod as a wlohe.','',1,2,1,3,'2004-08-09 08:30:34',62,'','0000-00-00 00:00:00',0,0,'0000-00-00 00:00:00','2004-08-09 00:00:00','0000-00-00 00:00:00','','','',1,0,3,'','',0,1),(5,'Joomla! License Guidelines','','

This website is powered by Joomla! The software and default templates on which it runs are Copyright 2005 Open Source Matters. All other content and data, including data entered into this website and templates added after installation, are copyrighted by their respective copyright owners.

If you want to distribute, copy or modify Joomla!, you are welcome to do so under the terms of the GNU General Public License. If you are unfamiliar with this license, you might want to read \'How To Apply These Terms To Your Program\' and the \'GNU General Public License FAQ\'.

','',1,0,0,0,'2004-08-19 20:11:07',62,'','2004-08-19 20:14:49',62,0,'0000-00-00 00:00:00','2004-08-19 00:00:00','0000-00-00 00:00:00','','','menu_image=\nitem_title=1\npageclass_sfx=\nback_button=\nrating=\nauthor=\ncreatedate=\nmodifydate=\npdf=\nprint=\nemail=',1,0,11,'','',0,10),(6,'Example News Item 1','News1','{mosimage}Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat,\r\nsed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit\r\namet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam\r\nvoluptua. At vero eos et accusam et justo duo dolores et ea rebum.','

{mosimage}Duis autem vel eum iriure dolor in hendrerit in vulputate\r\nvelit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at\r\nvero eros et accumsan et iusto odio dignissim qui blandit praesent luptatum\r\nzzril delenit augue duis dolore te feugait nulla facilisi. Lorem ipsum dolor\r\nsit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt\r\nut laoreet dolore magna aliquam erat volutpat.

\r\n\r\n

Ut wisi enim ad minim veniam, quis nostrud exerci tation\r\nullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis\r\nautem vel eum iriure dolor in hendrerit in vulputate velit esse molestie\r\nconsequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan\r\net iusto odio dignissim qui blandit praesent luptatum zzril delenit augue duis\r\ndolore te feugait nulla facilisi.

\r\n\r\n

Nam liber tempor cum soluta nobis eleifend option congue\r\nnihil imperdiet doming id quod mazim placerat facer possim assum. Lorem ipsum\r\ndolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod\r\ntincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim\r\nveniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut\r\naliquip ex ea commodo consequat.

\r\n\r\n

Duis autem vel eum iriure dolor in hendrerit in vulputate\r\nvelit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis. At\r\nvero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd\r\ngubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum\r\ndolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor\r\ninvidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero\r\neos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no\r\nsea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit\r\namet, consetetur sadipscing elitr, At accusam aliquyam diam diam dolore dolores\r\nduo eirmod eos erat, et nonumy sed tempor et et invidunt justo labore Stet\r\nclita ea et gubergren, kasd magna no rebum. sanctus sea sed takimata ut vero\r\nvoluptua. est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet,\r\nconsetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore\r\net dolore magna aliquyam erat.

\r\n\r\n

Consetetur sadipscing elitr, sed diam nonumy eirmod tempor\r\ninvidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero\r\neos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no\r\nsea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit\r\namet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut\r\nlabore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam\r\net justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata\r\nsanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur\r\nsadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore\r\nmagna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo\r\ndolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est\r\nLorem ipsum dolor sit amet.

',1,1,0,1,'2004-07-07 11:54:06',62,'','2004-07-07 18:05:05',62,0,'0000-00-00 00:00:00','2004-07-07 00:00:00','0000-00-00 00:00:00','food/coffee.jpg|left||0\r\nfood/bread.jpg|right||0','','',1,0,2,'','',0,4),(7,'Example News Item 2','News2','

{mosimage}Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat,\r\nsed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit\r\namet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam\r\nvoluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem\r\nipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At\r\nvero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet.

','',1,1,0,1,'2004-07-07 11:54:06',62,'','2004-07-07 18:11:30',62,0,'0000-00-00 00:00:00','2004-07-07 00:00:00','0000-00-00 00:00:00','food/bun.jpg|right||0','','',1,0,3,'','',0,2),(8,'Example News Item 3','News3','

{mosimage}Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat,\r\nsed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit\r\namet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam\r\nvoluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem\r\nipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At\r\nvero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet.

','',1,1,0,1,'2004-04-12 11:54:06',62,'','2004-07-07 18:08:23',62,0,'0000-00-00 00:00:00','2004-07-07 00:00:00','0000-00-00 00:00:00','fruit/pears.jpg|right||0','','',1,0,4,'','',0,1),(9,'Example News Item 4','News4','

Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat,\r\nsed diam voluptua. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam\r\nvoluptua. At\r\nvero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet.

','

{mosimage}Duis autem vel eum iriure dolor in hendrerit in vulputate\r\nvelit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at\r\nvero eros et accumsan et iusto odio dignissim qui blandit praesent luptatum\r\nzzril delenit augue duis dolore te feugait nulla facilisi. Lorem ipsum dolor\r\nsit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt\r\nut laoreet dolore magna aliquam erat volutpat.

\r\n\r\n{mospagebreak}

{mosimage}Ut wisi enim ad minim veniam, quis nostrud exerci tation\r\nullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis\r\nautem vel eum iriure dolor in hendrerit in vulputate velit esse molestie\r\nconsequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan\r\net iusto odio dignissim qui blandit praesent luptatum zzril delenit augue duis\r\ndolore te feugait nulla facilisi.

\r\n\r\n

{mosimage}Nam liber tempor cum soluta nobis eleifend option congue\r\nnihil imperdiet doming id quod mazim placerat facer possim assum. Lorem ipsum\r\ndolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod\r\ntincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim\r\nveniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut\r\naliquip ex ea commodo consequat.

\r\n\r\n

Duis autem vel eum iriure dolor in hendrerit in vulputate\r\nvelit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis. At\r\nvero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd\r\ngubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum\r\ndolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor\r\ninvidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero\r\neos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no\r\nsea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit\r\namet, consetetur sadipscing elitr, At accusam aliquyam diam diam dolore dolores\r\nduo eirmod eos erat, et nonumy sed tempor et et invidunt justo labore Stet\r\nclita ea et gubergren, kasd magna no rebum. sanctus sea sed takimata ut vero\r\nvoluptua. est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet,\r\nconsetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore\r\net dolore magna aliquyam erat.

\r\n\r\n{mospagebreak}

Consetetur sadipscing elitr, sed diam nonumy eirmod tempor\r\ninvidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero\r\neos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no\r\nsea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit\r\namet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut\r\nlabore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam\r\net justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata\r\nsanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur\r\nsadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore\r\nmagna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo\r\ndolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est\r\nLorem ipsum dolor sit amet.

',1,1,0,1,'2004-07-07 11:54:06',62,'','2004-07-07 18:10:23',62,0,'0000-00-00 00:00:00','2004-07-07 00:00:00','0000-00-00 00:00:00','fruit/strawberry.jpg|left||0\r\nfruit/pears.jpg|right||0\r\nfruit/cherry.jpg|left||0','','',1,0,5,'','',0,6),(10,'Example FAQ Item 1','FAQ1','

Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat,\r\nsed diam voluptua. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam\r\nvoluptua. At\r\nvero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet.

','',1,3,0,7,'2004-05-12 11:54:06',62,'','2004-07-07 18:10:23',62,0,'0000-00-00 00:00:00','2004-01-01 00:00:00','0000-00-00 00:00:00','','','',1,0,5,'','',0,8),(11,'Example FAQ Item 2','FAQ2','

Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat,\r\nsed diam voluptua. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam\r\nvoluptua. At\r\nvero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet.

','

{mosimage}Duis autem vel eum iriure dolor in hendrerit in vulputate\r\nvelit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at\r\nvero eros et accumsan et iusto odio dignissim qui blandit praesent luptatum\r\nzzril delenit augue duis dolore te feugait nulla facilisi. Lorem ipsum dolor\r\nsit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt\r\nut laoreet dolore magna aliquam erat volutpat.

\r\n\r\n

{mosimage}Ut wisi enim ad minim veniam, quis nostrud exerci tation\r\nullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis\r\nautem vel eum iriure dolor in hendrerit in vulputate velit esse molestie\r\nconsequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan\r\net iusto odio dignissim qui blandit praesent luptatum zzril delenit augue duis\r\ndolore te feugait nulla facilisi.

\r\n\r\n

{mosimage}Nam liber tempor cum soluta nobis eleifend option congue\r\nnihil imperdiet doming id quod mazim placerat facer possim assum. Lorem ipsum\r\ndolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod\r\ntincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim\r\nveniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut\r\naliquip ex ea commodo consequat.

\r\n\r\n

Duis autem vel eum iriure dolor in hendrerit in vulputate\r\nvelit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis. At\r\nvero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd\r\ngubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum\r\ndolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor\r\ninvidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero\r\neos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no\r\nsea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit\r\namet, consetetur sadipscing elitr, At accusam aliquyam diam diam dolore dolores\r\nduo eirmod eos erat, et nonumy sed tempor et et invidunt justo labore Stet\r\nclita ea et gubergren, kasd magna no rebum. sanctus sea sed takimata ut vero\r\nvoluptua. est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet,\r\nconsetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore\r\net dolore magna aliquyam erat.

\r\n\r\n

Consetetur sadipscing elitr, sed diam nonumy eirmod tempor\r\ninvidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero\r\neos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no\r\nsea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit\r\namet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut\r\nlabore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam\r\net justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata\r\nsanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur\r\nsadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore\r\nmagna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo\r\ndolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est\r\nLorem ipsum dolor sit amet.

',1,3,0,7,'2004-05-12 11:54:06',62,'Web master','2004-07-07 18:10:23',62,0,'0000-00-00 00:00:00','2004-01-01 00:00:00','0000-00-00 00:00:00','fruit/cherry.jpg|left||0\r\nfruit/peas.jpg|right||0\r\nfood/milk.jpg|left||0','','',1,0,5,'','',0,10); /*!40000 ALTER TABLE `mamfm_content` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `mamfm_content_frontpage` -- DROP TABLE IF EXISTS `mamfm_content_frontpage`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `mamfm_content_frontpage` ( `content_id` int(11) NOT NULL DEFAULT '0', `ordering` int(11) NOT NULL DEFAULT '0', PRIMARY KEY (`content_id`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `mamfm_content_frontpage` -- LOCK TABLES `mamfm_content_frontpage` WRITE; /*!40000 ALTER TABLE `mamfm_content_frontpage` DISABLE KEYS */; INSERT INTO `mamfm_content_frontpage` VALUES (1,1),(2,2),(3,3),(4,4),(5,5); /*!40000 ALTER TABLE `mamfm_content_frontpage` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `mamfm_content_rating` -- DROP TABLE IF EXISTS `mamfm_content_rating`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `mamfm_content_rating` ( `content_id` int(11) NOT NULL DEFAULT '0', `rating_sum` int(11) unsigned NOT NULL DEFAULT '0', `rating_count` int(11) unsigned NOT NULL DEFAULT '0', `lastip` varchar(50) NOT NULL DEFAULT '', PRIMARY KEY (`content_id`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `mamfm_content_rating` -- LOCK TABLES `mamfm_content_rating` WRITE; /*!40000 ALTER TABLE `mamfm_content_rating` DISABLE KEYS */; /*!40000 ALTER TABLE `mamfm_content_rating` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `mamfm_core_acl_aro` -- DROP TABLE IF EXISTS `mamfm_core_acl_aro`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `mamfm_core_acl_aro` ( `aro_id` int(11) NOT NULL AUTO_INCREMENT, `section_value` varchar(240) NOT NULL DEFAULT '0', `value` varchar(240) NOT NULL DEFAULT '', `order_value` int(11) NOT NULL DEFAULT '0', `name` varchar(255) NOT NULL DEFAULT '', `hidden` int(11) NOT NULL DEFAULT '0', PRIMARY KEY (`aro_id`), UNIQUE KEY `mamfm_gacl_section_value_value_aro` (`section_value`(100),`value`(100)), KEY `mamfm_gacl_hidden_aro` (`hidden`) ) ENGINE=MyISAM AUTO_INCREMENT=11 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `mamfm_core_acl_aro` -- LOCK TABLES `mamfm_core_acl_aro` WRITE; /*!40000 ALTER TABLE `mamfm_core_acl_aro` DISABLE KEYS */; INSERT INTO `mamfm_core_acl_aro` VALUES (10,'users','62',0,'Administrator',0); /*!40000 ALTER TABLE `mamfm_core_acl_aro` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `mamfm_core_acl_aro_groups` -- DROP TABLE IF EXISTS `mamfm_core_acl_aro_groups`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `mamfm_core_acl_aro_groups` ( `group_id` int(11) NOT NULL AUTO_INCREMENT, `parent_id` int(11) NOT NULL DEFAULT '0', `name` varchar(255) NOT NULL DEFAULT '', `lft` int(11) NOT NULL DEFAULT '0', `rgt` int(11) NOT NULL DEFAULT '0', PRIMARY KEY (`group_id`), KEY `parent_id_aro_groups` (`parent_id`), KEY `mamfm_gacl_parent_id_aro_groups` (`parent_id`), KEY `mamfm_gacl_lft_rgt_aro_groups` (`lft`,`rgt`) ) ENGINE=MyISAM AUTO_INCREMENT=31 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `mamfm_core_acl_aro_groups` -- LOCK TABLES `mamfm_core_acl_aro_groups` WRITE; /*!40000 ALTER TABLE `mamfm_core_acl_aro_groups` DISABLE KEYS */; INSERT INTO `mamfm_core_acl_aro_groups` VALUES (17,0,'ROOT',1,22),(28,17,'USERS',2,21),(29,28,'Public Frontend',3,12),(18,29,'Registered',4,11),(19,18,'Author',5,10),(20,19,'Editor',6,9),(21,20,'Publisher',7,8),(30,28,'Public Backend',13,20),(23,30,'Manager',14,19),(24,23,'Administrator',15,18),(25,24,'Super Administrator',16,17); /*!40000 ALTER TABLE `mamfm_core_acl_aro_groups` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `mamfm_core_acl_aro_sections` -- DROP TABLE IF EXISTS `mamfm_core_acl_aro_sections`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `mamfm_core_acl_aro_sections` ( `section_id` int(11) NOT NULL AUTO_INCREMENT, `value` varchar(230) NOT NULL DEFAULT '', `order_value` int(11) NOT NULL DEFAULT '0', `name` varchar(230) NOT NULL DEFAULT '', `hidden` int(11) NOT NULL DEFAULT '0', PRIMARY KEY (`section_id`), UNIQUE KEY `value_aro_sections` (`value`), UNIQUE KEY `mamfm_gacl_value_aro_sections` (`value`), KEY `hidden_aro_sections` (`hidden`), KEY `mamfm_gacl_hidden_aro_sections` (`hidden`) ) ENGINE=MyISAM AUTO_INCREMENT=11 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `mamfm_core_acl_aro_sections` -- LOCK TABLES `mamfm_core_acl_aro_sections` WRITE; /*!40000 ALTER TABLE `mamfm_core_acl_aro_sections` DISABLE KEYS */; INSERT INTO `mamfm_core_acl_aro_sections` VALUES (10,'users',1,'Users',0); /*!40000 ALTER TABLE `mamfm_core_acl_aro_sections` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `mamfm_core_acl_groups_aro_map` -- DROP TABLE IF EXISTS `mamfm_core_acl_groups_aro_map`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `mamfm_core_acl_groups_aro_map` ( `group_id` int(11) NOT NULL DEFAULT '0', `section_value` varchar(240) NOT NULL DEFAULT '', `aro_id` int(11) NOT NULL DEFAULT '0', UNIQUE KEY `group_id_aro_id_groups_aro_map` (`group_id`,`section_value`,`aro_id`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `mamfm_core_acl_groups_aro_map` -- LOCK TABLES `mamfm_core_acl_groups_aro_map` WRITE; /*!40000 ALTER TABLE `mamfm_core_acl_groups_aro_map` DISABLE KEYS */; INSERT INTO `mamfm_core_acl_groups_aro_map` VALUES (25,'',10); /*!40000 ALTER TABLE `mamfm_core_acl_groups_aro_map` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `mamfm_core_log_items` -- DROP TABLE IF EXISTS `mamfm_core_log_items`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `mamfm_core_log_items` ( `time_stamp` date NOT NULL DEFAULT '0000-00-00', `item_table` varchar(50) NOT NULL DEFAULT '', `item_id` int(11) unsigned NOT NULL DEFAULT '0', `hits` int(11) unsigned NOT NULL DEFAULT '0' ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `mamfm_core_log_items` -- LOCK TABLES `mamfm_core_log_items` WRITE; /*!40000 ALTER TABLE `mamfm_core_log_items` DISABLE KEYS */; /*!40000 ALTER TABLE `mamfm_core_log_items` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `mamfm_core_log_searches` -- DROP TABLE IF EXISTS `mamfm_core_log_searches`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `mamfm_core_log_searches` ( `search_term` varchar(128) NOT NULL DEFAULT '', `hits` int(11) unsigned NOT NULL DEFAULT '0' ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `mamfm_core_log_searches` -- LOCK TABLES `mamfm_core_log_searches` WRITE; /*!40000 ALTER TABLE `mamfm_core_log_searches` DISABLE KEYS */; /*!40000 ALTER TABLE `mamfm_core_log_searches` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `mamfm_groups` -- DROP TABLE IF EXISTS `mamfm_groups`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `mamfm_groups` ( `id` tinyint(3) unsigned NOT NULL DEFAULT '0', `name` varchar(50) NOT NULL DEFAULT '', PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `mamfm_groups` -- LOCK TABLES `mamfm_groups` WRITE; /*!40000 ALTER TABLE `mamfm_groups` DISABLE KEYS */; INSERT INTO `mamfm_groups` VALUES (0,'Public'),(1,'Registered'),(2,'Special'); /*!40000 ALTER TABLE `mamfm_groups` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `mamfm_mambots` -- DROP TABLE IF EXISTS `mamfm_mambots`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `mamfm_mambots` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(100) NOT NULL DEFAULT '', `element` varchar(100) NOT NULL DEFAULT '', `folder` varchar(100) NOT NULL DEFAULT '', `access` tinyint(3) unsigned NOT NULL DEFAULT '0', `ordering` int(11) NOT NULL DEFAULT '0', `published` tinyint(3) NOT NULL DEFAULT '0', `iscore` tinyint(3) NOT NULL DEFAULT '0', `client_id` tinyint(3) NOT NULL DEFAULT '0', `checked_out` int(11) unsigned NOT NULL DEFAULT '0', `checked_out_time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `params` text NOT NULL, PRIMARY KEY (`id`), KEY `idx_folder` (`published`,`client_id`,`access`,`folder`) ) ENGINE=MyISAM AUTO_INCREMENT=20 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `mamfm_mambots` -- LOCK TABLES `mamfm_mambots` WRITE; /*!40000 ALTER TABLE `mamfm_mambots` DISABLE KEYS */; INSERT INTO `mamfm_mambots` VALUES (1,'MOS Image','mosimage','content',0,-10000,1,1,0,0,'0000-00-00 00:00:00',''),(2,'MOS Pagination','mospaging','content',0,10000,1,1,0,0,'0000-00-00 00:00:00',''),(3,'Legacy Mambot Includer','legacybots','content',0,1,0,1,0,0,'0000-00-00 00:00:00',''),(4,'SEF','mossef','content',0,3,1,0,0,0,'0000-00-00 00:00:00',''),(5,'MOS Rating','mosvote','content',0,4,1,1,0,0,'0000-00-00 00:00:00',''),(6,'Search Content','content.searchbot','search',0,1,1,1,0,0,'0000-00-00 00:00:00',''),(7,'Search Weblinks','weblinks.searchbot','search',0,2,1,1,0,0,'0000-00-00 00:00:00',''),(8,'Code support','moscode','content',0,2,0,0,0,0,'0000-00-00 00:00:00',''),(9,'No WYSIWYG Editor','none','editors',0,0,1,1,0,0,'0000-00-00 00:00:00',''),(10,'TinyMCE WYSIWYG Editor','tinymce','editors',0,0,1,1,0,0,'0000-00-00 00:00:00','theme=advanced'),(11,'MOS Image Editor Button','mosimage.btn','editors-xtd',0,0,1,0,0,0,'0000-00-00 00:00:00',''),(12,'MOS Pagebreak Editor Button','mospage.btn','editors-xtd',0,0,1,0,0,0,'0000-00-00 00:00:00',''),(13,'Search Contacts','contacts.searchbot','search',0,3,1,1,0,0,'0000-00-00 00:00:00',''),(14,'Search Categories','categories.searchbot','search',0,4,1,0,0,0,'0000-00-00 00:00:00',''),(15,'Search Sections','sections.searchbot','search',0,5,1,0,0,0,'0000-00-00 00:00:00',''),(16,'Email Cloaking','mosemailcloak','content',0,5,1,0,0,0,'0000-00-00 00:00:00',''),(17,'GeSHi','geshi','content',0,5,0,0,0,0,'0000-00-00 00:00:00',''),(18,'Search Newsfeeds','newsfeeds.searchbot','search',0,6,1,0,0,0,'0000-00-00 00:00:00',''),(19,'Load Module Positions','mosloadposition','content',0,6,1,0,0,0,'0000-00-00 00:00:00',''); /*!40000 ALTER TABLE `mamfm_mambots` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `mamfm_menu` -- DROP TABLE IF EXISTS `mamfm_menu`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `mamfm_menu` ( `id` int(11) NOT NULL AUTO_INCREMENT, `menutype` varchar(25) DEFAULT NULL, `name` varchar(100) DEFAULT NULL, `link` text, `type` varchar(50) NOT NULL DEFAULT '', `published` tinyint(1) NOT NULL DEFAULT '0', `parent` int(11) unsigned NOT NULL DEFAULT '0', `componentid` int(11) unsigned NOT NULL DEFAULT '0', `sublevel` int(11) DEFAULT '0', `ordering` int(11) DEFAULT '0', `checked_out` int(11) unsigned NOT NULL DEFAULT '0', `checked_out_time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `pollid` int(11) NOT NULL DEFAULT '0', `browserNav` tinyint(4) DEFAULT '0', `access` tinyint(3) unsigned NOT NULL DEFAULT '0', `utaccess` tinyint(3) unsigned NOT NULL DEFAULT '0', `params` text NOT NULL, PRIMARY KEY (`id`), KEY `componentid` (`componentid`,`menutype`,`published`,`access`), KEY `menutype` (`menutype`) ) ENGINE=MyISAM AUTO_INCREMENT=26 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `mamfm_menu` -- LOCK TABLES `mamfm_menu` WRITE; /*!40000 ALTER TABLE `mamfm_menu` DISABLE KEYS */; INSERT INTO `mamfm_menu` VALUES (1,'mainmenu','Home','index.php?option=com_frontpage','components',1,0,10,0,1,0,'0000-00-00 00:00:00',0,0,0,3,'leading=1\r\nintro=2\r\nlink=1\r\nimage=1\r\npage_title=0\r\nheader=Welcome to the Frontpage\r\norderby_sec=front\r\nprint=0\r\npdf=0\r\nemail=0\r\nback_button=0'),(2,'mainmenu','News','index.php?option=com_content&task=section&id=1','content_section',1,0,1,0,3,0,'0000-00-00 00:00:00',0,0,0,3,''),(3,'mainmenu','Contact Us','index.php?option=com_contact','components',1,0,7,0,6,0,'0000-00-00 00:00:00',0,0,0,3,''),(23,'mainmenu','Links','index.php?option=com_weblinks','components',1,0,4,0,5,0,'0000-00-00 00:00:00',0,0,0,0,'menu_image=web_links.jpg\npageclass_sfx=\nback_button=\npage_title=1\nheader=\nheadings=1\nhits=\nitem_description=1\nother_cat=1\ndescription=1\ndescription_text=\nimage=-1\nimage_align=right\nweblink_icons='),(5,'mainmenu','Search','index.php?option=com_search','components',1,0,16,0,7,0,'0000-00-00 00:00:00',0,0,0,3,''),(6,'mainmenu','Joomla! License','index.php?option=com_content&task=view&id=5','content_typed',1,0,11,0,2,0,'0000-00-00 00:00:00',0,0,0,0,''),(7,'mainmenu','News Feeds','index.php?option=com_newsfeeds','components',1,0,12,0,8,0,'0000-00-00 00:00:00',0,0,0,3,'menu_image=-1\npageclass_sfx=\nback_button=\npage_title=1\nheader='),(8,'mainmenu','Wrapper','index.php?option=com_wrapper','wrapper',1,0,0,0,10,0,'0000-00-00 00:00:00',0,0,0,3,'menu_image=-1\npageclass_sfx=\nback_button=\npage_title=1\nheader=\nscrolling=auto\nwidth=100%\nheight=600\nheight_auto=0\nurl=www.joomla.org'),(9,'mainmenu','Blog','index.php?option=com_content&task=blogsection&id=0','content_blog_section',1,0,0,0,4,0,'0000-00-00 00:00:00',0,0,0,3,'menu_image=-1\npageclass_sfx=\nback_button=\nheader=A blog of all section with no images\npage_title=1\nleading=0\nintro=6\ncolumns=2\nlink=4\norderby_pri=\norderby_sec=\npagination=2\npagination_results=1\nimage=0\ndescription=0\ndescription_image=0\ncategory=0\ncategory_link=0\nitem_title=1\nlink_titles=\nreadmore=\nrating=\nauthor=\ncreatedate=\nmodifydate=\npdf=\nprint=\nemail=\nsectionid='),(10,'othermenu','Joomla! Home','http://www.joomla.org','url',1,0,0,0,1,0,'0000-00-00 00:00:00',0,0,0,3,''),(11,'othermenu','Joomla! Forums','http://forum.joomla.org','url',1,0,0,0,1,0,'0000-00-00 00:00:00',0,0,0,3,''),(12,'othermenu','OSM Home','http://www.opensourcematters.org','url',1,0,0,0,1,0,'0000-00-00 00:00:00',0,0,0,3,''),(24,'othermenu','Administrator','administrator/','url',1,0,0,0,3,0,'0000-00-00 00:00:00',0,0,0,3,'menu_image=-1'),(21,'usermenu','Your Details','index.php?option=com_user&task=UserDetails','url',1,0,0,0,1,0,'2000-00-00 00:00:00',0,0,1,3,''),(13,'usermenu','Submit News','index.php?option=com_content&task=new§ionid=1&Itemid=0','url',1,0,0,0,2,0,'2000-00-00 00:00:00',0,0,1,2,''),(14,'usermenu','Submit WebLink','index.php?option=com_weblinks&task=new','url',1,0,0,0,4,0,'2000-00-00 00:00:00',0,0,1,2,''),(15,'usermenu','Check-In My Items','index.php?option=com_user&task=CheckIn','url',1,0,0,0,5,0,'0000-00-00 00:00:00',0,0,1,2,''),(16,'usermenu','Logout','index.php?option=com_login','components',1,0,15,0,5,0,'0000-00-00 00:00:00',0,0,1,3,''),(17,'topmenu','Home','index.php','url',1,0,0,0,1,0,'0000-00-00 00:00:00',0,0,0,3,''),(18,'topmenu','Contact Us','index.php?option=com_contact&Itemid=3','url',1,0,0,0,2,0,'0000-00-00 00:00:00',0,0,0,3,''),(19,'topmenu','News','index.php?option=com_content&task=section&id=1&Itemid=2','url',1,0,0,0,3,0,'0000-00-00 00:00:00',0,0,0,3,''),(20,'topmenu','Links','index.php?option=com_weblinks&Itemid=23','url',1,0,0,0,4,0,'0000-00-00 00:00:00',0,0,0,3,'menu_image=-1'),(25,'mainmenu','FAQs','index.php?option=com_content&task=category§ionid=3&id=7','content_category',1,0,7,0,9,0,'0000-00-00 00:00:00',0,0,0,0,'menu_image=-1\npage_title=1\npageclass_sfx=\nback_button=\norderby=\ndate_format=\ndate=\nauthor=\ntitle=1\nhits=\nheadings=1\nnavigation=1\norder_select=1\ndisplay=1\ndisplay_num=50\nfilter=1\nfilter_type=title\nother_cat=1\nempty_cat=0\ncat_items=1\ncat_description=1'); /*!40000 ALTER TABLE `mamfm_menu` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `mamfm_messages` -- DROP TABLE IF EXISTS `mamfm_messages`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `mamfm_messages` ( `message_id` int(10) unsigned NOT NULL AUTO_INCREMENT, `user_id_from` int(10) unsigned NOT NULL DEFAULT '0', `user_id_to` int(10) unsigned NOT NULL DEFAULT '0', `folder_id` int(10) unsigned NOT NULL DEFAULT '0', `date_time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `state` int(11) NOT NULL DEFAULT '0', `priority` int(1) unsigned NOT NULL DEFAULT '0', `subject` varchar(230) NOT NULL DEFAULT '', `message` text NOT NULL, PRIMARY KEY (`message_id`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `mamfm_messages` -- LOCK TABLES `mamfm_messages` WRITE; /*!40000 ALTER TABLE `mamfm_messages` DISABLE KEYS */; /*!40000 ALTER TABLE `mamfm_messages` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `mamfm_messages_cfg` -- DROP TABLE IF EXISTS `mamfm_messages_cfg`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `mamfm_messages_cfg` ( `user_id` int(10) unsigned NOT NULL DEFAULT '0', `cfg_name` varchar(100) NOT NULL DEFAULT '', `cfg_value` varchar(255) NOT NULL DEFAULT '', UNIQUE KEY `idx_user_var_name` (`user_id`,`cfg_name`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `mamfm_messages_cfg` -- LOCK TABLES `mamfm_messages_cfg` WRITE; /*!40000 ALTER TABLE `mamfm_messages_cfg` DISABLE KEYS */; /*!40000 ALTER TABLE `mamfm_messages_cfg` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `mamfm_modules` -- DROP TABLE IF EXISTS `mamfm_modules`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `mamfm_modules` ( `id` int(11) NOT NULL AUTO_INCREMENT, `title` text NOT NULL, `content` text NOT NULL, `ordering` int(11) NOT NULL DEFAULT '0', `position` varchar(10) DEFAULT NULL, `checked_out` int(11) unsigned NOT NULL DEFAULT '0', `checked_out_time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `published` tinyint(1) NOT NULL DEFAULT '0', `module` varchar(50) DEFAULT NULL, `numnews` int(11) NOT NULL DEFAULT '0', `access` tinyint(3) unsigned NOT NULL DEFAULT '0', `showtitle` tinyint(3) unsigned NOT NULL DEFAULT '1', `params` text NOT NULL, `iscore` tinyint(4) NOT NULL DEFAULT '0', `client_id` tinyint(4) NOT NULL DEFAULT '0', PRIMARY KEY (`id`), KEY `published` (`published`,`access`), KEY `newsfeeds` (`module`,`published`) ) ENGINE=MyISAM AUTO_INCREMENT=33 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `mamfm_modules` -- LOCK TABLES `mamfm_modules` WRITE; /*!40000 ALTER TABLE `mamfm_modules` DISABLE KEYS */; INSERT INTO `mamfm_modules` VALUES (1,'Polls','',1,'right',0,'0000-00-00 00:00:00',1,'mod_poll',0,0,1,'',0,0),(2,'User Menu','',2,'left',0,'0000-00-00 00:00:00',1,'mod_mainmenu',0,1,1,'menutype=usermenu',1,0),(3,'Main Menu','',1,'left',0,'0000-00-00 00:00:00',1,'mod_mainmenu',0,0,1,'menutype=mainmenu',1,0),(4,'Login Form','',3,'left',0,'0000-00-00 00:00:00',1,'mod_login',0,0,1,'',1,0),(5,'Syndicate','',4,'left',0,'0000-00-00 00:00:00',1,'mod_rssfeed',0,0,1,'',1,0),(6,'Latest News','',4,'user1',0,'0000-00-00 00:00:00',1,'mod_latestnews',0,0,1,'',1,0),(7,'Statistics','',4,'left',0,'0000-00-00 00:00:00',0,'mod_stats',0,0,1,'serverinfo=1\nsiteinfo=1\ncounter=1\nincrease=0\nmoduleclass_sfx=',0,0),(8,'Who\'s Online','',1,'right',0,'0000-00-00 00:00:00',1,'mod_whosonline',0,0,1,'online=1\nusers=1\nmoduleclass_sfx=',0,0),(9,'Popular','',6,'user2',0,'0000-00-00 00:00:00',1,'mod_mostread',0,0,1,'',0,0),(10,'Template Chooser','',6,'left',0,'0000-00-00 00:00:00',0,'mod_templatechooser',0,0,1,'show_preview=1',0,0),(11,'Archive','',7,'left',0,'0000-00-00 00:00:00',0,'mod_archive',0,0,1,'',1,0),(12,'Sections','',8,'left',0,'0000-00-00 00:00:00',0,'mod_sections',0,0,1,'',1,0),(13,'Newsflash','',1,'top',0,'0000-00-00 00:00:00',1,'mod_newsflash',0,0,1,'catid=3\r\nstyle=random\r\nitems=\r\nmoduleclass_sfx=',0,0),(14,'Related Items','',9,'left',0,'0000-00-00 00:00:00',0,'mod_related_items',0,0,1,'',0,0),(15,'Search','',1,'user4',0,'0000-00-00 00:00:00',1,'mod_search',0,0,0,'',0,0),(16,'Random Image','',9,'right',0,'0000-00-00 00:00:00',1,'mod_random_image',0,0,1,'',0,0),(17,'Top Menu','',1,'user3',0,'0000-00-00 00:00:00',1,'mod_mainmenu',0,0,0,'menutype=topmenu\nmenu_style=list_flat\nmenu_images=n\nmenu_images_align=left\nexpand_menu=n\nclass_sfx=-nav\nmoduleclass_sfx=\nindent_image1=0\nindent_image2=0\nindent_image3=0\nindent_image4=0\nindent_image5=0\nindent_image6=0',1,0),(18,'Banners','',1,'banner',0,'0000-00-00 00:00:00',1,'mod_banners',0,0,0,'banner_cids=\nmoduleclass_sfx=\n',1,0),(19,'Components','',2,'cpanel',0,'0000-00-00 00:00:00',1,'mod_components',0,99,1,'',1,1),(20,'Popular','',3,'cpanel',0,'0000-00-00 00:00:00',1,'mod_popular',0,99,1,'',0,1),(21,'Latest Items','',4,'cpanel',0,'0000-00-00 00:00:00',1,'mod_latest',0,99,1,'',0,1),(22,'Menu Stats','',5,'cpanel',0,'0000-00-00 00:00:00',1,'mod_stats',0,99,1,'',0,1),(23,'Unread Messages','',1,'header',0,'0000-00-00 00:00:00',1,'mod_unread',0,99,1,'',1,1),(24,'Online Users','',2,'header',0,'0000-00-00 00:00:00',1,'mod_online',0,99,1,'',1,1),(25,'Full Menu','',1,'top',0,'0000-00-00 00:00:00',1,'mod_fullmenu',0,99,1,'',1,1),(26,'Pathway','',1,'pathway',0,'0000-00-00 00:00:00',1,'mod_pathway',0,99,1,'',1,1),(27,'Toolbar','',1,'toolbar',0,'0000-00-00 00:00:00',1,'mod_toolbar',0,99,1,'',1,1),(28,'System Message','',1,'inset',0,'0000-00-00 00:00:00',1,'mod_mosmsg',0,99,1,'',1,1),(29,'Quick Icons','',1,'icon',0,'0000-00-00 00:00:00',1,'mod_quickicon',0,99,1,'',1,1),(30,'Other Menu','',2,'left',0,'0000-00-00 00:00:00',1,'mod_mainmenu',0,0,0,'menutype=othermenu\nmenu_style=vert_indent\ncache=0\nmenu_images=0\nmenu_images_align=0\nexpand_menu=0\nclass_sfx=\nmoduleclass_sfx=\nindent_image=0\nindent_image1=\nindent_image2=\nindent_image3=\nindent_image4=\nindent_image5=\nindent_image6=',0,0),(31,'Wrapper','',10,'left',0,'0000-00-00 00:00:00',0,'mod_wrapper',0,0,1,'',0,0),(32,'Logged','',0,'cpanel',0,'0000-00-00 00:00:00',1,'mod_logged',0,99,1,'',0,1); /*!40000 ALTER TABLE `mamfm_modules` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `mamfm_modules_menu` -- DROP TABLE IF EXISTS `mamfm_modules_menu`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `mamfm_modules_menu` ( `moduleid` int(11) NOT NULL DEFAULT '0', `menuid` int(11) NOT NULL DEFAULT '0', PRIMARY KEY (`moduleid`,`menuid`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `mamfm_modules_menu` -- LOCK TABLES `mamfm_modules_menu` WRITE; /*!40000 ALTER TABLE `mamfm_modules_menu` DISABLE KEYS */; INSERT INTO `mamfm_modules_menu` VALUES (1,1),(2,0),(3,0),(4,1),(5,1),(6,1),(6,2),(6,4),(6,27),(6,36),(8,1),(9,1),(9,2),(9,4),(9,27),(9,36),(10,1),(13,0),(15,0),(17,0),(18,0),(30,0); /*!40000 ALTER TABLE `mamfm_modules_menu` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `mamfm_newsfeeds` -- DROP TABLE IF EXISTS `mamfm_newsfeeds`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `mamfm_newsfeeds` ( `catid` int(11) NOT NULL DEFAULT '0', `id` int(11) NOT NULL AUTO_INCREMENT, `name` text NOT NULL, `link` text NOT NULL, `filename` varchar(200) DEFAULT NULL, `published` tinyint(1) NOT NULL DEFAULT '0', `numarticles` int(11) unsigned NOT NULL DEFAULT '1', `cache_time` int(11) unsigned NOT NULL DEFAULT '3600', `checked_out` tinyint(3) unsigned NOT NULL DEFAULT '0', `checked_out_time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `ordering` int(11) NOT NULL DEFAULT '0', PRIMARY KEY (`id`), KEY `published` (`published`) ) ENGINE=MyISAM AUTO_INCREMENT=11 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `mamfm_newsfeeds` -- LOCK TABLES `mamfm_newsfeeds` WRITE; /*!40000 ALTER TABLE `mamfm_newsfeeds` DISABLE KEYS */; INSERT INTO `mamfm_newsfeeds` VALUES (4,1,'Joomla! - Official News','http://www.joomla.org/index.php?option=com_rss_xtd&feed=RSS2.0&type=com_frontpage&Itemid=1','',1,5,3600,0,'0000-00-00 00:00:00',8),(4,2,'Joomla! - Community News','http://www.joomla.org/index.php?option=com_rss_xtd&feed=RSS2.0&type=com_content&task=blogcategory&id=0&Itemid=33','',1,5,3600,0,'0000-00-00 00:00:00',9),(4,3,'OpenSourceMatters','http://www.opensourcematters.org/index2.php?option=com_rss&feed=RSS2.0&no_html=1','',1,5,3600,0,'0000-00-00 00:00:00',10),(10,4,'Linux Today','http://linuxtoday.com/backend/my-netscape.rdf','',1,3,3600,0,'0000-00-00 00:00:00',1),(5,5,'Business News','http://headlines.internet.com/internetnews/bus-news/news.rss','',1,3,3600,0,'0000-00-00 00:00:00',2),(11,6,'Web Developer News','http://headlines.internet.com/internetnews/wd-news/news.rss','',1,3,3600,0,'0000-00-00 00:00:00',3),(10,7,'Linux Central:New Products','http://linuxcentral.com/backend/lcnew.rdf','',1,3,3600,0,'0000-00-00 00:00:00',4),(10,8,'Linux Central:Best Selling','http://linuxcentral.com/backend/lcbestns.rdf','',1,3,3600,0,'0000-00-00 00:00:00',5),(10,9,'Linux Central:Daily Specials','http://linuxcentral.com/backend/lcspecialns.rdf','',1,3,3600,0,'0000-00-00 00:00:00',6),(9,10,'Internet:Finance News','http://headlines.internet.com/internetnews/fina-news/news.rss','',1,3,3600,0,'0000-00-00 00:00:00',7); /*!40000 ALTER TABLE `mamfm_newsfeeds` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `mamfm_poll_data` -- DROP TABLE IF EXISTS `mamfm_poll_data`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `mamfm_poll_data` ( `id` int(11) NOT NULL AUTO_INCREMENT, `pollid` int(4) NOT NULL DEFAULT '0', `text` text NOT NULL, `hits` int(11) NOT NULL DEFAULT '0', PRIMARY KEY (`id`), KEY `pollid` (`pollid`,`text`(1)) ) ENGINE=MyISAM AUTO_INCREMENT=13 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `mamfm_poll_data` -- LOCK TABLES `mamfm_poll_data` WRITE; /*!40000 ALTER TABLE `mamfm_poll_data` DISABLE KEYS */; INSERT INTO `mamfm_poll_data` VALUES (1,14,'Absolutely simple',1),(2,14,'Reasonably easy',0),(3,14,'Not straight-forward but I worked it out',0),(4,14,'I had to install extra server stuff',0),(5,14,'I had no idea and got my friend to do it',0),(6,14,'My dog ran away with the README ...',0),(7,14,'',0),(8,14,'',0),(9,14,'',0),(10,14,'',0),(11,14,'',0),(12,14,'',0); /*!40000 ALTER TABLE `mamfm_poll_data` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `mamfm_poll_date` -- DROP TABLE IF EXISTS `mamfm_poll_date`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `mamfm_poll_date` ( `id` bigint(20) NOT NULL AUTO_INCREMENT, `date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `vote_id` int(11) NOT NULL DEFAULT '0', `poll_id` int(11) NOT NULL DEFAULT '0', PRIMARY KEY (`id`), KEY `poll_id` (`poll_id`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `mamfm_poll_date` -- LOCK TABLES `mamfm_poll_date` WRITE; /*!40000 ALTER TABLE `mamfm_poll_date` DISABLE KEYS */; /*!40000 ALTER TABLE `mamfm_poll_date` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `mamfm_poll_menu` -- DROP TABLE IF EXISTS `mamfm_poll_menu`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `mamfm_poll_menu` ( `pollid` int(11) NOT NULL DEFAULT '0', `menuid` int(11) NOT NULL DEFAULT '0', PRIMARY KEY (`pollid`,`menuid`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `mamfm_poll_menu` -- LOCK TABLES `mamfm_poll_menu` WRITE; /*!40000 ALTER TABLE `mamfm_poll_menu` DISABLE KEYS */; INSERT INTO `mamfm_poll_menu` VALUES (14,1); /*!40000 ALTER TABLE `mamfm_poll_menu` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `mamfm_polls` -- DROP TABLE IF EXISTS `mamfm_polls`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `mamfm_polls` ( `id` int(11) unsigned NOT NULL AUTO_INCREMENT, `title` varchar(100) NOT NULL DEFAULT '', `voters` int(9) NOT NULL DEFAULT '0', `checked_out` int(11) NOT NULL DEFAULT '0', `checked_out_time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `published` tinyint(1) NOT NULL DEFAULT '0', `access` int(11) NOT NULL DEFAULT '0', `lag` int(11) NOT NULL DEFAULT '0', PRIMARY KEY (`id`) ) ENGINE=MyISAM AUTO_INCREMENT=15 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `mamfm_polls` -- LOCK TABLES `mamfm_polls` WRITE; /*!40000 ALTER TABLE `mamfm_polls` DISABLE KEYS */; INSERT INTO `mamfm_polls` VALUES (14,'This Joomla! installation was ....',0,0,'2000-00-00 00:00:00',1,0,86400); /*!40000 ALTER TABLE `mamfm_polls` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `mamfm_sections` -- DROP TABLE IF EXISTS `mamfm_sections`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `mamfm_sections` ( `id` int(11) NOT NULL AUTO_INCREMENT, `title` varchar(50) NOT NULL DEFAULT '', `name` varchar(255) NOT NULL DEFAULT '', `image` varchar(100) NOT NULL DEFAULT '', `scope` varchar(50) NOT NULL DEFAULT '', `image_position` varchar(10) NOT NULL DEFAULT '', `description` text NOT NULL, `published` tinyint(1) NOT NULL DEFAULT '0', `checked_out` int(11) unsigned NOT NULL DEFAULT '0', `checked_out_time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `ordering` int(11) NOT NULL DEFAULT '0', `access` tinyint(3) unsigned NOT NULL DEFAULT '0', `count` int(11) NOT NULL DEFAULT '0', `params` text NOT NULL, PRIMARY KEY (`id`), KEY `idx_scope` (`scope`) ) ENGINE=MyISAM AUTO_INCREMENT=4 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `mamfm_sections` -- LOCK TABLES `mamfm_sections` WRITE; /*!40000 ALTER TABLE `mamfm_sections` DISABLE KEYS */; INSERT INTO `mamfm_sections` VALUES (1,'News','The News','articles.jpg','content','right','Select a news topic from the list below, then select a news article to read.',1,0,'0000-00-00 00:00:00',1,0,1,''),(2,'Newsflashes','Newsflashes','','content','left','',1,0,'0000-00-00 00:00:00',2,0,1,''),(3,'FAQs','Frequently Asked Questions','pastarchives.jpg','content','left','From the list below choose one of our FAQs topics, then select an FAQ to read. If you have a question which is not in this section, please contact us.',1,0,'0000-00-00 00:00:00',2,0,1,''); /*!40000 ALTER TABLE `mamfm_sections` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `mamfm_session` -- DROP TABLE IF EXISTS `mamfm_session`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `mamfm_session` ( `username` varchar(50) DEFAULT '', `time` varchar(14) DEFAULT '', `session_id` varchar(200) NOT NULL DEFAULT '0', `guest` tinyint(4) DEFAULT '1', `userid` int(11) DEFAULT '0', `usertype` varchar(50) DEFAULT '', `gid` tinyint(3) unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`session_id`), KEY `whosonline` (`guest`,`usertype`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `mamfm_session` -- LOCK TABLES `mamfm_session` WRITE; /*!40000 ALTER TABLE `mamfm_session` DISABLE KEYS */; /*!40000 ALTER TABLE `mamfm_session` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `mamfm_stats_agents` -- DROP TABLE IF EXISTS `mamfm_stats_agents`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `mamfm_stats_agents` ( `agent` varchar(255) NOT NULL DEFAULT '', `type` tinyint(1) unsigned NOT NULL DEFAULT '0', `hits` int(11) unsigned NOT NULL DEFAULT '1' ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `mamfm_stats_agents` -- LOCK TABLES `mamfm_stats_agents` WRITE; /*!40000 ALTER TABLE `mamfm_stats_agents` DISABLE KEYS */; /*!40000 ALTER TABLE `mamfm_stats_agents` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `mamfm_template_positions` -- DROP TABLE IF EXISTS `mamfm_template_positions`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `mamfm_template_positions` ( `id` int(11) NOT NULL AUTO_INCREMENT, `position` varchar(10) NOT NULL DEFAULT '', `description` varchar(255) NOT NULL DEFAULT '', PRIMARY KEY (`id`) ) ENGINE=MyISAM AUTO_INCREMENT=28 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `mamfm_template_positions` -- LOCK TABLES `mamfm_template_positions` WRITE; /*!40000 ALTER TABLE `mamfm_template_positions` DISABLE KEYS */; INSERT INTO `mamfm_template_positions` VALUES (1,'left',''),(2,'right',''),(3,'top',''),(4,'bottom',''),(5,'inset',''),(6,'banner',''),(7,'header',''),(8,'footer',''),(9,'newsflash',''),(10,'legals',''),(11,'pathway',''),(12,'toolbar',''),(13,'cpanel',''),(14,'user1',''),(15,'user2',''),(16,'user3',''),(17,'user4',''),(18,'user5',''),(19,'user6',''),(20,'user7',''),(21,'user8',''),(22,'user9',''),(23,'advert1',''),(24,'advert2',''),(25,'advert3',''),(26,'icon',''),(27,'debug',''); /*!40000 ALTER TABLE `mamfm_template_positions` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `mamfm_templates_menu` -- DROP TABLE IF EXISTS `mamfm_templates_menu`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `mamfm_templates_menu` ( `template` varchar(50) NOT NULL DEFAULT '', `menuid` int(11) NOT NULL DEFAULT '0', `client_id` tinyint(4) NOT NULL DEFAULT '0', PRIMARY KEY (`template`,`menuid`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `mamfm_templates_menu` -- LOCK TABLES `mamfm_templates_menu` WRITE; /*!40000 ALTER TABLE `mamfm_templates_menu` DISABLE KEYS */; INSERT INTO `mamfm_templates_menu` VALUES ('corporate',0,0),('joomla_admin',0,1); /*!40000 ALTER TABLE `mamfm_templates_menu` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `mamfm_users` -- DROP TABLE IF EXISTS `mamfm_users`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `mamfm_users` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(50) NOT NULL DEFAULT '', `username` varchar(25) NOT NULL DEFAULT '', `email` varchar(100) NOT NULL DEFAULT '', `password` varchar(100) NOT NULL DEFAULT '', `usertype` varchar(25) NOT NULL DEFAULT '', `block` tinyint(4) NOT NULL DEFAULT '0', `sendEmail` tinyint(4) DEFAULT '0', `gid` tinyint(3) unsigned NOT NULL DEFAULT '1', `registerDate` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `lastvisitDate` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `activation` varchar(100) NOT NULL DEFAULT '', `params` text NOT NULL, PRIMARY KEY (`id`), KEY `usertype` (`usertype`), KEY `idx_name` (`name`) ) ENGINE=MyISAM AUTO_INCREMENT=63 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `mamfm_users` -- LOCK TABLES `mamfm_users` WRITE; /*!40000 ALTER TABLE `mamfm_users` DISABLE KEYS */; INSERT INTO `mamfm_users` VALUES (62,'Administrator','admin','mam@heimam.at','5a9361b28ee51795f1e82d9054919034','Super Administrator',0,1,25,'2006-06-04 21:30:38','2006-06-04 21:44:45','',''); /*!40000 ALTER TABLE `mamfm_users` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `mamfm_usertypes` -- DROP TABLE IF EXISTS `mamfm_usertypes`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `mamfm_usertypes` ( `id` tinyint(3) unsigned NOT NULL DEFAULT '0', `name` varchar(50) NOT NULL DEFAULT '', `mask` varchar(11) NOT NULL DEFAULT '', PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `mamfm_usertypes` -- LOCK TABLES `mamfm_usertypes` WRITE; /*!40000 ALTER TABLE `mamfm_usertypes` DISABLE KEYS */; INSERT INTO `mamfm_usertypes` VALUES (0,'superadministrator',''),(1,'administrator',''),(2,'editor',''),(3,'user',''),(4,'author',''),(5,'publisher',''),(6,'manager',''); /*!40000 ALTER TABLE `mamfm_usertypes` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `mamfm_weblinks` -- DROP TABLE IF EXISTS `mamfm_weblinks`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `mamfm_weblinks` ( `id` int(11) unsigned NOT NULL AUTO_INCREMENT, `catid` int(11) NOT NULL DEFAULT '0', `sid` int(11) NOT NULL DEFAULT '0', `title` varchar(250) NOT NULL DEFAULT '', `url` varchar(250) NOT NULL DEFAULT '', `description` varchar(250) NOT NULL DEFAULT '', `date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `hits` int(11) NOT NULL DEFAULT '0', `published` tinyint(1) NOT NULL DEFAULT '0', `checked_out` int(11) NOT NULL DEFAULT '0', `checked_out_time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `ordering` int(11) NOT NULL DEFAULT '0', `archived` tinyint(1) NOT NULL DEFAULT '0', `approved` tinyint(1) NOT NULL DEFAULT '1', `params` text NOT NULL, PRIMARY KEY (`id`), KEY `catid` (`catid`,`published`,`archived`) ) ENGINE=MyISAM AUTO_INCREMENT=6 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `mamfm_weblinks` -- LOCK TABLES `mamfm_weblinks` WRITE; /*!40000 ALTER TABLE `mamfm_weblinks` DISABLE KEYS */; INSERT INTO `mamfm_weblinks` VALUES (1,2,0,'Joomla!','http://www.joomla.org','Home of Joomla!','2005-02-14 15:19:02',2,1,0,'0000-00-00 00:00:00',1,0,1,'target=0'),(2,2,0,'php.net','http://www.php.net','The language that Joomla! is developed in','2004-07-07 11:33:24',0,1,0,'0000-00-00 00:00:00',3,0,1,''),(3,2,0,'MySQL','http://www.mysql.com','The database that Joomla! uses','2004-07-07 10:18:31',0,1,0,'0000-00-00 00:00:00',5,0,1,''),(4,2,0,'OpenSourceMatters','http://www.opensourcematters.org','Home of OSM','2005-02-14 15:19:02',2,1,0,'0000-00-00 00:00:00',1,0,1,'target=0'),(5,2,0,'Joomla! - Forums','http://forum.joomla.org','Joomla! Forums','2005-02-14 15:19:02',2,1,0,'0000-00-00 00:00:00',1,0,1,'target=0'); /*!40000 ALTER TABLE `mamfm_weblinks` ENABLE KEYS */; UNLOCK TABLES; -- -- Current Database: `joomla_rodam` -- CREATE DATABASE /*!32312 IF NOT EXISTS*/ `joomla_rodam` /*!40100 DEFAULT CHARACTER SET latin1 */; USE `joomla_rodam`; -- -- Table structure for table `rodam_banner` -- DROP TABLE IF EXISTS `rodam_banner`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `rodam_banner` ( `bid` int(11) NOT NULL AUTO_INCREMENT, `cid` int(11) NOT NULL DEFAULT '0', `type` varchar(10) NOT NULL DEFAULT 'banner', `name` varchar(50) NOT NULL DEFAULT '', `imptotal` int(11) NOT NULL DEFAULT '0', `impmade` int(11) NOT NULL DEFAULT '0', `clicks` int(11) NOT NULL DEFAULT '0', `imageurl` varchar(100) NOT NULL DEFAULT '', `clickurl` varchar(200) NOT NULL DEFAULT '', `date` datetime DEFAULT NULL, `showBanner` tinyint(1) NOT NULL DEFAULT '0', `checked_out` tinyint(1) NOT NULL DEFAULT '0', `checked_out_time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `editor` varchar(50) DEFAULT NULL, `custombannercode` text, PRIMARY KEY (`bid`), KEY `viewbanner` (`showBanner`) ) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `rodam_banner` -- LOCK TABLES `rodam_banner` WRITE; /*!40000 ALTER TABLE `rodam_banner` DISABLE KEYS */; INSERT INTO `rodam_banner` VALUES (1,1,'banner','OSM 1',0,42,0,'osmbanner1.png','http://www.opensourcematters.org','2004-07-07 15:31:29',1,0,'2000-00-00 00:00:00',NULL,NULL),(2,1,'banner','OSM 2',0,48,0,'osmbanner2.png','http://www.opensourcematters.org','2004-07-07 15:31:29',1,0,'2000-00-00 00:00:00',NULL,NULL); /*!40000 ALTER TABLE `rodam_banner` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `rodam_bannerclient` -- DROP TABLE IF EXISTS `rodam_bannerclient`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `rodam_bannerclient` ( `cid` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(60) NOT NULL DEFAULT '', `contact` varchar(60) NOT NULL DEFAULT '', `email` varchar(60) NOT NULL DEFAULT '', `extrainfo` text NOT NULL, `checked_out` tinyint(1) NOT NULL DEFAULT '0', `checked_out_time` time DEFAULT NULL, `editor` varchar(50) DEFAULT NULL, PRIMARY KEY (`cid`) ) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `rodam_bannerclient` -- LOCK TABLES `rodam_bannerclient` WRITE; /*!40000 ALTER TABLE `rodam_bannerclient` DISABLE KEYS */; INSERT INTO `rodam_bannerclient` VALUES (1,'Open Source Matters','Administrator','admin@opensourcematters.org','',0,'00:00:00',NULL); /*!40000 ALTER TABLE `rodam_bannerclient` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `rodam_bannerfinish` -- DROP TABLE IF EXISTS `rodam_bannerfinish`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `rodam_bannerfinish` ( `bid` int(11) NOT NULL AUTO_INCREMENT, `cid` int(11) NOT NULL DEFAULT '0', `type` varchar(10) NOT NULL DEFAULT '', `name` varchar(50) NOT NULL DEFAULT '', `impressions` int(11) NOT NULL DEFAULT '0', `clicks` int(11) NOT NULL DEFAULT '0', `imageurl` varchar(50) NOT NULL DEFAULT '', `datestart` datetime DEFAULT NULL, `dateend` datetime DEFAULT NULL, PRIMARY KEY (`bid`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `rodam_bannerfinish` -- LOCK TABLES `rodam_bannerfinish` WRITE; /*!40000 ALTER TABLE `rodam_bannerfinish` DISABLE KEYS */; /*!40000 ALTER TABLE `rodam_bannerfinish` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `rodam_categories` -- DROP TABLE IF EXISTS `rodam_categories`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `rodam_categories` ( `id` int(11) NOT NULL AUTO_INCREMENT, `parent_id` int(11) NOT NULL DEFAULT '0', `title` varchar(50) NOT NULL DEFAULT '', `name` varchar(255) NOT NULL DEFAULT '', `image` varchar(100) NOT NULL DEFAULT '', `section` varchar(50) NOT NULL DEFAULT '', `image_position` varchar(10) NOT NULL DEFAULT '', `description` text NOT NULL, `published` tinyint(1) NOT NULL DEFAULT '0', `checked_out` int(11) unsigned NOT NULL DEFAULT '0', `checked_out_time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `editor` varchar(50) DEFAULT NULL, `ordering` int(11) NOT NULL DEFAULT '0', `access` tinyint(3) unsigned NOT NULL DEFAULT '0', `count` int(11) NOT NULL DEFAULT '0', `params` text NOT NULL, PRIMARY KEY (`id`), KEY `cat_idx` (`section`,`published`,`access`), KEY `idx_section` (`section`), KEY `idx_access` (`access`), KEY `idx_checkout` (`checked_out`) ) ENGINE=MyISAM AUTO_INCREMENT=13 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `rodam_categories` -- LOCK TABLES `rodam_categories` WRITE; /*!40000 ALTER TABLE `rodam_categories` DISABLE KEYS */; INSERT INTO `rodam_categories` VALUES (1,0,'Latest','Latest News','taking_notes.jpg','1','left','The latest news from the Joomla! Team',1,0,'0000-00-00 00:00:00','',0,0,1,''),(2,0,'Joomla!','Joomla!','clock.jpg','com_weblinks','left','A selection of links that are all related to the Joomla! Project.',1,0,'0000-00-00 00:00:00',NULL,0,0,0,''),(3,0,'Newsflash','Newsflash','','2','left','',1,0,'0000-00-00 00:00:00','',0,0,0,''),(4,0,'Joomla!','Joomla!','','com_newsfeeds','left','',1,0,'0000-00-00 00:00:00',NULL,2,0,0,''),(5,0,'Business: general','Business: general','','com_newsfeeds','left','',1,0,'0000-00-00 00:00:00',NULL,1,0,0,''),(7,0,'Examples','Example FAQs','key.jpg','3','left','Here you will find an example set of FAQs.',1,0,'0000-00-00 00:00:00',NULL,0,0,2,''),(9,0,'Finance','Finance','','com_newsfeeds','left','',1,0,'0000-00-00 00:00:00',NULL,5,0,0,''),(10,0,'Linux','Linux','','com_newsfeeds','left','
\r\n',1,0,'0000-00-00 00:00:00',NULL,6,0,0,''),(11,0,'Internet','Internet','','com_newsfeeds','left','',1,0,'0000-00-00 00:00:00',NULL,7,0,0,''),(12,0,'Contacts','Contacts','','com_contact_details','left','Contact Details for this website',1,0,'0000-00-00 00:00:00',NULL,0,0,0,''); /*!40000 ALTER TABLE `rodam_categories` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `rodam_components` -- DROP TABLE IF EXISTS `rodam_components`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `rodam_components` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(50) NOT NULL DEFAULT '', `link` varchar(255) NOT NULL DEFAULT '', `menuid` int(11) unsigned NOT NULL DEFAULT '0', `parent` int(11) unsigned NOT NULL DEFAULT '0', `admin_menu_link` varchar(255) NOT NULL DEFAULT '', `admin_menu_alt` varchar(255) NOT NULL DEFAULT '', `option` varchar(50) NOT NULL DEFAULT '', `ordering` int(11) NOT NULL DEFAULT '0', `admin_menu_img` varchar(255) NOT NULL DEFAULT '', `iscore` tinyint(4) NOT NULL DEFAULT '0', `params` text NOT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM AUTO_INCREMENT=45 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `rodam_components` -- LOCK TABLES `rodam_components` WRITE; /*!40000 ALTER TABLE `rodam_components` DISABLE KEYS */; INSERT INTO `rodam_components` VALUES (1,'Banners','',0,0,'','Banner Management','com_banners',0,'js/ThemeOffice/component.png',0,''),(2,'Manage Banners','',0,1,'option=com_banners','Active Banners','com_banners',1,'js/ThemeOffice/edit.png',0,''),(3,'Manage Clients','',0,1,'option=com_banners&task=listclients','Manage Clients','com_banners',2,'js/ThemeOffice/categories.png',0,''),(4,'Web Links','option=com_weblinks',0,0,'','Manage Weblinks','com_weblinks',0,'js/ThemeOffice/globe2.png',0,''),(5,'Weblink Items','',0,4,'option=com_weblinks','View existing weblinks','com_weblinks',1,'js/ThemeOffice/edit.png',0,''),(6,'Weblink Categories','',0,4,'option=categories§ion=com_weblinks','Manage weblink categories','',2,'js/ThemeOffice/categories.png',0,''),(7,'Contacts','option=com_contact',0,0,'','Edit contact details','com_contact',0,'js/ThemeOffice/user.png',1,''),(8,'Manage Contacts','',0,7,'option=com_contact','Edit contact details','com_contact',0,'js/ThemeOffice/edit.png',1,''),(9,'Contact Categories','',0,7,'option=categories§ion=com_contact_details','Manage contact categories','',2,'js/ThemeOffice/categories.png',1,''),(10,'FrontPage','option=com_frontpage',0,0,'','Manage Front Page Items','com_frontpage',0,'js/ThemeOffice/component.png',1,''),(11,'Polls','option=com_poll',0,0,'option=com_poll','Manage Polls','com_poll',0,'js/ThemeOffice/component.png',0,''),(12,'News Feeds','option=com_newsfeeds',0,0,'','News Feeds Management','com_newsfeeds',0,'js/ThemeOffice/component.png',0,''),(13,'Manage News Feeds','',0,12,'option=com_newsfeeds','Manage News Feeds','com_newsfeeds',1,'js/ThemeOffice/edit.png',0,''),(14,'Manage Categories','',0,12,'option=com_categories§ion=com_newsfeeds','Manage Categories','',2,'js/ThemeOffice/categories.png',0,''),(15,'Login','option=com_login',0,0,'','','com_login',0,'',1,''),(16,'Search','option=com_search',0,0,'','','com_search',0,'',1,''),(17,'Syndicate','',0,0,'option=com_syndicate&hidemainmenu=1','Manage Syndication Settings','com_syndicate',0,'js/ThemeOffice/component.png',0,''),(18,'Mass Mail','',0,0,'option=com_massmail&hidemainmenu=1','Send Mass Mail','com_massmail',0,'js/ThemeOffice/mass_email.png',0,''); /*!40000 ALTER TABLE `rodam_components` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `rodam_contact_details` -- DROP TABLE IF EXISTS `rodam_contact_details`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `rodam_contact_details` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(100) NOT NULL DEFAULT '', `con_position` varchar(50) DEFAULT NULL, `address` text, `suburb` varchar(50) DEFAULT NULL, `state` varchar(20) DEFAULT NULL, `country` varchar(50) DEFAULT NULL, `postcode` varchar(10) DEFAULT NULL, `telephone` varchar(25) DEFAULT NULL, `fax` varchar(25) DEFAULT NULL, `misc` mediumtext, `image` varchar(100) DEFAULT NULL, `imagepos` varchar(20) DEFAULT NULL, `email_to` varchar(100) DEFAULT NULL, `default_con` tinyint(1) unsigned NOT NULL DEFAULT '0', `published` tinyint(1) unsigned NOT NULL DEFAULT '0', `checked_out` int(11) unsigned NOT NULL DEFAULT '0', `checked_out_time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `ordering` int(11) NOT NULL DEFAULT '0', `params` text NOT NULL, `user_id` int(11) NOT NULL DEFAULT '0', `catid` int(11) NOT NULL DEFAULT '0', `access` tinyint(3) unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`id`) ) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `rodam_contact_details` -- LOCK TABLES `rodam_contact_details` WRITE; /*!40000 ALTER TABLE `rodam_contact_details` DISABLE KEYS */; INSERT INTO `rodam_contact_details` VALUES (1,'Admin','Administrator','(not disclosed)','Vienna','Vienna','Austria','1100','(not disclosed)','n/a','','key.jpg','top','mam@heimam.at',0,1,0,'0000-00-00 00:00:00',1,'menu_image=-1\npageclass_sfx=\nprint=\nback_button=\nname=1\nposition=1\nemail=0\nstreet_address=1\nsuburb=1\nstate=1\ncountry=1\npostcode=1\ntelephone=1\nfax=1\nmisc=1\nimage=1\nvcard=0\nemail_description=1\nemail_description_text=\nemail_form=1\nemail_copy=0\ndrop_down=0\ncontact_icons=0\nicon_address=\nicon_email=\nicon_telephone=\nicon_fax=\nicon_misc=',62,12,0); /*!40000 ALTER TABLE `rodam_contact_details` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `rodam_content` -- DROP TABLE IF EXISTS `rodam_content`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `rodam_content` ( `id` int(11) unsigned NOT NULL AUTO_INCREMENT, `title` varchar(100) NOT NULL DEFAULT '', `title_alias` varchar(100) NOT NULL DEFAULT '', `introtext` mediumtext NOT NULL, `fulltext` mediumtext NOT NULL, `state` tinyint(3) NOT NULL DEFAULT '0', `sectionid` int(11) unsigned NOT NULL DEFAULT '0', `mask` int(11) unsigned NOT NULL DEFAULT '0', `catid` int(11) unsigned NOT NULL DEFAULT '0', `created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `created_by` int(11) unsigned NOT NULL DEFAULT '0', `created_by_alias` varchar(100) NOT NULL DEFAULT '', `modified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `modified_by` int(11) unsigned NOT NULL DEFAULT '0', `checked_out` int(11) unsigned NOT NULL DEFAULT '0', `checked_out_time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `publish_up` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `publish_down` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `images` text NOT NULL, `urls` text NOT NULL, `attribs` text NOT NULL, `version` int(11) unsigned NOT NULL DEFAULT '1', `parentid` int(11) unsigned NOT NULL DEFAULT '0', `ordering` int(11) NOT NULL DEFAULT '0', `metakey` text NOT NULL, `metadesc` text NOT NULL, `access` int(11) unsigned NOT NULL DEFAULT '0', `hits` int(11) unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`id`), KEY `idx_section` (`sectionid`), KEY `idx_access` (`access`), KEY `idx_checkout` (`checked_out`), KEY `idx_state` (`state`), KEY `idx_catid` (`catid`), KEY `idx_mask` (`mask`) ) ENGINE=MyISAM AUTO_INCREMENT=12 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `rodam_content` -- LOCK TABLES `rodam_content` WRITE; /*!40000 ALTER TABLE `rodam_content` DISABLE KEYS */; INSERT INTO `rodam_content` VALUES (1,'Welcome to Joomla!','Welcome','If you\'ve read anything at all about Content Management Systems (CMS), you\'ll probably know at least three things: CMS are the most exciting way to do business, CMS can be really, I mean really, complicated and lastly Portals are absolutely, outrageously, often unaffordably expensive.

{mosimage}Joomla! is set to change all that ... Joomla! is different from the normal models for portal software. For a start, it\'s not complicated. Joomla! has been developed for the masses. It\'s licensed under the GNU/GPL license, easy to install and administer and reliable. Joomla! doesn\'t even require the user or administrator of the system to know HTML to operate it once it\'s up and running.','

Joomla! features:

\r\n\r\n

Extensive Administration:

\r\n',1,1,0,1,'2004-06-12 11:54:06',62,'Web Master','2004-06-12 12:33:27',62,0,'0000-00-00 00:00:00','2004-01-01 00:00:00','0000-00-00 00:00:00','asterisk.png|left|Joomla! Logo|1|Example Caption|bottom|center|120','','',1,0,1,'','',0,5),(2,'Newsflash 1','','Joomla! 1.0 - \'Experience the Freedom\'!. It has never been easier to create\r\nyour own dynamic site. Manage all your content from the best CMS admin\r\ninterface.','',0,2,1,3,'2004-08-09 08:30:34',62,'','2008-10-26 20:51:35',0,0,'0000-00-00 00:00:00','2004-08-09 00:00:00','0000-00-00 00:00:00','','','',1,0,1,'','',0,0),(3,'Newsflash 2','','Yesterday all servers in the U.S. went out on strike in a bid to get more RAM and better CPUs. A spokes person said that the need for better RAM was due to some fool increasing the front-side bus speed. In future, busses will be told to slow down in residential motherboards.','',0,2,1,3,'2004-08-09 08:30:34',62,'','2008-10-26 20:51:36',0,0,'0000-00-00 00:00:00','2004-08-09 00:00:00','0000-00-00 00:00:00','','','',1,0,2,'','',0,1),(4,'Newsflash 3','','Aoccdrnig to a rscheearch at an Elingsh uinervtisy, it deosn\'t mttaer in waht oredr the ltteers in a wrod are, the olny iprmoetnt tihng is taht frist and lsat ltteer is at the rghit pclae. The rset can be a toatl mses and you can sitll raed it wouthit porbelm. Tihs is bcuseae we do not raed ervey lteter by itslef but the wrod as a wlohe.','',0,2,1,3,'2004-08-09 08:30:34',62,'','2008-10-26 20:51:37',0,0,'0000-00-00 00:00:00','2004-08-09 00:00:00','0000-00-00 00:00:00','','','',1,0,3,'','',0,1),(5,'Joomla! License Guidelines','','

This website is powered by Joomla! The software and default templates on which it runs are Copyright 2005 Open Source Matters. All other content and data, including data entered into this website and templates added after installation, are copyrighted by their respective copyright owners.

If you want to distribute, copy or modify Joomla!, you are welcome to do so under the terms of the GNU General Public License. If you are unfamiliar with this license, you might want to read \'How To Apply These Terms To Your Program\' and the \'GNU General Public License FAQ\'.

','',0,0,0,0,'2004-08-19 20:11:07',62,'','2004-08-19 20:14:49',62,0,'0000-00-00 00:00:00','2004-08-19 00:00:00','0000-00-00 00:00:00','','','menu_image=\nitem_title=1\npageclass_sfx=\nback_button=\nrating=\nauthor=\ncreatedate=\nmodifydate=\npdf=\nprint=\nemail=',1,0,11,'','',0,12),(6,'Example News Item 1','News1','{mosimage}Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat,\r\nsed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit\r\namet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam\r\nvoluptua. At vero eos et accusam et justo duo dolores et ea rebum.','

{mosimage}Duis autem vel eum iriure dolor in hendrerit in vulputate\r\nvelit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at\r\nvero eros et accumsan et iusto odio dignissim qui blandit praesent luptatum\r\nzzril delenit augue duis dolore te feugait nulla facilisi. Lorem ipsum dolor\r\nsit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt\r\nut laoreet dolore magna aliquam erat volutpat.

\r\n\r\n

Ut wisi enim ad minim veniam, quis nostrud exerci tation\r\nullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis\r\nautem vel eum iriure dolor in hendrerit in vulputate velit esse molestie\r\nconsequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan\r\net iusto odio dignissim qui blandit praesent luptatum zzril delenit augue duis\r\ndolore te feugait nulla facilisi.

\r\n\r\n

Nam liber tempor cum soluta nobis eleifend option congue\r\nnihil imperdiet doming id quod mazim placerat facer possim assum. Lorem ipsum\r\ndolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod\r\ntincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim\r\nveniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut\r\naliquip ex ea commodo consequat.

\r\n\r\n

Duis autem vel eum iriure dolor in hendrerit in vulputate\r\nvelit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis. At\r\nvero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd\r\ngubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum\r\ndolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor\r\ninvidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero\r\neos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no\r\nsea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit\r\namet, consetetur sadipscing elitr, At accusam aliquyam diam diam dolore dolores\r\nduo eirmod eos erat, et nonumy sed tempor et et invidunt justo labore Stet\r\nclita ea et gubergren, kasd magna no rebum. sanctus sea sed takimata ut vero\r\nvoluptua. est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet,\r\nconsetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore\r\net dolore magna aliquyam erat.

\r\n\r\n

Consetetur sadipscing elitr, sed diam nonumy eirmod tempor\r\ninvidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero\r\neos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no\r\nsea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit\r\namet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut\r\nlabore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam\r\net justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata\r\nsanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur\r\nsadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore\r\nmagna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo\r\ndolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est\r\nLorem ipsum dolor sit amet.

',0,1,0,1,'2004-07-07 11:54:06',62,'','2008-10-26 20:50:38',62,0,'0000-00-00 00:00:00','2004-07-07 00:00:00','0000-00-00 00:00:00','food/coffee.jpg|left||0\r\nfood/bread.jpg|right||0','','',1,0,2,'','',0,5),(7,'Example News Item 2','News2','

{mosimage}Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat,\r\nsed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit\r\namet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam\r\nvoluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem\r\nipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At\r\nvero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet.

','',0,1,0,1,'2004-07-07 11:54:06',62,'','2008-10-26 20:50:39',62,0,'0000-00-00 00:00:00','2004-07-07 00:00:00','0000-00-00 00:00:00','food/bun.jpg|right||0','','',1,0,3,'','',0,3),(8,'Example News Item 3','News3','

{mosimage}Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat,\r\nsed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit\r\namet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam\r\nvoluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem\r\nipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At\r\nvero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet.

','',0,1,0,1,'2004-04-12 11:54:06',62,'','2008-10-26 20:50:41',62,0,'0000-00-00 00:00:00','2004-07-07 00:00:00','0000-00-00 00:00:00','fruit/pears.jpg|right||0','','',1,0,4,'','',0,1),(9,'Example News Item 4','News4','

Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat,\r\nsed diam voluptua. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam\r\nvoluptua. At\r\nvero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet.

','

{mosimage}Duis autem vel eum iriure dolor in hendrerit in vulputate\r\nvelit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at\r\nvero eros et accumsan et iusto odio dignissim qui blandit praesent luptatum\r\nzzril delenit augue duis dolore te feugait nulla facilisi. Lorem ipsum dolor\r\nsit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt\r\nut laoreet dolore magna aliquam erat volutpat.

\r\n\r\n{mospagebreak}

{mosimage}Ut wisi enim ad minim veniam, quis nostrud exerci tation\r\nullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis\r\nautem vel eum iriure dolor in hendrerit in vulputate velit esse molestie\r\nconsequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan\r\net iusto odio dignissim qui blandit praesent luptatum zzril delenit augue duis\r\ndolore te feugait nulla facilisi.

\r\n\r\n

{mosimage}Nam liber tempor cum soluta nobis eleifend option congue\r\nnihil imperdiet doming id quod mazim placerat facer possim assum. Lorem ipsum\r\ndolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod\r\ntincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim\r\nveniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut\r\naliquip ex ea commodo consequat.

\r\n\r\n

Duis autem vel eum iriure dolor in hendrerit in vulputate\r\nvelit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis. At\r\nvero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd\r\ngubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum\r\ndolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor\r\ninvidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero\r\neos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no\r\nsea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit\r\namet, consetetur sadipscing elitr, At accusam aliquyam diam diam dolore dolores\r\nduo eirmod eos erat, et nonumy sed tempor et et invidunt justo labore Stet\r\nclita ea et gubergren, kasd magna no rebum. sanctus sea sed takimata ut vero\r\nvoluptua. est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet,\r\nconsetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore\r\net dolore magna aliquyam erat.

\r\n\r\n{mospagebreak}

Consetetur sadipscing elitr, sed diam nonumy eirmod tempor\r\ninvidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero\r\neos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no\r\nsea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit\r\namet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut\r\nlabore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam\r\net justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata\r\nsanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur\r\nsadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore\r\nmagna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo\r\ndolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est\r\nLorem ipsum dolor sit amet.

',0,1,0,1,'2004-07-07 11:54:06',62,'','2008-10-26 20:50:41',62,0,'0000-00-00 00:00:00','2004-07-07 00:00:00','0000-00-00 00:00:00','fruit/strawberry.jpg|left||0\r\nfruit/pears.jpg|right||0\r\nfruit/cherry.jpg|left||0','','',1,0,5,'','',0,7),(10,'Example FAQ Item 1','FAQ1','

Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat,\r\nsed diam voluptua. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam\r\nvoluptua. At\r\nvero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet.

','',0,3,0,7,'2004-05-12 11:54:06',62,'','2008-10-26 20:50:50',62,0,'0000-00-00 00:00:00','2004-01-01 00:00:00','0000-00-00 00:00:00','','','',1,0,5,'','',0,8),(11,'Example FAQ Item 2','FAQ2','

Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat,\r\nsed diam voluptua. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam\r\nvoluptua. At\r\nvero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet.

','

{mosimage}Duis autem vel eum iriure dolor in hendrerit in vulputate\r\nvelit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at\r\nvero eros et accumsan et iusto odio dignissim qui blandit praesent luptatum\r\nzzril delenit augue duis dolore te feugait nulla facilisi. Lorem ipsum dolor\r\nsit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt\r\nut laoreet dolore magna aliquam erat volutpat.

\r\n\r\n

{mosimage}Ut wisi enim ad minim veniam, quis nostrud exerci tation\r\nullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis\r\nautem vel eum iriure dolor in hendrerit in vulputate velit esse molestie\r\nconsequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan\r\net iusto odio dignissim qui blandit praesent luptatum zzril delenit augue duis\r\ndolore te feugait nulla facilisi.

\r\n\r\n

{mosimage}Nam liber tempor cum soluta nobis eleifend option congue\r\nnihil imperdiet doming id quod mazim placerat facer possim assum. Lorem ipsum\r\ndolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod\r\ntincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim\r\nveniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut\r\naliquip ex ea commodo consequat.

\r\n\r\n

Duis autem vel eum iriure dolor in hendrerit in vulputate\r\nvelit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis. At\r\nvero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd\r\ngubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum\r\ndolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor\r\ninvidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero\r\neos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no\r\nsea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit\r\namet, consetetur sadipscing elitr, At accusam aliquyam diam diam dolore dolores\r\nduo eirmod eos erat, et nonumy sed tempor et et invidunt justo labore Stet\r\nclita ea et gubergren, kasd magna no rebum. sanctus sea sed takimata ut vero\r\nvoluptua. est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet,\r\nconsetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore\r\net dolore magna aliquyam erat.

\r\n\r\n

Consetetur sadipscing elitr, sed diam nonumy eirmod tempor\r\ninvidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero\r\neos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no\r\nsea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit\r\namet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut\r\nlabore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam\r\net justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata\r\nsanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur\r\nsadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore\r\nmagna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo\r\ndolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est\r\nLorem ipsum dolor sit amet.

',0,3,0,7,'2004-05-12 11:54:06',62,'Web master','2008-10-26 20:50:48',62,0,'0000-00-00 00:00:00','2004-01-01 00:00:00','0000-00-00 00:00:00','fruit/cherry.jpg|left||0\r\nfruit/peas.jpg|right||0\r\nfood/milk.jpg|left||0','','',1,0,5,'','',0,12); /*!40000 ALTER TABLE `rodam_content` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `rodam_content_frontpage` -- DROP TABLE IF EXISTS `rodam_content_frontpage`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `rodam_content_frontpage` ( `content_id` int(11) NOT NULL DEFAULT '0', `ordering` int(11) NOT NULL DEFAULT '0', PRIMARY KEY (`content_id`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `rodam_content_frontpage` -- LOCK TABLES `rodam_content_frontpage` WRITE; /*!40000 ALTER TABLE `rodam_content_frontpage` DISABLE KEYS */; INSERT INTO `rodam_content_frontpage` VALUES (1,1),(5,2); /*!40000 ALTER TABLE `rodam_content_frontpage` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `rodam_content_rating` -- DROP TABLE IF EXISTS `rodam_content_rating`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `rodam_content_rating` ( `content_id` int(11) NOT NULL DEFAULT '0', `rating_sum` int(11) unsigned NOT NULL DEFAULT '0', `rating_count` int(11) unsigned NOT NULL DEFAULT '0', `lastip` varchar(50) NOT NULL DEFAULT '', PRIMARY KEY (`content_id`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `rodam_content_rating` -- LOCK TABLES `rodam_content_rating` WRITE; /*!40000 ALTER TABLE `rodam_content_rating` DISABLE KEYS */; /*!40000 ALTER TABLE `rodam_content_rating` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `rodam_core_acl_aro` -- DROP TABLE IF EXISTS `rodam_core_acl_aro`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `rodam_core_acl_aro` ( `aro_id` int(11) NOT NULL AUTO_INCREMENT, `section_value` varchar(240) NOT NULL DEFAULT '0', `value` varchar(240) NOT NULL DEFAULT '', `order_value` int(11) NOT NULL DEFAULT '0', `name` varchar(255) NOT NULL DEFAULT '', `hidden` int(11) NOT NULL DEFAULT '0', PRIMARY KEY (`aro_id`), UNIQUE KEY `rodam_gacl_section_value_value_aro` (`section_value`(100),`value`(100)), KEY `rodam_gacl_hidden_aro` (`hidden`) ) ENGINE=MyISAM AUTO_INCREMENT=12 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `rodam_core_acl_aro` -- LOCK TABLES `rodam_core_acl_aro` WRITE; /*!40000 ALTER TABLE `rodam_core_acl_aro` DISABLE KEYS */; INSERT INTO `rodam_core_acl_aro` VALUES (10,'users','62',0,'Administrator',0),(11,'users','63',0,'Markus A. Mascelli',0); /*!40000 ALTER TABLE `rodam_core_acl_aro` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `rodam_core_acl_aro_groups` -- DROP TABLE IF EXISTS `rodam_core_acl_aro_groups`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `rodam_core_acl_aro_groups` ( `group_id` int(11) NOT NULL AUTO_INCREMENT, `parent_id` int(11) NOT NULL DEFAULT '0', `name` varchar(255) NOT NULL DEFAULT '', `lft` int(11) NOT NULL DEFAULT '0', `rgt` int(11) NOT NULL DEFAULT '0', PRIMARY KEY (`group_id`), KEY `parent_id_aro_groups` (`parent_id`), KEY `rodam_gacl_parent_id_aro_groups` (`parent_id`), KEY `rodam_gacl_lft_rgt_aro_groups` (`lft`,`rgt`) ) ENGINE=MyISAM AUTO_INCREMENT=31 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `rodam_core_acl_aro_groups` -- LOCK TABLES `rodam_core_acl_aro_groups` WRITE; /*!40000 ALTER TABLE `rodam_core_acl_aro_groups` DISABLE KEYS */; INSERT INTO `rodam_core_acl_aro_groups` VALUES (17,0,'ROOT',1,22),(28,17,'USERS',2,21),(29,28,'Public Frontend',3,12),(18,29,'Registered',4,11),(19,18,'Author',5,10),(20,19,'Editor',6,9),(21,20,'Publisher',7,8),(30,28,'Public Backend',13,20),(23,30,'Manager',14,19),(24,23,'Administrator',15,18),(25,24,'Super Administrator',16,17); /*!40000 ALTER TABLE `rodam_core_acl_aro_groups` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `rodam_core_acl_aro_sections` -- DROP TABLE IF EXISTS `rodam_core_acl_aro_sections`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `rodam_core_acl_aro_sections` ( `section_id` int(11) NOT NULL AUTO_INCREMENT, `value` varchar(230) NOT NULL DEFAULT '', `order_value` int(11) NOT NULL DEFAULT '0', `name` varchar(230) NOT NULL DEFAULT '', `hidden` int(11) NOT NULL DEFAULT '0', PRIMARY KEY (`section_id`), UNIQUE KEY `value_aro_sections` (`value`), UNIQUE KEY `rodam_gacl_value_aro_sections` (`value`), KEY `hidden_aro_sections` (`hidden`), KEY `rodam_gacl_hidden_aro_sections` (`hidden`) ) ENGINE=MyISAM AUTO_INCREMENT=11 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `rodam_core_acl_aro_sections` -- LOCK TABLES `rodam_core_acl_aro_sections` WRITE; /*!40000 ALTER TABLE `rodam_core_acl_aro_sections` DISABLE KEYS */; INSERT INTO `rodam_core_acl_aro_sections` VALUES (10,'users',1,'Users',0); /*!40000 ALTER TABLE `rodam_core_acl_aro_sections` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `rodam_core_acl_groups_aro_map` -- DROP TABLE IF EXISTS `rodam_core_acl_groups_aro_map`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `rodam_core_acl_groups_aro_map` ( `group_id` int(11) NOT NULL DEFAULT '0', `section_value` varchar(240) NOT NULL DEFAULT '', `aro_id` int(11) NOT NULL DEFAULT '0', UNIQUE KEY `group_id_aro_id_groups_aro_map` (`group_id`,`section_value`,`aro_id`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `rodam_core_acl_groups_aro_map` -- LOCK TABLES `rodam_core_acl_groups_aro_map` WRITE; /*!40000 ALTER TABLE `rodam_core_acl_groups_aro_map` DISABLE KEYS */; INSERT INTO `rodam_core_acl_groups_aro_map` VALUES (18,'',11),(25,'',10); /*!40000 ALTER TABLE `rodam_core_acl_groups_aro_map` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `rodam_core_log_items` -- DROP TABLE IF EXISTS `rodam_core_log_items`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `rodam_core_log_items` ( `time_stamp` date NOT NULL DEFAULT '0000-00-00', `item_table` varchar(50) NOT NULL DEFAULT '', `item_id` int(11) unsigned NOT NULL DEFAULT '0', `hits` int(11) unsigned NOT NULL DEFAULT '0' ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `rodam_core_log_items` -- LOCK TABLES `rodam_core_log_items` WRITE; /*!40000 ALTER TABLE `rodam_core_log_items` DISABLE KEYS */; /*!40000 ALTER TABLE `rodam_core_log_items` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `rodam_core_log_searches` -- DROP TABLE IF EXISTS `rodam_core_log_searches`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `rodam_core_log_searches` ( `search_term` varchar(128) NOT NULL DEFAULT '', `hits` int(11) unsigned NOT NULL DEFAULT '0' ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `rodam_core_log_searches` -- LOCK TABLES `rodam_core_log_searches` WRITE; /*!40000 ALTER TABLE `rodam_core_log_searches` DISABLE KEYS */; /*!40000 ALTER TABLE `rodam_core_log_searches` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `rodam_groups` -- DROP TABLE IF EXISTS `rodam_groups`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `rodam_groups` ( `id` tinyint(3) unsigned NOT NULL DEFAULT '0', `name` varchar(50) NOT NULL DEFAULT '', PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `rodam_groups` -- LOCK TABLES `rodam_groups` WRITE; /*!40000 ALTER TABLE `rodam_groups` DISABLE KEYS */; INSERT INTO `rodam_groups` VALUES (0,'Public'),(1,'Registered'),(2,'Special'); /*!40000 ALTER TABLE `rodam_groups` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `rodam_mambots` -- DROP TABLE IF EXISTS `rodam_mambots`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `rodam_mambots` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(100) NOT NULL DEFAULT '', `element` varchar(100) NOT NULL DEFAULT '', `folder` varchar(100) NOT NULL DEFAULT '', `access` tinyint(3) unsigned NOT NULL DEFAULT '0', `ordering` int(11) NOT NULL DEFAULT '0', `published` tinyint(3) NOT NULL DEFAULT '0', `iscore` tinyint(3) NOT NULL DEFAULT '0', `client_id` tinyint(3) NOT NULL DEFAULT '0', `checked_out` int(11) unsigned NOT NULL DEFAULT '0', `checked_out_time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `params` text NOT NULL, PRIMARY KEY (`id`), KEY `idx_folder` (`published`,`client_id`,`access`,`folder`) ) ENGINE=MyISAM AUTO_INCREMENT=23 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `rodam_mambots` -- LOCK TABLES `rodam_mambots` WRITE; /*!40000 ALTER TABLE `rodam_mambots` DISABLE KEYS */; INSERT INTO `rodam_mambots` VALUES (1,'MOS Image','mosimage','content',0,-10000,1,1,0,0,'0000-00-00 00:00:00',''),(2,'MOS Pagination','mospaging','content',0,10000,1,1,0,0,'0000-00-00 00:00:00',''),(3,'Legacy Mambot Includer','legacybots','content',0,1,0,1,0,0,'0000-00-00 00:00:00',''),(4,'SEF','mossef','content',0,3,1,0,0,0,'0000-00-00 00:00:00',''),(5,'MOS Rating','mosvote','content',0,4,1,1,0,0,'0000-00-00 00:00:00',''),(6,'Search Content','content.searchbot','search',0,1,1,1,0,0,'0000-00-00 00:00:00',''),(7,'Search Weblinks','weblinks.searchbot','search',0,2,1,1,0,0,'0000-00-00 00:00:00',''),(8,'Code support','moscode','content',0,2,0,0,0,0,'0000-00-00 00:00:00',''),(9,'No WYSIWYG Editor','none','editors',0,0,1,1,0,0,'0000-00-00 00:00:00',''),(10,'TinyMCE WYSIWYG Editor','tinymce','editors',0,0,1,1,0,0,'0000-00-00 00:00:00','theme=advanced'),(11,'MOS Image Editor Button','mosimage.btn','editors-xtd',0,0,1,0,0,0,'0000-00-00 00:00:00',''),(12,'MOS Pagebreak Editor Button','mospage.btn','editors-xtd',0,0,1,0,0,0,'0000-00-00 00:00:00',''),(13,'Search Contacts','contacts.searchbot','search',0,3,1,1,0,0,'0000-00-00 00:00:00',''),(14,'Search Categories','categories.searchbot','search',0,4,1,0,0,0,'0000-00-00 00:00:00',''),(15,'Search Sections','sections.searchbot','search',0,5,1,0,0,0,'0000-00-00 00:00:00',''),(16,'Email Cloaking','mosemailcloak','content',0,5,1,0,0,0,'0000-00-00 00:00:00',''),(18,'Search Newsfeeds','newsfeeds.searchbot','search',0,6,1,0,0,0,'0000-00-00 00:00:00',''),(19,'Load Module Positions','mosloadposition','content',0,6,1,0,0,0,'0000-00-00 00:00:00',''); /*!40000 ALTER TABLE `rodam_mambots` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `rodam_menu` -- DROP TABLE IF EXISTS `rodam_menu`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `rodam_menu` ( `id` int(11) NOT NULL AUTO_INCREMENT, `menutype` varchar(25) DEFAULT NULL, `name` varchar(100) DEFAULT NULL, `link` text, `type` varchar(50) NOT NULL DEFAULT '', `published` tinyint(1) NOT NULL DEFAULT '0', `parent` int(11) unsigned NOT NULL DEFAULT '0', `componentid` int(11) unsigned NOT NULL DEFAULT '0', `sublevel` int(11) DEFAULT '0', `ordering` int(11) DEFAULT '0', `checked_out` int(11) unsigned NOT NULL DEFAULT '0', `checked_out_time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `pollid` int(11) NOT NULL DEFAULT '0', `browserNav` tinyint(4) DEFAULT '0', `access` tinyint(3) unsigned NOT NULL DEFAULT '0', `utaccess` tinyint(3) unsigned NOT NULL DEFAULT '0', `params` text NOT NULL, PRIMARY KEY (`id`), KEY `componentid` (`componentid`,`menutype`,`published`,`access`), KEY `menutype` (`menutype`) ) ENGINE=MyISAM AUTO_INCREMENT=32 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `rodam_menu` -- LOCK TABLES `rodam_menu` WRITE; /*!40000 ALTER TABLE `rodam_menu` DISABLE KEYS */; INSERT INTO `rodam_menu` VALUES (1,'mainmenu','Home','index.php?option=com_frontpage','components',1,0,10,0,1,0,'0000-00-00 00:00:00',0,0,0,3,'leading=1\r\nintro=2\r\nlink=1\r\nimage=1\r\npage_title=0\r\nheader=Welcome to the Frontpage\r\norderby_sec=front\r\nprint=0\r\npdf=0\r\nemail=0\r\nback_button=0'),(2,'mainmenu','News','index.php?option=com_content&task=section&id=1','content_section',1,0,1,0,3,0,'0000-00-00 00:00:00',0,0,0,3,''),(3,'mainmenu','Contact Us','index.php?option=com_contact','components',1,0,7,0,7,0,'0000-00-00 00:00:00',0,0,0,3,''),(23,'mainmenu','Links','index.php?option=com_weblinks','components',1,0,4,0,6,0,'0000-00-00 00:00:00',0,0,0,0,'menu_image=web_links.jpg\npageclass_sfx=\nback_button=\npage_title=1\nheader=\nheadings=1\nhits=\nitem_description=1\nother_cat=1\ndescription=1\ndescription_text=\nimage=-1\nimage_align=right\nweblink_icons='),(5,'mainmenu','Search','index.php?option=com_search','components',1,0,16,0,2,0,'0000-00-00 00:00:00',0,0,0,3,''),(6,'mainmenu','Joomla! License','index.php?option=com_content&task=view&id=5','content_typed',0,0,11,0,9,0,'0000-00-00 00:00:00',0,0,0,0,''),(7,'mainmenu','News Feeds','index.php?option=com_newsfeeds','components',1,0,12,0,4,0,'0000-00-00 00:00:00',0,0,0,3,'menu_image=-1\npageclass_sfx=\nback_button=\npage_title=1\nheader='),(8,'mainmenu','Wrapper','index.php?option=com_wrapper','wrapper',0,0,0,0,10,0,'0000-00-00 00:00:00',0,0,0,3,'menu_image=-1\npageclass_sfx=\nback_button=\npage_title=1\nheader=\nscrolling=auto\nwidth=100%\nheight=600\nheight_auto=0\nurl=www.joomla.org'),(9,'mainmenu','Blog','index.php?option=com_content&task=blogsection&id=0','content_blog_section',1,0,0,0,5,0,'0000-00-00 00:00:00',0,0,0,3,'menu_image=-1\npageclass_sfx=\nback_button=\nheader=A blog of all section with no images\npage_title=1\nleading=0\nintro=6\ncolumns=2\nlink=4\norderby_pri=\norderby_sec=\npagination=2\npagination_results=1\nimage=0\ndescription=0\ndescription_image=0\ncategory=0\ncategory_link=0\nitem_title=1\nlink_titles=\nreadmore=\nrating=\nauthor=\ncreatedate=\nmodifydate=\npdf=\nprint=\nemail=\nsectionid='),(10,'othermenu','Joomla! Home','http://www.joomla.org','url',0,0,0,0,1,0,'0000-00-00 00:00:00',0,0,0,3,''),(11,'othermenu','Joomla! Forums','http://forum.joomla.org','url',0,0,0,0,1,0,'0000-00-00 00:00:00',0,0,0,3,''),(12,'othermenu','OSM Home','http://www.opensourcematters.org','url',0,0,0,0,1,0,'0000-00-00 00:00:00',0,0,0,3,''),(24,'othermenu','Administrator','administrator/','url',1,0,0,0,3,0,'0000-00-00 00:00:00',0,0,0,3,'menu_image=-1'),(21,'usermenu','Your Details','index.php?option=com_user&task=UserDetails','url',1,0,0,0,6,0,'2000-00-00 00:00:00',0,0,1,3,''),(13,'usermenu','Submit News','index.php?option=com_content&task=new§ionid=1&Itemid=0','url',1,0,0,0,7,0,'2000-00-00 00:00:00',0,0,1,2,''),(14,'usermenu','Submit WebLink','index.php?option=com_weblinks&task=new','url',1,0,0,0,8,0,'2000-00-00 00:00:00',0,0,1,2,''),(15,'usermenu','Check-In My Items','index.php?option=com_user&task=CheckIn','url',0,0,0,0,9,0,'0000-00-00 00:00:00',0,0,1,2,''),(16,'usermenu','Logout','index.php?option=com_login','components',1,0,15,0,10,0,'0000-00-00 00:00:00',0,0,1,3,''),(17,'topmenu','Home','index.php','url',1,0,0,0,1,0,'0000-00-00 00:00:00',0,0,0,3,''),(18,'topmenu','Contact Us','index.php?option=com_contact&Itemid=3','url',1,0,0,0,2,0,'0000-00-00 00:00:00',0,0,0,3,''),(19,'topmenu','News','index.php?option=com_content&task=section&id=1&Itemid=2','url',1,0,0,0,3,0,'0000-00-00 00:00:00',0,0,0,3,''),(20,'topmenu','Links','index.php?option=com_weblinks&Itemid=23','url',1,0,0,0,4,0,'0000-00-00 00:00:00',0,0,0,3,'menu_image=-1'),(25,'mainmenu','FAQs','index.php?option=com_content&task=category§ionid=3&id=7','content_category',0,0,7,0,8,0,'0000-00-00 00:00:00',0,0,0,0,'menu_image=-1\npage_title=1\npageclass_sfx=\nback_button=\norderby=\ndate_format=\ndate=\nauthor=\ntitle=1\nhits=\nheadings=1\nnavigation=1\norder_select=1\ndisplay=1\ndisplay_num=50\nfilter=1\nfilter_type=title\nother_cat=1\nempty_cat=0\ncat_items=1\ncat_description=1'),(26,'usermenu','Gallery','index.php?option=com_ponygallery','components',-2,0,25,0,2,0,'0000-00-00 00:00:00',0,0,1,0,''),(27,'usermenu','Shoutbox','index.php?option=com_shoutit','components',-2,0,32,0,3,0,'0000-00-00 00:00:00',0,0,1,0,''),(28,'usermenu','Contact List','index.php?option=com_steckbriefe','components',-2,0,36,0,4,0,'0000-00-00 00:00:00',0,0,1,0,'menu_image=-1\npageclass_sfx=\nback_button=1\npage_title=1\nheader=\nother_cat_section=1\nother_cat=1\ncat_description=1\ncat_items=1\ndescription=1\ndescription_text=\nimage=-1\nimage_align=right\nheadings=1\nspitzname=1\ngeburtsdatum=1\nemail=0\neigenschaften=1\nzusatz2=1\nzusatz1=1'),(29,'usermenu','Gallery','index.php?option=com_paxgallery','components',-2,0,39,0,1,0,'0000-00-00 00:00:00',0,0,1,0,''),(30,'usermenu','Gallery','index.php?option=com_zoom','components',-2,0,44,0,0,0,'0000-00-00 00:00:00',0,0,1,0,''),(31,'usermenu','Upload Media','index.php?option=com_zoom&page=admin','url',-2,0,0,0,0,0,'0000-00-00 00:00:00',0,0,1,2,''); /*!40000 ALTER TABLE `rodam_menu` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `rodam_messages` -- DROP TABLE IF EXISTS `rodam_messages`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `rodam_messages` ( `message_id` int(10) unsigned NOT NULL AUTO_INCREMENT, `user_id_from` int(10) unsigned NOT NULL DEFAULT '0', `user_id_to` int(10) unsigned NOT NULL DEFAULT '0', `folder_id` int(10) unsigned NOT NULL DEFAULT '0', `date_time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `state` int(11) NOT NULL DEFAULT '0', `priority` int(1) unsigned NOT NULL DEFAULT '0', `subject` varchar(230) NOT NULL DEFAULT '', `message` text NOT NULL, PRIMARY KEY (`message_id`) ) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `rodam_messages` -- LOCK TABLES `rodam_messages` WRITE; /*!40000 ALTER TABLE `rodam_messages` DISABLE KEYS */; INSERT INTO `rodam_messages` VALUES (1,63,62,0,'2008-10-26 21:04:40',1,0,'New Picture Uploaded','A new content item has been submitted by mam titled September 19 to 22 2008.'); /*!40000 ALTER TABLE `rodam_messages` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `rodam_messages_cfg` -- DROP TABLE IF EXISTS `rodam_messages_cfg`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `rodam_messages_cfg` ( `user_id` int(10) unsigned NOT NULL DEFAULT '0', `cfg_name` varchar(100) NOT NULL DEFAULT '', `cfg_value` varchar(255) NOT NULL DEFAULT '', UNIQUE KEY `idx_user_var_name` (`user_id`,`cfg_name`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `rodam_messages_cfg` -- LOCK TABLES `rodam_messages_cfg` WRITE; /*!40000 ALTER TABLE `rodam_messages_cfg` DISABLE KEYS */; /*!40000 ALTER TABLE `rodam_messages_cfg` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `rodam_modules` -- DROP TABLE IF EXISTS `rodam_modules`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `rodam_modules` ( `id` int(11) NOT NULL AUTO_INCREMENT, `title` text NOT NULL, `content` text NOT NULL, `ordering` int(11) NOT NULL DEFAULT '0', `position` varchar(10) DEFAULT NULL, `checked_out` int(11) unsigned NOT NULL DEFAULT '0', `checked_out_time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `published` tinyint(1) NOT NULL DEFAULT '0', `module` varchar(50) DEFAULT NULL, `numnews` int(11) NOT NULL DEFAULT '0', `access` tinyint(3) unsigned NOT NULL DEFAULT '0', `showtitle` tinyint(3) unsigned NOT NULL DEFAULT '1', `params` text NOT NULL, `iscore` tinyint(4) NOT NULL DEFAULT '0', `client_id` tinyint(4) NOT NULL DEFAULT '0', PRIMARY KEY (`id`), KEY `published` (`published`,`access`), KEY `newsfeeds` (`module`,`published`) ) ENGINE=MyISAM AUTO_INCREMENT=38 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `rodam_modules` -- LOCK TABLES `rodam_modules` WRITE; /*!40000 ALTER TABLE `rodam_modules` DISABLE KEYS */; INSERT INTO `rodam_modules` VALUES (1,'Polls','',1,'right',0,'0000-00-00 00:00:00',1,'mod_poll',0,0,1,'',0,0),(2,'User Menu','',4,'left',0,'0000-00-00 00:00:00',1,'mod_mainmenu',0,1,1,'menutype=usermenu',1,0),(3,'Main Menu','',1,'left',0,'0000-00-00 00:00:00',1,'mod_mainmenu',0,0,1,'menutype=mainmenu',1,0),(4,'Login Form','',5,'left',0,'0000-00-00 00:00:00',1,'mod_login',0,0,1,'',1,0),(5,'Syndicate','',7,'left',0,'0000-00-00 00:00:00',0,'mod_rssfeed',0,0,1,'',1,0),(6,'Latest News','',2,'user1',0,'0000-00-00 00:00:00',1,'mod_latestnews',0,0,1,'',1,0),(7,'Statistics','',6,'left',0,'0000-00-00 00:00:00',0,'mod_stats',0,0,1,'serverinfo=1\nsiteinfo=1\ncounter=1\nincrease=0\nmoduleclass_sfx=',0,0),(8,'Who\'s Online','',2,'right',0,'0000-00-00 00:00:00',1,'mod_whosonline',0,0,1,'online=1\nusers=1\nmoduleclass_sfx=',0,0),(9,'Popular','',6,'user2',0,'0000-00-00 00:00:00',0,'mod_mostread',0,0,1,'',0,0),(10,'Template Chooser','',8,'left',0,'0000-00-00 00:00:00',0,'mod_templatechooser',0,0,1,'show_preview=1',0,0),(11,'Archive','',9,'left',0,'0000-00-00 00:00:00',0,'mod_archive',0,0,1,'',1,0),(12,'Sections','',10,'left',0,'0000-00-00 00:00:00',0,'mod_sections',0,0,1,'',1,0),(13,'Newsflash','',1,'top',0,'0000-00-00 00:00:00',1,'mod_newsflash',0,0,1,'catid=3\r\nstyle=random\r\nitems=\r\nmoduleclass_sfx=',0,0),(14,'Related Items','',11,'left',0,'0000-00-00 00:00:00',0,'mod_related_items',0,0,1,'',0,0),(15,'Search','',1,'user4',0,'0000-00-00 00:00:00',1,'mod_search',0,0,0,'',0,0),(16,'Random Image','',4,'right',0,'0000-00-00 00:00:00',1,'mod_random_image',0,0,1,'',0,0),(17,'Top Menu','',1,'user3',0,'0000-00-00 00:00:00',0,'mod_mainmenu',0,0,0,'menutype=topmenu\nmenu_style=list_flat\nmenu_images=n\nmenu_images_align=left\nexpand_menu=n\nclass_sfx=-nav\nmoduleclass_sfx=\nindent_image1=0\nindent_image2=0\nindent_image3=0\nindent_image4=0\nindent_image5=0\nindent_image6=0',1,0),(18,'Banners','',1,'banner',0,'0000-00-00 00:00:00',1,'mod_banners',0,0,0,'banner_cids=\nmoduleclass_sfx=\n',1,0),(19,'Components','',2,'cpanel',0,'0000-00-00 00:00:00',1,'mod_components',0,99,1,'',1,1),(20,'Popular','',3,'cpanel',0,'0000-00-00 00:00:00',1,'mod_popular',0,99,1,'',0,1),(21,'Latest Items','',4,'cpanel',0,'0000-00-00 00:00:00',1,'mod_latest',0,99,1,'',0,1),(22,'Menu Stats','',5,'cpanel',0,'0000-00-00 00:00:00',1,'mod_stats',0,99,1,'',0,1),(23,'Unread Messages','',1,'header',0,'0000-00-00 00:00:00',1,'mod_unread',0,99,1,'',1,1),(24,'Online Users','',2,'header',0,'0000-00-00 00:00:00',1,'mod_online',0,99,1,'',1,1),(25,'Full Menu','',1,'top',0,'0000-00-00 00:00:00',1,'mod_fullmenu',0,99,1,'',1,1),(26,'Pathway','',1,'pathway',0,'0000-00-00 00:00:00',1,'mod_pathway',0,99,1,'',1,1),(27,'Toolbar','',1,'toolbar',0,'0000-00-00 00:00:00',1,'mod_toolbar',0,99,1,'',1,1),(28,'System Message','',1,'inset',0,'0000-00-00 00:00:00',1,'mod_mosmsg',0,99,1,'',1,1),(29,'Quick Icons','',1,'icon',0,'0000-00-00 00:00:00',1,'mod_quickicon',0,99,1,'',1,1),(30,'Other Menu','',2,'left',0,'0000-00-00 00:00:00',1,'mod_mainmenu',0,0,0,'menutype=othermenu\nmenu_style=vert_indent\ncache=0\nmenu_images=0\nmenu_images_align=0\nexpand_menu=0\nclass_sfx=\nmoduleclass_sfx=\nindent_image=0\nindent_image1=\nindent_image2=\nindent_image3=\nindent_image4=\nindent_image5=\nindent_image6=',0,0),(31,'Wrapper','',12,'left',0,'0000-00-00 00:00:00',0,'mod_wrapper',0,0,1,'',0,0),(32,'Logged','',0,'cpanel',0,'0000-00-00 00:00:00',1,'mod_logged',0,99,1,'',0,1); /*!40000 ALTER TABLE `rodam_modules` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `rodam_modules_menu` -- DROP TABLE IF EXISTS `rodam_modules_menu`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `rodam_modules_menu` ( `moduleid` int(11) NOT NULL DEFAULT '0', `menuid` int(11) NOT NULL DEFAULT '0', PRIMARY KEY (`moduleid`,`menuid`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `rodam_modules_menu` -- LOCK TABLES `rodam_modules_menu` WRITE; /*!40000 ALTER TABLE `rodam_modules_menu` DISABLE KEYS */; INSERT INTO `rodam_modules_menu` VALUES (1,1),(2,0),(3,0),(4,1),(5,1),(6,1),(6,2),(6,4),(6,27),(6,36),(8,1),(9,1),(9,2),(9,4),(9,27),(9,36),(10,1),(13,0),(15,0),(17,0),(18,0),(30,0); /*!40000 ALTER TABLE `rodam_modules_menu` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `rodam_newsfeeds` -- DROP TABLE IF EXISTS `rodam_newsfeeds`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `rodam_newsfeeds` ( `catid` int(11) NOT NULL DEFAULT '0', `id` int(11) NOT NULL AUTO_INCREMENT, `name` text NOT NULL, `link` text NOT NULL, `filename` varchar(200) DEFAULT NULL, `published` tinyint(1) NOT NULL DEFAULT '0', `numarticles` int(11) unsigned NOT NULL DEFAULT '1', `cache_time` int(11) unsigned NOT NULL DEFAULT '3600', `checked_out` tinyint(3) unsigned NOT NULL DEFAULT '0', `checked_out_time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `ordering` int(11) NOT NULL DEFAULT '0', PRIMARY KEY (`id`), KEY `published` (`published`) ) ENGINE=MyISAM AUTO_INCREMENT=11 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `rodam_newsfeeds` -- LOCK TABLES `rodam_newsfeeds` WRITE; /*!40000 ALTER TABLE `rodam_newsfeeds` DISABLE KEYS */; INSERT INTO `rodam_newsfeeds` VALUES (4,1,'Joomla! - Official News','http://www.joomla.org/index.php?option=com_rss_xtd&feed=RSS2.0&type=com_frontpage&Itemid=1','',1,5,3600,0,'0000-00-00 00:00:00',8),(4,2,'Joomla! - Community News','http://www.joomla.org/index.php?option=com_rss_xtd&feed=RSS2.0&type=com_content&task=blogcategory&id=0&Itemid=33','',1,5,3600,0,'0000-00-00 00:00:00',9),(4,3,'OpenSourceMatters','http://www.opensourcematters.org/index2.php?option=com_rss&feed=RSS2.0&no_html=1','',1,5,3600,0,'0000-00-00 00:00:00',10),(10,4,'Linux Today','http://linuxtoday.com/backend/my-netscape.rdf','',1,3,3600,0,'0000-00-00 00:00:00',1),(5,5,'Business News','http://headlines.internet.com/internetnews/bus-news/news.rss','',1,3,3600,0,'0000-00-00 00:00:00',2),(11,6,'Web Developer News','http://headlines.internet.com/internetnews/wd-news/news.rss','',1,3,3600,0,'0000-00-00 00:00:00',3),(10,7,'Linux Central:New Products','http://linuxcentral.com/backend/lcnew.rdf','',1,3,3600,0,'0000-00-00 00:00:00',4),(10,8,'Linux Central:Best Selling','http://linuxcentral.com/backend/lcbestns.rdf','',1,3,3600,0,'0000-00-00 00:00:00',5),(10,9,'Linux Central:Daily Specials','http://linuxcentral.com/backend/lcspecialns.rdf','',1,3,3600,0,'0000-00-00 00:00:00',6),(9,10,'Internet:Finance News','http://headlines.internet.com/internetnews/fina-news/news.rss','',1,3,3600,0,'0000-00-00 00:00:00',7); /*!40000 ALTER TABLE `rodam_newsfeeds` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `rodam_poll_data` -- DROP TABLE IF EXISTS `rodam_poll_data`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `rodam_poll_data` ( `id` int(11) NOT NULL AUTO_INCREMENT, `pollid` int(4) NOT NULL DEFAULT '0', `text` text NOT NULL, `hits` int(11) NOT NULL DEFAULT '0', PRIMARY KEY (`id`), KEY `pollid` (`pollid`,`text`(1)) ) ENGINE=MyISAM AUTO_INCREMENT=13 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `rodam_poll_data` -- LOCK TABLES `rodam_poll_data` WRITE; /*!40000 ALTER TABLE `rodam_poll_data` DISABLE KEYS */; INSERT INTO `rodam_poll_data` VALUES (1,14,'Absolutely simple',1),(2,14,'Reasonably easy',0),(3,14,'Not straight-forward but I worked it out',0),(4,14,'I had to install extra server stuff',0),(5,14,'I had no idea and got my friend to do it',0),(6,14,'My dog ran away with the README ...',0),(7,14,'',0),(8,14,'',0),(9,14,'',0),(10,14,'',0),(11,14,'',0),(12,14,'',0); /*!40000 ALTER TABLE `rodam_poll_data` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `rodam_poll_date` -- DROP TABLE IF EXISTS `rodam_poll_date`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `rodam_poll_date` ( `id` bigint(20) NOT NULL AUTO_INCREMENT, `date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `vote_id` int(11) NOT NULL DEFAULT '0', `poll_id` int(11) NOT NULL DEFAULT '0', PRIMARY KEY (`id`), KEY `poll_id` (`poll_id`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `rodam_poll_date` -- LOCK TABLES `rodam_poll_date` WRITE; /*!40000 ALTER TABLE `rodam_poll_date` DISABLE KEYS */; /*!40000 ALTER TABLE `rodam_poll_date` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `rodam_poll_menu` -- DROP TABLE IF EXISTS `rodam_poll_menu`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `rodam_poll_menu` ( `pollid` int(11) NOT NULL DEFAULT '0', `menuid` int(11) NOT NULL DEFAULT '0', PRIMARY KEY (`pollid`,`menuid`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `rodam_poll_menu` -- LOCK TABLES `rodam_poll_menu` WRITE; /*!40000 ALTER TABLE `rodam_poll_menu` DISABLE KEYS */; INSERT INTO `rodam_poll_menu` VALUES (14,1); /*!40000 ALTER TABLE `rodam_poll_menu` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `rodam_polls` -- DROP TABLE IF EXISTS `rodam_polls`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `rodam_polls` ( `id` int(11) unsigned NOT NULL AUTO_INCREMENT, `title` varchar(100) NOT NULL DEFAULT '', `voters` int(9) NOT NULL DEFAULT '0', `checked_out` int(11) NOT NULL DEFAULT '0', `checked_out_time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `published` tinyint(1) NOT NULL DEFAULT '0', `access` int(11) NOT NULL DEFAULT '0', `lag` int(11) NOT NULL DEFAULT '0', PRIMARY KEY (`id`) ) ENGINE=MyISAM AUTO_INCREMENT=15 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `rodam_polls` -- LOCK TABLES `rodam_polls` WRITE; /*!40000 ALTER TABLE `rodam_polls` DISABLE KEYS */; INSERT INTO `rodam_polls` VALUES (14,'This Joomla! installation was ....',0,0,'2000-00-00 00:00:00',1,0,86400); /*!40000 ALTER TABLE `rodam_polls` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `rodam_rsgallery2_acl` -- DROP TABLE IF EXISTS `rodam_rsgallery2_acl`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `rodam_rsgallery2_acl` ( `id` int(11) NOT NULL AUTO_INCREMENT, `gallery_id` int(11) NOT NULL DEFAULT '0', `parent_id` int(11) NOT NULL DEFAULT '0', `public_view` tinyint(1) NOT NULL DEFAULT '1', `public_up_mod_img` tinyint(1) NOT NULL DEFAULT '0', `public_del_img` tinyint(1) NOT NULL DEFAULT '0', `public_create_mod_gal` tinyint(1) NOT NULL DEFAULT '0', `public_del_gal` tinyint(1) NOT NULL DEFAULT '0', `public_vote_view` tinyint(1) NOT NULL DEFAULT '1', `public_vote_vote` tinyint(1) NOT NULL DEFAULT '0', `registered_view` tinyint(1) NOT NULL DEFAULT '1', `registered_up_mod_img` tinyint(1) NOT NULL DEFAULT '1', `registered_del_img` tinyint(1) NOT NULL DEFAULT '0', `registered_create_mod_gal` tinyint(1) NOT NULL DEFAULT '1', `registered_del_gal` tinyint(1) NOT NULL DEFAULT '0', `registered_vote_view` tinyint(1) NOT NULL DEFAULT '1', `registered_vote_vote` tinyint(1) NOT NULL DEFAULT '1', PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `rodam_rsgallery2_acl` -- LOCK TABLES `rodam_rsgallery2_acl` WRITE; /*!40000 ALTER TABLE `rodam_rsgallery2_acl` DISABLE KEYS */; /*!40000 ALTER TABLE `rodam_rsgallery2_acl` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `rodam_rsgallery2_comments` -- DROP TABLE IF EXISTS `rodam_rsgallery2_comments`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `rodam_rsgallery2_comments` ( `id` int(11) NOT NULL AUTO_INCREMENT, `user_id` int(11) NOT NULL DEFAULT '0', `user_name` varchar(100) NOT NULL DEFAULT '', `user_ip` varchar(50) NOT NULL DEFAULT '0.0.0.0', `parent_id` int(11) NOT NULL DEFAULT '0', `item_id` int(11) NOT NULL DEFAULT '0', `item_table` varchar(50) DEFAULT NULL, `datetime` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `subject` varchar(100) DEFAULT NULL, `comment` text NOT NULL, `published` tinyint(1) NOT NULL DEFAULT '1', `checked_out` int(11) DEFAULT NULL, `checked_out_time` datetime DEFAULT NULL, `ordering` int(11) NOT NULL DEFAULT '0', `params` text, `hits` int(11) NOT NULL DEFAULT '0', PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `rodam_rsgallery2_comments` -- LOCK TABLES `rodam_rsgallery2_comments` WRITE; /*!40000 ALTER TABLE `rodam_rsgallery2_comments` DISABLE KEYS */; /*!40000 ALTER TABLE `rodam_rsgallery2_comments` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `rodam_rsgallery2_config` -- DROP TABLE IF EXISTS `rodam_rsgallery2_config`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `rodam_rsgallery2_config` ( `id` int(9) unsigned NOT NULL AUTO_INCREMENT, `name` text NOT NULL, `value` text NOT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM AUTO_INCREMENT=71 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `rodam_rsgallery2_config` -- LOCK TABLES `rodam_rsgallery2_config` WRITE; /*!40000 ALTER TABLE `rodam_rsgallery2_config` DISABLE KEYS */; INSERT INTO `rodam_rsgallery2_config` VALUES (1,'acl_enabled','1'),(2,'allowedFileTypes','jpg,jpeg,gif,png'),(3,'comment','1'),(4,'comment_allowed_public','1'),(5,'comment_once','0'),(6,'comment_security','1'),(7,'cookie_prefix','rsgvoting_'),(8,'createImgDirs',''),(9,'current_slideshow','slideshow_parth'),(10,'debug','0'),(11,'dispLimitbox','1'),(12,'displayBranding','1'),(13,'displayComments','1'),(14,'displayDesc','1'),(15,'displayDownload','1'),(16,'displayEXIF','1'),(17,'displayHits','0'),(18,'displayLatest','1'),(19,'displayPopup','1'),(20,'displayRandom','1'),(21,'displaySearch','1'),(22,'displaySlideshow','1'),(23,'displayStatus','1'),(24,'displayVoting','1'),(25,'display_img_dynamicResize','0'),(26,'display_thumbs_colsPerPage','3'),(27,'display_thumbs_floatDirection','left'),(28,'display_thumbs_maxPerPage','9'),(29,'display_thumbs_showImgName','1'),(30,'display_thumbs_style','table'),(31,'exifTags','FileName|FileDateTime|resolution'),(32,'filter_order','ordering'),(33,'filter_order_Dir','ASC'),(34,'ftp_path',''),(35,'galcountNrs','5'),(36,'graphicsLib','gd2'),(37,'hideRoot','1'),(38,'imageMagick_path',''),(39,'image_width','400'),(40,'imgPath_display','/images/rsgallery/display'),(41,'imgPath_original','/images/rsgallery/original'),(42,'imgPath_thumb','/images/rsgallery/thumb'),(43,'intro_text','

Your images go here

'),(44,'jpegQuality','85'),(45,'keepOriginalImage','1'),(46,'netpbm_path',''),(47,'resize_portrait_by_height','1'),(48,'showGalleryDate','1'),(49,'showGalleryOwner','1'),(50,'showGallerySize','1'),(51,'show_mygalleries','1'),(52,'template','semantic'),(53,'thumb_style','1'),(54,'thumb_width','80'),(55,'uu_createCat','1'),(56,'uu_enabled','0'),(57,'uu_maxCat','10'),(58,'uu_maxImages','100'),(59,'version','1.14.3'),(60,'voting','1'),(61,'voting_once','1'),(62,'watermark','0'),(63,'watermark_angle','0'),(64,'watermark_font','arial.ttf'),(65,'watermark_font_size','20'),(66,'watermark_image','watermark.png'),(67,'watermark_position','5'),(68,'watermark_text','(c) 2007 - RSGallery2'),(69,'watermark_transparency','50'),(70,'watermark_type','text'); /*!40000 ALTER TABLE `rodam_rsgallery2_config` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `rodam_rsgallery2_files` -- DROP TABLE IF EXISTS `rodam_rsgallery2_files`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `rodam_rsgallery2_files` ( `id` int(9) unsigned NOT NULL AUTO_INCREMENT, `name` varchar(100) NOT NULL DEFAULT '', `descr` text, `gallery_id` int(9) unsigned NOT NULL DEFAULT '0', `title` varchar(50) NOT NULL DEFAULT '', `hits` int(11) unsigned NOT NULL DEFAULT '0', `date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `rating` int(10) unsigned NOT NULL DEFAULT '0', `votes` int(10) unsigned NOT NULL DEFAULT '0', `comments` int(10) unsigned NOT NULL DEFAULT '0', `published` tinyint(1) NOT NULL DEFAULT '1', `checked_out` int(11) NOT NULL DEFAULT '0', `checked_out_time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `ordering` int(9) unsigned NOT NULL DEFAULT '0', `approved` tinyint(1) unsigned NOT NULL DEFAULT '1', `userid` int(10) NOT NULL DEFAULT '0', `params` text NOT NULL, PRIMARY KEY (`id`), UNIQUE KEY `UK_name` (`name`), KEY `id` (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `rodam_rsgallery2_files` -- LOCK TABLES `rodam_rsgallery2_files` WRITE; /*!40000 ALTER TABLE `rodam_rsgallery2_files` DISABLE KEYS */; /*!40000 ALTER TABLE `rodam_rsgallery2_files` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `rodam_rsgallery2_galleries` -- DROP TABLE IF EXISTS `rodam_rsgallery2_galleries`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `rodam_rsgallery2_galleries` ( `id` int(11) NOT NULL AUTO_INCREMENT, `parent` int(11) NOT NULL DEFAULT '0', `name` varchar(255) NOT NULL DEFAULT '', `description` text NOT NULL, `published` tinyint(1) NOT NULL DEFAULT '0', `checked_out` int(11) unsigned NOT NULL DEFAULT '0', `checked_out_time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `ordering` int(11) NOT NULL DEFAULT '0', `date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `hits` int(11) NOT NULL DEFAULT '0', `params` text NOT NULL, `user` tinyint(4) NOT NULL DEFAULT '0', `uid` int(11) unsigned NOT NULL DEFAULT '0', `allowed` varchar(100) NOT NULL DEFAULT '0', `thumb_id` int(11) unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `rodam_rsgallery2_galleries` -- LOCK TABLES `rodam_rsgallery2_galleries` WRITE; /*!40000 ALTER TABLE `rodam_rsgallery2_galleries` DISABLE KEYS */; /*!40000 ALTER TABLE `rodam_rsgallery2_galleries` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `rodam_sections` -- DROP TABLE IF EXISTS `rodam_sections`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `rodam_sections` ( `id` int(11) NOT NULL AUTO_INCREMENT, `title` varchar(50) NOT NULL DEFAULT '', `name` varchar(255) NOT NULL DEFAULT '', `image` varchar(100) NOT NULL DEFAULT '', `scope` varchar(50) NOT NULL DEFAULT '', `image_position` varchar(10) NOT NULL DEFAULT '', `description` text NOT NULL, `published` tinyint(1) NOT NULL DEFAULT '0', `checked_out` int(11) unsigned NOT NULL DEFAULT '0', `checked_out_time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `ordering` int(11) NOT NULL DEFAULT '0', `access` tinyint(3) unsigned NOT NULL DEFAULT '0', `count` int(11) NOT NULL DEFAULT '0', `params` text NOT NULL, PRIMARY KEY (`id`), KEY `idx_scope` (`scope`) ) ENGINE=MyISAM AUTO_INCREMENT=4 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `rodam_sections` -- LOCK TABLES `rodam_sections` WRITE; /*!40000 ALTER TABLE `rodam_sections` DISABLE KEYS */; INSERT INTO `rodam_sections` VALUES (1,'News','The News','articles.jpg','content','right','Select a news topic from the list below, then select a news article to read.',1,0,'0000-00-00 00:00:00',1,0,1,''),(2,'Newsflashes','Newsflashes','','content','left','',1,0,'0000-00-00 00:00:00',2,0,1,''),(3,'FAQs','Frequently Asked Questions','pastarchives.jpg','content','left','From the list below choose one of our FAQs topics, then select an FAQ to read. If you have a question which is not in this section, please contact us.',1,0,'0000-00-00 00:00:00',2,0,1,''); /*!40000 ALTER TABLE `rodam_sections` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `rodam_session` -- DROP TABLE IF EXISTS `rodam_session`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `rodam_session` ( `username` varchar(50) DEFAULT '', `time` varchar(14) DEFAULT '', `session_id` varchar(200) NOT NULL DEFAULT '0', `guest` tinyint(4) DEFAULT '1', `userid` int(11) DEFAULT '0', `usertype` varchar(50) DEFAULT '', `gid` tinyint(3) unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`session_id`), KEY `whosonline` (`guest`,`usertype`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `rodam_session` -- LOCK TABLES `rodam_session` WRITE; /*!40000 ALTER TABLE `rodam_session` DISABLE KEYS */; /*!40000 ALTER TABLE `rodam_session` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `rodam_stats_agents` -- DROP TABLE IF EXISTS `rodam_stats_agents`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `rodam_stats_agents` ( `agent` varchar(255) NOT NULL DEFAULT '', `type` tinyint(1) unsigned NOT NULL DEFAULT '0', `hits` int(11) unsigned NOT NULL DEFAULT '1' ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `rodam_stats_agents` -- LOCK TABLES `rodam_stats_agents` WRITE; /*!40000 ALTER TABLE `rodam_stats_agents` DISABLE KEYS */; /*!40000 ALTER TABLE `rodam_stats_agents` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `rodam_steckbriefe_details` -- DROP TABLE IF EXISTS `rodam_steckbriefe_details`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `rodam_steckbriefe_details` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(100) NOT NULL DEFAULT '', `spitzname` varchar(50) DEFAULT NULL, `geburtsort` varchar(50) DEFAULT NULL, `geburtsdatum` varchar(10) DEFAULT NULL, `hobbies` varchar(50) DEFAULT NULL, `con_position` varchar(50) DEFAULT NULL, `vorbilder` varchar(50) DEFAULT NULL, `lieblingsverein` varchar(50) DEFAULT NULL, `eigenschaften` varchar(50) DEFAULT NULL, `alte_vereine` varchar(50) DEFAULT NULL, `zusatz1` varchar(100) DEFAULT NULL, `zusatz2` varchar(100) DEFAULT NULL, `zusatz3` varchar(100) DEFAULT NULL, `website` varchar(100) DEFAULT NULL, `zusatz4` mediumtext, `motto` mediumtext, `image` varchar(100) DEFAULT NULL, `imagepos` varchar(20) DEFAULT NULL, `email_to` varchar(100) DEFAULT NULL, `default_con` tinyint(1) unsigned NOT NULL DEFAULT '0', `published` tinyint(1) unsigned NOT NULL DEFAULT '0', `checked_out` int(11) unsigned NOT NULL DEFAULT '0', `checked_out_time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `ordering` int(11) NOT NULL DEFAULT '0', `params` text NOT NULL, `user_id` int(11) NOT NULL DEFAULT '0', `catid` int(11) NOT NULL DEFAULT '0', `access` tinyint(3) unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `rodam_steckbriefe_details` -- LOCK TABLES `rodam_steckbriefe_details` WRITE; /*!40000 ALTER TABLE `rodam_steckbriefe_details` DISABLE KEYS */; /*!40000 ALTER TABLE `rodam_steckbriefe_details` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `rodam_template_positions` -- DROP TABLE IF EXISTS `rodam_template_positions`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `rodam_template_positions` ( `id` int(11) NOT NULL AUTO_INCREMENT, `position` varchar(10) NOT NULL DEFAULT '', `description` varchar(255) NOT NULL DEFAULT '', PRIMARY KEY (`id`) ) ENGINE=MyISAM AUTO_INCREMENT=28 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `rodam_template_positions` -- LOCK TABLES `rodam_template_positions` WRITE; /*!40000 ALTER TABLE `rodam_template_positions` DISABLE KEYS */; INSERT INTO `rodam_template_positions` VALUES (1,'left',''),(2,'right',''),(3,'top',''),(4,'bottom',''),(5,'inset',''),(6,'banner',''),(7,'header',''),(8,'footer',''),(9,'newsflash',''),(10,'legals',''),(11,'pathway',''),(12,'toolbar',''),(13,'cpanel',''),(14,'user1',''),(15,'user2',''),(16,'user3',''),(17,'user4',''),(18,'user5',''),(19,'user6',''),(20,'user7',''),(21,'user8',''),(22,'user9',''),(23,'advert1',''),(24,'advert2',''),(25,'advert3',''),(26,'icon',''),(27,'debug',''); /*!40000 ALTER TABLE `rodam_template_positions` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `rodam_templates_menu` -- DROP TABLE IF EXISTS `rodam_templates_menu`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `rodam_templates_menu` ( `template` varchar(50) NOT NULL DEFAULT '', `menuid` int(11) NOT NULL DEFAULT '0', `client_id` tinyint(4) NOT NULL DEFAULT '0', PRIMARY KEY (`template`,`menuid`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `rodam_templates_menu` -- LOCK TABLES `rodam_templates_menu` WRITE; /*!40000 ALTER TABLE `rodam_templates_menu` DISABLE KEYS */; INSERT INTO `rodam_templates_menu` VALUES ('owtweb_rodam',0,0),('joomla_admin',0,1); /*!40000 ALTER TABLE `rodam_templates_menu` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `rodam_users` -- DROP TABLE IF EXISTS `rodam_users`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `rodam_users` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(50) NOT NULL DEFAULT '', `username` varchar(25) NOT NULL DEFAULT '', `email` varchar(100) NOT NULL DEFAULT '', `password` varchar(100) NOT NULL DEFAULT '', `usertype` varchar(25) NOT NULL DEFAULT '', `block` tinyint(4) NOT NULL DEFAULT '0', `sendEmail` tinyint(4) DEFAULT '0', `gid` tinyint(3) unsigned NOT NULL DEFAULT '1', `registerDate` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `lastvisitDate` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `activation` varchar(100) NOT NULL DEFAULT '', `params` text NOT NULL, PRIMARY KEY (`id`), KEY `usertype` (`usertype`), KEY `idx_name` (`name`) ) ENGINE=MyISAM AUTO_INCREMENT=64 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `rodam_users` -- LOCK TABLES `rodam_users` WRITE; /*!40000 ALTER TABLE `rodam_users` DISABLE KEYS */; INSERT INTO `rodam_users` VALUES (62,'Administrator','admin','markus.mascelli@chello.at','5a9361b28ee51795f1e82d9054919034','Super Administrator',0,1,25,'2006-06-04 21:35:31','2008-10-26 21:40:34','','editor='),(63,'Markus A. Mascelli','mam','mam@heimam.at','5a9361b28ee51795f1e82d9054919034','',0,0,18,'2008-10-26 19:17:00','2009-03-06 06:33:47','','editor=tinymce'); /*!40000 ALTER TABLE `rodam_users` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `rodam_usertypes` -- DROP TABLE IF EXISTS `rodam_usertypes`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `rodam_usertypes` ( `id` tinyint(3) unsigned NOT NULL DEFAULT '0', `name` varchar(50) NOT NULL DEFAULT '', `mask` varchar(11) NOT NULL DEFAULT '', PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `rodam_usertypes` -- LOCK TABLES `rodam_usertypes` WRITE; /*!40000 ALTER TABLE `rodam_usertypes` DISABLE KEYS */; INSERT INTO `rodam_usertypes` VALUES (0,'superadministrator',''),(1,'administrator',''),(2,'editor',''),(3,'user',''),(4,'author',''),(5,'publisher',''),(6,'manager',''); /*!40000 ALTER TABLE `rodam_usertypes` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `rodam_weblinks` -- DROP TABLE IF EXISTS `rodam_weblinks`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `rodam_weblinks` ( `id` int(11) unsigned NOT NULL AUTO_INCREMENT, `catid` int(11) NOT NULL DEFAULT '0', `sid` int(11) NOT NULL DEFAULT '0', `title` varchar(250) NOT NULL DEFAULT '', `url` varchar(250) NOT NULL DEFAULT '', `description` varchar(250) NOT NULL DEFAULT '', `date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `hits` int(11) NOT NULL DEFAULT '0', `published` tinyint(1) NOT NULL DEFAULT '0', `checked_out` int(11) NOT NULL DEFAULT '0', `checked_out_time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `ordering` int(11) NOT NULL DEFAULT '0', `archived` tinyint(1) NOT NULL DEFAULT '0', `approved` tinyint(1) NOT NULL DEFAULT '1', `params` text NOT NULL, PRIMARY KEY (`id`), KEY `catid` (`catid`,`published`,`archived`) ) ENGINE=MyISAM AUTO_INCREMENT=6 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `rodam_weblinks` -- LOCK TABLES `rodam_weblinks` WRITE; /*!40000 ALTER TABLE `rodam_weblinks` DISABLE KEYS */; INSERT INTO `rodam_weblinks` VALUES (1,2,0,'Joomla!','http://www.joomla.org','Home of Joomla!','2005-02-14 15:19:02',2,1,0,'0000-00-00 00:00:00',1,0,1,'target=0'),(2,2,0,'php.net','http://www.php.net','The language that Joomla! is developed in','2004-07-07 11:33:24',0,1,0,'0000-00-00 00:00:00',3,0,1,''),(3,2,0,'MySQL','http://www.mysql.com','The database that Joomla! uses','2004-07-07 10:18:31',0,1,0,'0000-00-00 00:00:00',5,0,1,''),(4,2,0,'OpenSourceMatters','http://www.opensourcematters.org','Home of OSM','2005-02-14 15:19:02',2,1,0,'0000-00-00 00:00:00',1,0,1,'target=0'),(5,2,0,'Joomla! - Forums','http://forum.joomla.org','Joomla! Forums','2005-02-14 15:19:02',2,1,0,'0000-00-00 00:00:00',1,0,1,'target=0'); /*!40000 ALTER TABLE `rodam_weblinks` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `rodam_zoom` -- DROP TABLE IF EXISTS `rodam_zoom`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `rodam_zoom` ( `catid` int(11) NOT NULL AUTO_INCREMENT, `catname` varchar(50) DEFAULT '0', `catdescr` varchar(255) DEFAULT NULL, `catdir` varchar(50) DEFAULT '0', `catimg` int(11) DEFAULT NULL, `catpassword` varchar(100) NOT NULL DEFAULT '', `catkeywords` varchar(240) NOT NULL DEFAULT '', `subcat_id` int(11) NOT NULL DEFAULT '0', `pos` int(3) NOT NULL DEFAULT '0', `hideMsg` tinyint(1) NOT NULL DEFAULT '0', `shared` tinyint(1) NOT NULL DEFAULT '0', `published` tinyint(1) NOT NULL DEFAULT '1', `uid` int(11) NOT NULL DEFAULT '0', `catmembers` varchar(240) NOT NULL DEFAULT '', PRIMARY KEY (`catid`), KEY `catdir_search` (`catdir`), KEY `rel_subcats` (`subcat_id`) ) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `rodam_zoom` -- LOCK TABLES `rodam_zoom` WRITE; /*!40000 ALTER TABLE `rodam_zoom` DISABLE KEYS */; INSERT INTO `rodam_zoom` VALUES (1,'10 Years After - The Rotterdam Erasmus Students Re','','ZEMNKL',NULL,'','',0,0,0,1,1,62,'2'); /*!40000 ALTER TABLE `rodam_zoom` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `rodam_zoom_comments` -- DROP TABLE IF EXISTS `rodam_zoom_comments`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `rodam_zoom_comments` ( `cmtid` int(11) NOT NULL AUTO_INCREMENT, `imgid` int(11) NOT NULL DEFAULT '0', `cmtname` varchar(40) NOT NULL DEFAULT '', `cmtcontent` text NOT NULL, `cmtdate` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, PRIMARY KEY (`cmtid`), KEY `imgid` (`imgid`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `rodam_zoom_comments` -- LOCK TABLES `rodam_zoom_comments` WRITE; /*!40000 ALTER TABLE `rodam_zoom_comments` DISABLE KEYS */; /*!40000 ALTER TABLE `rodam_zoom_comments` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `rodam_zoom_ecards` -- DROP TABLE IF EXISTS `rodam_zoom_ecards`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `rodam_zoom_ecards` ( `ecdid` varchar(25) NOT NULL DEFAULT '', `imgid` int(11) NOT NULL DEFAULT '0', `to_name` varchar(50) NOT NULL DEFAULT '', `from_name` varchar(50) NOT NULL DEFAULT '', `to_email` varchar(75) NOT NULL DEFAULT '', `from_email` varchar(75) NOT NULL DEFAULT '', `message` text NOT NULL, `end_date` date NOT NULL DEFAULT '0000-00-00', `user_ip` varchar(25) NOT NULL DEFAULT '', PRIMARY KEY (`ecdid`), KEY `ecard_img` (`imgid`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `rodam_zoom_ecards` -- LOCK TABLES `rodam_zoom_ecards` WRITE; /*!40000 ALTER TABLE `rodam_zoom_ecards` DISABLE KEYS */; /*!40000 ALTER TABLE `rodam_zoom_ecards` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `rodam_zoom_editmon` -- DROP TABLE IF EXISTS `rodam_zoom_editmon`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `rodam_zoom_editmon` ( `edtid` int(11) NOT NULL AUTO_INCREMENT, `user_session` varchar(200) NOT NULL DEFAULT '0', `vote_time` varchar(14) DEFAULT NULL, `comment_time` varchar(14) DEFAULT NULL, `pass_time` varchar(14) DEFAULT NULL, `lightbox_time` varchar(14) DEFAULT NULL, `lightbox_file` varchar(40) DEFAULT NULL, `object_id` int(11) NOT NULL DEFAULT '0', PRIMARY KEY (`edtid`), KEY `edit_session` (`user_session`), KEY `object` (`object_id`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `rodam_zoom_editmon` -- LOCK TABLES `rodam_zoom_editmon` WRITE; /*!40000 ALTER TABLE `rodam_zoom_editmon` DISABLE KEYS */; /*!40000 ALTER TABLE `rodam_zoom_editmon` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `rodam_zoom_getid3_cache` -- DROP TABLE IF EXISTS `rodam_zoom_getid3_cache`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `rodam_zoom_getid3_cache` ( `filename` varchar(255) NOT NULL DEFAULT '', `filesize` int(11) NOT NULL DEFAULT '0', `filetime` int(11) NOT NULL DEFAULT '0', `analyzetime` int(11) NOT NULL DEFAULT '0', `value` text NOT NULL, PRIMARY KEY (`filename`,`filesize`,`filetime`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `rodam_zoom_getid3_cache` -- LOCK TABLES `rodam_zoom_getid3_cache` WRITE; /*!40000 ALTER TABLE `rodam_zoom_getid3_cache` DISABLE KEYS */; /*!40000 ALTER TABLE `rodam_zoom_getid3_cache` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `rodam_zoom_priv` -- DROP TABLE IF EXISTS `rodam_zoom_priv`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `rodam_zoom_priv` ( `gid` int(11) NOT NULL DEFAULT '0', `priv_upload` enum('0','1') NOT NULL DEFAULT '1', `priv_editmedium` enum('0','1') NOT NULL DEFAULT '1', `priv_delmedium` enum('0','1') NOT NULL DEFAULT '1', `priv_creategal` enum('0','1') NOT NULL DEFAULT '1', `priv_editgal` enum('0','1') NOT NULL DEFAULT '1', `priv_delgal` enum('0','1') NOT NULL DEFAULT '1', PRIMARY KEY (`gid`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `rodam_zoom_priv` -- LOCK TABLES `rodam_zoom_priv` WRITE; /*!40000 ALTER TABLE `rodam_zoom_priv` DISABLE KEYS */; INSERT INTO `rodam_zoom_priv` VALUES (18,'1','0','0','0','0','0'),(19,'1','0','0','0','0','0'),(20,'1','0','0','0','0','0'),(21,'1','0','0','0','0','0'),(23,'1','0','0','0','0','0'),(24,'1','1','1','1','1','1'),(25,'1','1','1','1','1','1'); /*!40000 ALTER TABLE `rodam_zoom_priv` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `rodam_zoomfiles` -- DROP TABLE IF EXISTS `rodam_zoomfiles`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `rodam_zoomfiles` ( `imgid` int(11) NOT NULL AUTO_INCREMENT, `imgname` varchar(50) NOT NULL DEFAULT '', `imgfilename` varchar(70) NOT NULL DEFAULT '', `imgdescr` varchar(255) DEFAULT NULL, `imgkeywords` varchar(255) DEFAULT NULL, `imgdate` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `imghits` bigint(20) NOT NULL DEFAULT '0', `votenum` int(11) NOT NULL DEFAULT '0', `votesum` int(11) NOT NULL DEFAULT '0', `published` tinyint(1) NOT NULL DEFAULT '1', `catid` int(11) NOT NULL DEFAULT '0', `uid` int(11) NOT NULL DEFAULT '0', `imgmembers` varchar(240) NOT NULL DEFAULT '', PRIMARY KEY (`imgid`), KEY `img_catid` (`catid`), KEY `img_user` (`uid`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `rodam_zoomfiles` -- LOCK TABLES `rodam_zoomfiles` WRITE; /*!40000 ALTER TABLE `rodam_zoomfiles` DISABLE KEYS */; /*!40000 ALTER TABLE `rodam_zoomfiles` ENABLE KEYS */; UNLOCK TABLES; -- -- Current Database: `limesurvey` -- CREATE DATABASE /*!32312 IF NOT EXISTS*/ `limesurvey` /*!40100 DEFAULT CHARACTER SET utf8 COLLATE utf8_unicode_ci */; USE `limesurvey`; -- -- Table structure for table `lime_answers` -- DROP TABLE IF EXISTS `lime_answers`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `lime_answers` ( `qid` int(11) NOT NULL DEFAULT '0', `code` varchar(5) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', `answer` text COLLATE utf8_unicode_ci NOT NULL, `default_value` char(1) COLLATE utf8_unicode_ci NOT NULL DEFAULT 'N', `assessment_value` int(11) NOT NULL DEFAULT '0', `sortorder` int(11) NOT NULL DEFAULT '0', `language` varchar(20) COLLATE utf8_unicode_ci NOT NULL DEFAULT 'en', PRIMARY KEY (`qid`,`code`,`language`), KEY `answers_idx2` (`sortorder`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `lime_answers` -- LOCK TABLES `lime_answers` WRITE; /*!40000 ALTER TABLE `lime_answers` DISABLE KEYS */; INSERT INTO `lime_answers` VALUES (269,'04','This ad would be enough to get me to hire this lawyer','N',4,4,'en'),(269,'03','This ad suggests that the lawyer is interested in a life of frugal community service','N',3,3,'en'),(269,'02','This ad suggests the lawyer is on my side, not his own','N',2,2,'en'),(269,'01','This ad gives me confidence in the lawyers experience','N',1,1,'en'),(268,'3','Ad Three
','N',3,3,'en'),(268,'2','Ad Two
','N',2,2,'en'),(268,'1','Ad One
','N',1,1,'en'),(267,'03','How dare you insult me like that! I\'m YOUNG','N',3,3,'en'),(267,'02','Easy, my carer is doing it all for me','N',2,2,'en'),(267,'01','Very difficult to read, my eyesight is dim','N',1,1,'en'),(265,'80-','80 and over','N',80,15,'en'),(265,'75-79','75-79 Years','N',75,14,'en'),(265,'65-69','65-69 Years','N',65,12,'en'),(265,'70-74','70-74 Years','N',70,13,'en'),(265,'60-64','60-64 Years','N',60,11,'en'),(265,'55-59','55-59 Years','N',55,10,'en'),(265,'50-54','50-54 Years','N',50,9,'en'),(265,'40-44','40-44 Years','N',40,7,'en'),(265,'45-49','45-49 Years','N',45,8,'en'),(265,'35-39','35-39 Years','N',35,6,'en'),(265,'30-34','30-34 Years','N',30,5,'en'),(265,'25-29','25-29 Years','N',25,4,'en'),(265,'15-19','15-19 Years','N',15,2,'en'),(265,'20-24','20-24 Years','N',20,3,'en'),(265,'0-14','0-14 Years','N',0,1,'en'),(270,'01','This ad gives me confidence in the lawyers experience','N',1,1,'en'),(270,'02','This ad suggests the lawyer is on my side, not his own','N',2,2,'en'),(270,'03','This ad suggests that the lawyer is interested in a life of frugal community service','N',3,3,'en'),(270,'04','This ad would be enough to get me to hire this lawyer','N',4,4,'en'),(271,'01','This ad gives me confidence in the lawyers experience','N',1,1,'en'),(271,'02','This ad suggests the lawyer is on my side, not his own','N',2,2,'en'),(271,'03','This ad suggests that the lawyer is interested in a life of frugal community service','N',3,3,'en'),(271,'04','This ad would be enough to get me to hire this lawyer','N',4,4,'en'),(273,'c1','answer_en1','',0,1,'en'),(273,'c1','answer_hr1','',0,1,'hr'),(273,'c1','answer_nl1','',0,1,'nl'),(273,'c2','answer_en2','',0,2,'en'),(273,'c2','answer_hr2','',0,2,'hr'),(273,'c2','answer_nl2','',0,2,'nl'),(273,'c3','answer_en3','',0,3,'en'),(273,'c3','answer_hr3','',0,3,'hr'),(273,'c3','answer_nl3','',0,3,'nl'),(274,'A1','FBI','N',0,0,'en'),(274,'A2','CIA','N',0,1,'en'),(274,'A3','G5','N',0,2,'en'),(274,'A4','NASA','N',0,3,'en'),(275,'B1','Darth Vader','N',0,0,'en'),(275,'B2','Luke Skywalker','N',0,1,'en'),(275,'B3','Princess Leia','N',0,2,'en'),(275,'B4','Jabba the Hut','N',0,3,'en'),(276,'C1','I am blonde','N',0,0,'en'),(276,'C2','I am blue','N',0,1,'en'),(276,'C3','I am pissed','N',0,2,'en'),(276,'C4','I am drunk','N',0,3,'en'),(277,'E1','Pain','N',0,0,'en'),(277,'E2','Pleasure','N',0,1,'en'),(277,'E3','Luck','N',0,2,'en'),(277,'E4','Happiness','N',0,3,'en'),(278,'F1','Deannan Troi','N',0,0,'en'),(278,'F2','Wesley Crusher','N',0,1,'en'),(278,'F3','Jean-Luc Picard','N',0,2,'en'),(278,'F4','Seven of Nine','N',0,3,'en'),(279,'H1','Deannan Troi','N',0,0,'en'),(279,'H2','Wesley Crusher','N',0,1,'en'),(279,'H3','Data','N',0,2,'en'),(279,'H4','Jean-Luc Picard','N',0,3,'en'),(280,'1','sweet|bitter','N',1,1,'en'),(280,'2','fair|unfair','N',2,2,'en'),(280,'3','warm|cold','N',3,3,'en'),(280,'4','beautiful|ugly','N',4,4,'en'),(280,'5','meaningful|meaningless','N',5,5,'en'),(280,'6','bright|dark','N',6,6,'en'),(281,'1','television program','N',1,1,'en'),(281,'2','radio program','N',2,2,'en'),(281,'3','cinema program','N',3,3,'en'),(282,'Q1','blue','N',0,0,'en'),(282,'Q2','red','N',0,1,'en'),(282,'Q3','green','N',0,2,'en'),(289,'R1','Red','N',0,0,'en'),(289,'R2','Green','N',0,1,'en'),(289,'R3','Blue','N',0,2,'en'),(294,'O1','Red','N',0,0,'en'),(294,'O2','Green','N',0,1,'en'),(294,'O3','Blue','N',0,2,'en'),(295,'L1',' Green','N',0,0,'en'),(295,'L2','Red','N',0,1,'en'),(295,'L3','Blue','N',0,2,'en'),(297,'EC1','Green','N',0,0,'en'),(297,'EC2','Red','N',0,1,'en'),(297,'EC3','Blue','N',0,2,'en'),(298,'P1','I am glad','N',0,0,'en'),(298,'P2','I don\'t care','N',0,1,'en'),(298,'P3','I am unhappy','N',0,2,'en'),(299,'M1','Yes','N',0,0,'en'),(299,'M2','No','N',0,1,'en'),(299,'M3','Maybe','N',0,2,'en'),(300,'A1','FBI','N',0,0,'en'),(300,'A2','CIA','N',0,1,'en'),(300,'A3','G5','N',0,2,'en'),(300,'A4','NASA','N',0,3,'en'),(301,'B1','Darth Vader','N',0,0,'en'),(301,'B2','Luke Skywalker','N',0,1,'en'),(301,'B3','Princess Leia','N',0,2,'en'),(301,'B4','Jabba the Hut','N',0,3,'en'),(302,'C1','I am blonde','N',0,0,'en'),(302,'C2','I am blue','N',0,1,'en'),(302,'C3','I am pissed','N',0,2,'en'),(302,'C4','I am drunk','N',0,3,'en'),(303,'E1','Pain','N',0,0,'en'),(303,'E2','Pleasure','N',0,1,'en'),(303,'E3','Luck','N',0,2,'en'),(303,'E4','Happiness','N',0,3,'en'),(304,'F1','Deannan Troi','N',0,0,'en'),(304,'F2','Wesley Crusher','N',0,1,'en'),(304,'F3','Jean-Luc Picard','N',0,2,'en'),(304,'F4','Seven of Nine','N',0,3,'en'),(305,'H1','Deannan Troi','N',0,0,'en'),(305,'H2','Wesley Crusher','N',0,1,'en'),(305,'H3','Data','N',0,2,'en'),(305,'H4','Jean-Luc Picard','N',0,3,'en'),(306,'1','sweet|bitter','N',1,1,'en'),(306,'2','fair|unfair','N',2,2,'en'),(306,'3','warm|cold','N',3,3,'en'),(306,'4','beautiful|ugly','N',4,4,'en'),(306,'5','meaningful|meaningless','N',5,5,'en'),(306,'6','bright|dark','N',6,6,'en'),(307,'1','television program','N',1,1,'en'),(307,'2','radio program','N',2,2,'en'),(307,'3','cinema program','N',3,3,'en'),(308,'1','Google','N',1,1,'en'),(308,'2','Yahoo','N',2,2,'en'),(308,'3','Microsoft Search','N',3,3,'en'),(309,'1','Google','N',1,1,'en'),(309,'2','Yahoo','N',2,2,'en'),(309,'3','Microsoft Search','N',3,3,'en'),(310,'1','television program','N',1,1,'en'),(310,'2','radio program','N',2,2,'en'),(310,'3','cinema program','N',3,3,'en'),(311,'1','Google','N',1,1,'en'),(311,'2','Yahoo','N',2,2,'en'),(311,'3','Microsoft Search','N',3,3,'en'),(312,'F1','Deannan Troi','N',0,0,'en'),(312,'F2','Wesley Crusher','N',0,1,'en'),(312,'F3','Jean-Luc Picard','N',0,2,'en'),(312,'F4','Seven of Nine','N',0,3,'en'),(313,'Q1','blue','N',0,0,'en'),(313,'Q2','red','N',0,1,'en'),(313,'Q3','green','N',0,2,'en'),(317,'Q1','blue','N',0,0,'en'),(317,'Q2','red','N',0,1,'en'),(317,'Q3','green','N',0,2,'en'),(318,'Q1','blue is the colour of the sky. the sky is very high. the sky is also very big','N',0,0,'en'),(318,'Q2','red is the colour of blood. blood is very useful. blood is a very nice color','N',0,1,'en'),(318,'Q3','green is the color of trees. I like trees. I especially like climbing them with a rope and harness.','N',0,2,'en'),(322,'R1','Red','N',0,0,'en'),(322,'R2','Green','N',0,1,'en'),(322,'R3','Blue','N',0,2,'en'),(325,'1','Apples','N',1,1,'en'),(325,'2','Oranges','N',2,2,'en'),(325,'3','Bananas','N',3,3,'en'),(326,'1','Apples','N',1,1,'en'),(326,'2','Oranges','N',2,2,'en'),(326,'3','Bananas','N',3,3,'en'),(328,'1','Apples','N',1,1,'en'),(328,'2','Oranges','N',2,2,'en'),(328,'3','Bananas','N',3,3,'en'),(329,'1','Apples','N',1,1,'en'),(329,'2','Oranges','N',2,2,'en'),(329,'3','Bananas','N',3,3,'en'),(332,'O1','Red','N',0,0,'en'),(332,'O2','Green','N',0,1,'en'),(332,'O3','Blue','N',0,2,'en'),(333,'L1',' Green','N',0,0,'en'),(333,'L2','Red','N',0,1,'en'),(333,'L3','Blue','N',0,2,'en'),(335,'EC1','Green','N',0,0,'en'),(335,'EC2','Red','N',0,1,'en'),(335,'EC3','Blue','N',0,2,'en'),(336,'P1','I am glad','N',0,0,'en'),(336,'P2','I don\'t care','N',0,1,'en'),(336,'P3','I am unhappy','N',0,2,'en'),(337,'M1','Yes','N',0,0,'en'),(337,'M2','No','N',0,1,'en'),(337,'M3','Maybe','N',0,2,'en'),(338,'8','Universität ohne Abschluss','N',8,9,'de'),(338,'7','Fachhochschule mit Abschluss','N',7,8,'de'),(338,'6','Fachhochschule ohne Abschluss','N',6,7,'de'),(338,'5','Berufsbildende Höhere Schule','N',5,6,'de'),(338,'4','Allgemeinbildende Höhere Schule','N',4,5,'de'),(338,'3','Lehre','N',3,4,'de'),(338,'2','Pflichtschule','N',2,3,'de'),(338,'1','kein Abschluss','N',1,2,'de'),(338,'9','Universität mit Abschluss','N',9,10,'de'); /*!40000 ALTER TABLE `lime_answers` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `lime_assessments` -- DROP TABLE IF EXISTS `lime_assessments`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `lime_assessments` ( `id` int(11) NOT NULL AUTO_INCREMENT, `sid` int(11) NOT NULL DEFAULT '0', `scope` varchar(5) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', `gid` int(11) NOT NULL DEFAULT '0', `name` text COLLATE utf8_unicode_ci NOT NULL, `minimum` varchar(50) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', `maximum` varchar(50) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', `message` text COLLATE utf8_unicode_ci NOT NULL, `language` varchar(20) COLLATE utf8_unicode_ci NOT NULL DEFAULT 'en', PRIMARY KEY (`id`,`language`), KEY `assessments_idx2` (`sid`), KEY `assessments_idx3` (`gid`) ) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `lime_assessments` -- LOCK TABLES `lime_assessments` WRITE; /*!40000 ALTER TABLE `lime_assessments` DISABLE KEYS */; /*!40000 ALTER TABLE `lime_assessments` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `lime_conditions` -- DROP TABLE IF EXISTS `lime_conditions`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `lime_conditions` ( `cid` int(11) NOT NULL AUTO_INCREMENT, `qid` int(11) NOT NULL DEFAULT '0', `scenario` int(11) NOT NULL DEFAULT '1', `cqid` int(11) NOT NULL DEFAULT '0', `cfieldname` varchar(50) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', `method` varchar(2) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', `value` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', PRIMARY KEY (`cid`), KEY `conditions_idx2` (`qid`), KEY `conditions_idx3` (`cqid`) ) ENGINE=MyISAM AUTO_INCREMENT=10 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `lime_conditions` -- LOCK TABLES `lime_conditions` WRITE; /*!40000 ALTER TABLE `lime_conditions` DISABLE KEYS */; INSERT INTO `lime_conditions` VALUES (8,271,1,268,'29975X76X268','==','3'),(7,270,1,268,'29975X76X268','==','2'),(6,269,1,268,'29975X76X268','==','1'),(5,267,1,265,'29975X74X265','==','80-'),(9,321,1,320,'29846X85X320','==','M'); /*!40000 ALTER TABLE `lime_conditions` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `lime_groups` -- DROP TABLE IF EXISTS `lime_groups`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `lime_groups` ( `gid` int(11) NOT NULL AUTO_INCREMENT, `sid` int(11) NOT NULL DEFAULT '0', `group_name` varchar(100) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', `group_order` int(11) NOT NULL DEFAULT '0', `description` text COLLATE utf8_unicode_ci, `language` varchar(20) COLLATE utf8_unicode_ci NOT NULL DEFAULT 'en', PRIMARY KEY (`gid`,`language`), KEY `groups_idx2` (`sid`) ) ENGINE=MyISAM AUTO_INCREMENT=88 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `lime_groups` -- LOCK TABLES `lime_groups` WRITE; /*!40000 ALTER TABLE `lime_groups` DISABLE KEYS */; INSERT INTO `lime_groups` VALUES (73,67268,'PERSÖNLICHE ANGABEN',0,'','de'),(72,67268,'9. ÖKONOMISCHE ZIELE',9,'','de'),(71,67268,'8. WIRKUNGEN BEIM UNTERNEHMEN',8,'','de'),(67,67268,'4. RESSOURCEN & PARTNER',4,'','de'),(65,67268,'2. MITARBEITER',2,'','de'),(74,29975,'Group 1',0,'','en'),(64,67268,'1. UNTERNEHMENSFÜHRUNG',1,'','de'),(70,67268,'7. WIRKUNGEN BEI KONSUMENTEN',7,'','de'),(69,67268,'6. WIRKUNGEN BEI MITARBEITERN',6,'','de'),(68,67268,'5. STRUKTUREN & PROZESSE',5,'','de'),(66,67268,'3. STRATEGIE',3,'','de'),(63,47876,'PERSÖNLICHE ANGABEN',0,'','de'),(62,47876,'9. ÖKONOMISCHE ZIELE',9,'','de'),(61,47876,'8. WIRKUNGEN BEIM UNTERNEHMEN',8,'','de'),(60,47876,'7. WIRKUNGEN BEI KONSUMENTEN',7,'','de'),(59,47876,'6. WIRKUNGEN BEI MITARBEITERN',6,'','de'),(58,47876,'5. STRUKTUREN & PROZESSE',5,'','de'),(57,47876,'4. RESSOURCEN & PARTNER',4,'','de'),(56,47876,'3. STRATEGIE',3,'','de'),(54,47876,'1. UNTERNEHMENSFÜHRUNG',1,'','de'),(55,47876,'2. MITARBEITER',2,'','de'),(75,29975,'Group 2',1,'','en'),(76,29975,'Group 3',2,'','en'),(77,31565,'group_name_hr',0,'description_hr','hr'),(77,31565,'group_name_nl',0,'description_nl','nl'),(77,31565,'group_name_en',0,'description_en','en'),(78,40,'Array Questions',0,'This is a group with the different array questions.','en'),(79,40,'Text Questions',4,'','en'),(80,40,'Mask Questions',1,'This is the group description.','en'),(81,40,'Single Choice Questions',3,'','en'),(82,40,'Multiple Choice Questions',2,'This group consist only of Multiple Choice questions.','en'),(83,29846,'Array Questions',0,'This is a group with the different array questions.','en'),(84,29846,'Text Questions',4,'','en'),(85,29846,'Mask Questions',1,'This is the group description.','en'),(86,29846,'Single Choice Questions',3,'','en'),(87,29846,'Multiple Choice Questions',2,'This group consist only of Multiple Choice questions.','en'); /*!40000 ALTER TABLE `lime_groups` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `lime_labels` -- DROP TABLE IF EXISTS `lime_labels`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `lime_labels` ( `lid` int(11) NOT NULL DEFAULT '0', `code` varchar(5) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', `title` text COLLATE utf8_unicode_ci, `sortorder` int(11) NOT NULL DEFAULT '0', `assessment_value` int(11) NOT NULL DEFAULT '0', `language` varchar(20) COLLATE utf8_unicode_ci NOT NULL DEFAULT 'en', PRIMARY KEY (`lid`,`sortorder`,`language`), KEY `ixcode` (`code`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `lime_labels` -- LOCK TABLES `lime_labels` WRITE; /*!40000 ALTER TABLE `lime_labels` DISABLE KEYS */; INSERT INTO `lime_labels` VALUES (1,'1','Burgenland',1,1,'de'),(1,'2','Kärnten',2,2,'de'),(1,'3','Niederösterreich',3,3,'de'),(1,'4','Oberösterreich',4,4,'de'),(1,'5','Salzburg',5,5,'de'),(1,'6','Steiermark',6,6,'de'),(1,'7','Tirol',7,7,'de'),(1,'8','Vorarlberg',8,8,'de'),(1,'9','Wien',9,9,'de'),(2,'3','trifft teilweise zu',3,3,'de'),(2,'4','trifft eher zu',2,4,'de'),(2,'1','trifft überhaupt nicht zu',4,1,'de'),(2,'5','trifft vollkommen zu',1,5,'de'),(2,'2','trifft eher nicht zu',5,2,'de'),(3,'1','Sehr gut',1,1,'de'),(3,'1','Sehr gut',1,1,'de-informal'),(3,'2','Gut',2,2,'de'),(3,'2','Gut',2,2,'de-informal'),(3,'3','Befriedigend',3,3,'de'),(3,'3','Befriedigend',3,3,'de-informal'),(3,'4','Ausreichend',4,4,'de'),(3,'4','Ausreichend',4,4,'de-informal'),(3,'5','Mangelhaft',5,5,'de'),(3,'5','Mangelhaft',5,5,'de-informal'),(3,'6','Ungenügend',6,6,'de'),(3,'6','Ungenügend',6,6,'de-informal'),(4,'1','kein Schulabschluss',1,1,'de'),(4,'2','Pflichtschulabschluss',2,2,'de'),(4,'3','Berufsschulabschluss',3,3,'de'),(4,'4','Berufsreife',4,4,'de'),(4,'5','Fach- oder Handelsschulabschluss',5,5,'de'),(4,'6','Matura',6,6,'de'),(4,'7','Fachhochschulabschluss',7,7,'de'),(4,'8','Hochschulabschluss',8,8,'de'),(22,'1','kein Abschluss',1,1,'de'),(5,'135','Oman',135,135,'de'),(5,'134','Österreich',134,134,'de'),(5,'133','Norwegen',133,133,'de'),(5,'132','Niue',132,132,'de'),(5,'131','Nigeria',131,131,'de'),(5,'130','Niger',130,130,'de'),(5,'129','Niederlande',129,129,'de'),(5,'128','Nicaragua',128,128,'de'),(5,'127','Neuseeland',127,127,'de'),(5,'126','Nepal',126,126,'de'),(5,'125','Nauru',125,125,'de'),(5,'124','Namibia',124,124,'de'),(5,'123','Myanmar',123,123,'de'),(5,'121','Montenegro',121,121,'de'),(5,'122','Mosambik',122,122,'de'),(5,'120','Mongolei',120,120,'de'),(5,'119','Monaco',119,119,'de'),(5,'118','Moldau (Republik Moldau)',118,118,'de'),(5,'117','Mikronesien',117,117,'de'),(5,'116','Mexiko',116,116,'de'),(5,'115','Mauritius',115,115,'de'),(5,'114','Mauretanien',114,114,'de'),(5,'113','Marshallinseln',113,113,'de'),(5,'112','Marokko',112,112,'de'),(5,'109','Malediven',109,109,'de'),(5,'110','Mali',110,110,'de'),(5,'111','Malta',111,111,'de'),(5,'108','Malaysia',108,108,'de'),(5,'107','Malawi',107,107,'de'),(5,'106','Madagaskar',106,106,'de'),(5,'105','Macau',105,105,'de'),(5,'104','Luxemburg',104,104,'de'),(5,'103','Litauen',103,103,'de'),(5,'102','Liechtenstein',102,102,'de'),(5,'101','Libyen / Libysch-Arabische Dschamahirija',101,101,'de'),(5,'100','Liberia',100,100,'de'),(5,'99','Libanon',99,99,'de'),(5,'98','Lettland',98,98,'de'),(5,'97','Lesotho',97,97,'de'),(5,'96','Laos',96,96,'de'),(5,'95','Kuwait',95,95,'de'),(5,'94','Kuba',94,94,'de'),(5,'93','Kroatien',93,93,'de'),(5,'92','Korea (Republik Korea, Südkorea)',92,92,'de'),(5,'91','Korea (Demokratische Volksrepublik, Nordkorea)',91,91,'de'),(5,'90','Kongo (Republik Kongo)',90,90,'de'),(5,'89','Kongo (Demokratische Republik Kongo)',89,89,'de'),(5,'88','Komoren',88,88,'de'),(5,'87','Kolumbien',87,87,'de'),(5,'86','Kiribati',86,86,'de'),(5,'85','Kirgisistan',85,85,'de'),(5,'84','Kenia',84,84,'de'),(5,'83','Katar',83,83,'de'),(5,'82','Kasachstan',82,82,'de'),(5,'81','Kap Verde',81,81,'de'),(5,'80','Kanada',80,80,'de'),(5,'79','Kamerun',79,79,'de'),(5,'78','Kambodscha',78,78,'de'),(5,'77','Kaiman-Inseln',77,77,'de'),(5,'75','Jemen',75,75,'de'),(5,'76','Jordanien',76,76,'de'),(5,'74','Japan',74,74,'de'),(5,'73','Jamaika',73,73,'de'),(5,'72','Italien',72,72,'de'),(5,'71','Israel',71,71,'de'),(5,'70','Island',70,70,'de'),(5,'68','Iran',68,68,'de'),(5,'69','Irland',69,69,'de'),(5,'67','Irak',67,67,'de'),(5,'66','Indonesien',66,66,'de'),(5,'65','Indien',65,65,'de'),(5,'64','Hongkong',64,64,'de'),(5,'63','Honduras',63,63,'de'),(5,'61','Haiti',61,61,'de'),(5,'62','Heiliger Stuhl / Vatikan',62,62,'de'),(5,'60','Guyana',60,60,'de'),(5,'59','Guinea-Bissau',59,59,'de'),(5,'58','Guinea',58,58,'de'),(5,'57','Guatemala',57,57,'de'),(5,'56','Großbritannien / Vereinigtes Königreich',56,56,'de'),(5,'54','Grenada',54,54,'de'),(5,'55','Griechenland',55,55,'de'),(5,'53','Ghana',53,53,'de'),(5,'52','Georgien',52,52,'de'),(5,'51','Gambia',51,51,'de'),(5,'50','Gabun',50,50,'de'),(5,'49','Frankreich',49,49,'de'),(5,'48','Finnland',48,48,'de'),(5,'47','Fidschi',47,47,'de'),(5,'45','Eritrea',45,45,'de'),(5,'46','Estland',46,46,'de'),(5,'44','El Salvador',44,44,'de'),(5,'43','ehemalige jugoslawische Republik Mazedonien',43,43,'de'),(5,'42','Ecuador',42,42,'de'),(5,'41','Dschibuti',41,41,'de'),(5,'39','Dominica',39,39,'de'),(5,'40','Dominikanische Republik',40,40,'de'),(5,'38','Deutschland',38,38,'de'),(5,'37','Dänemark',37,37,'de'),(5,'35','Costa Rica',35,35,'de'),(5,'36','Côte d\'Ivoire',36,36,'de'),(5,'34','Cookinseln',34,34,'de'),(5,'33','China',33,33,'de'),(5,'32','Chile',32,32,'de'),(5,'31','Burundi',31,31,'de'),(5,'30','Burkina Faso',30,30,'de'),(5,'29','Bulgarien',29,29,'de'),(5,'28','Brunei Darussalam',28,28,'de'),(5,'27','Britische Jungferninseln',27,27,'de'),(5,'26','Brasilien',26,26,'de'),(5,'25','Botsuana',25,25,'de'),(5,'24','Bosnien und Herzegowina',24,24,'de'),(5,'23','Bolivien',23,23,'de'),(5,'21','Benin',21,21,'de'),(5,'22','Bhutan',22,22,'de'),(5,'20','Belize',20,20,'de'),(5,'18','Belarus',18,18,'de'),(5,'19','Belgien',19,19,'de'),(5,'16','Bangladesch',16,16,'de'),(5,'17','Barbados',17,17,'de'),(5,'15','Bahrain',15,15,'de'),(5,'96','Laos',96,96,'de-informal'),(5,'97','Lesotho',97,97,'de-informal'),(5,'98','Lettland',98,98,'de-informal'),(5,'99','Libanon',99,99,'de-informal'),(5,'100','Liberia',100,100,'de-informal'),(5,'101','Libyen / Libysch-Arabische Dschamahirija',101,101,'de-informal'),(5,'102','Liechtenstein',102,102,'de-informal'),(5,'103','Litauen',103,103,'de-informal'),(5,'104','Luxemburg',104,104,'de-informal'),(5,'105','Macau',105,105,'de-informal'),(5,'106','Madagaskar',106,106,'de-informal'),(5,'107','Malawi',107,107,'de-informal'),(5,'108','Malaysia',108,108,'de-informal'),(5,'109','Malediven',109,109,'de-informal'),(5,'110','Mali',110,110,'de-informal'),(5,'111','Malta',111,111,'de-informal'),(5,'112','Marokko',112,112,'de-informal'),(5,'113','Marshallinseln',113,113,'de-informal'),(5,'114','Mauretanien',114,114,'de-informal'),(5,'115','Mauritius',115,115,'de-informal'),(5,'116','Mexiko',116,116,'de-informal'),(5,'117','Mikronesien',117,117,'de-informal'),(5,'118','Moldau (Republik Moldau)',118,118,'de-informal'),(5,'93','Kroatien',93,93,'de-informal'),(5,'14','Bahamas',14,14,'de'),(5,'13','Australien',13,13,'de'),(5,'12','Aserbaidschan',12,12,'de'),(5,'11','Armenien',11,11,'de'),(5,'9','Antigua und Barbuda',9,9,'de'),(5,'10','Argentinien',10,10,'de'),(5,'7','Andorra',7,7,'de'),(5,'8','Angola',8,8,'de'),(5,'6','Algerien',6,6,'de'),(5,'5','Albanien',5,5,'de'),(5,'3','Äthiopien',3,3,'de'),(5,'4','Afghanistan',4,4,'de'),(5,'2','Äquatorialguinea',2,2,'de'),(5,'1','Ägypten',1,1,'de'),(5,'201','Zentralafrikanische Republik',201,201,'de-informal'),(5,'200','Vietnam',200,200,'de-informal'),(5,'199','Vereinigte Arabische Emirate',199,199,'de-informal'),(5,'198','Venezuela',198,198,'de-informal'),(5,'197','Vanuatu',197,197,'de-informal'),(5,'196','Usbekistan',196,196,'de-informal'),(5,'195','USA / Vereinigte Staaten',195,195,'de-informal'),(5,'194','Uruguay',194,194,'de-informal'),(5,'193','Ungarn',193,193,'de-informal'),(5,'191','Uganda',191,191,'de-informal'),(5,'192','Ukraine',192,192,'de-informal'),(5,'190','Tuvalu',190,190,'de-informal'),(5,'189','Turks- und Caicosinseln',189,189,'de-informal'),(5,'188','Turkmenistan',188,188,'de-informal'),(5,'187','Tunesien',187,187,'de-informal'),(5,'186','Türkei',186,186,'de-informal'),(5,'185','Tschechische Republik',185,185,'de-informal'),(5,'183','Trinidad und Tobago',183,183,'de-informal'),(5,'184','Tschad',184,184,'de-informal'),(5,'182','Tonga',182,182,'de-informal'),(5,'180','Timor-Leste',180,180,'de-informal'),(5,'181','Togo',181,181,'de-informal'),(5,'179','Thailand',179,179,'de-informal'),(5,'178','Tansania',178,178,'de-informal'),(5,'177','Taiwan',177,177,'de-informal'),(5,'176','Tadschikistan',176,176,'de-informal'),(5,'175','São Tomé und Príncipe',175,175,'de-informal'),(5,'174','Syrien',174,174,'de-informal'),(5,'173','Swasiland',173,173,'de-informal'),(5,'172','Suriname',172,172,'de-informal'),(5,'171','Südafrika',171,171,'de-informal'),(5,'170','Sudan',170,170,'de-informal'),(5,'169','St. Vincent und die Grenadinen',169,169,'de-informal'),(5,'168','St. Lucia',168,168,'de-informal'),(5,'167','St. Kitts und Nevis',167,167,'de-informal'),(5,'166','Sri Lanka',166,166,'de-informal'),(5,'165','Spanien',165,165,'de-informal'),(5,'164','Somalia',164,164,'de-informal'),(5,'163','Slowenien',163,163,'de-informal'),(5,'162','Slowakei',162,162,'de-informal'),(5,'161','Singapur',161,161,'de-informal'),(5,'160','Simbabwe',160,160,'de-informal'),(5,'159','Sierra Leone',159,159,'de-informal'),(5,'158','Seychellen',158,158,'de-informal'),(5,'157','Serbien',157,157,'de-informal'),(5,'156','Senegal',156,156,'de-informal'),(5,'155','Schweiz',155,155,'de-informal'),(5,'154','Schweden',154,154,'de-informal'),(5,'153','Saudi-Arabien',153,153,'de-informal'),(5,'152','San Marino',152,152,'de-informal'),(5,'151','Samoa',151,151,'de-informal'),(5,'149','Salomonen',149,149,'de-informal'),(5,'150','Sambia',150,150,'de-informal'),(5,'148','Russische Föderation',148,148,'de-informal'),(5,'147','Rumänien',147,147,'de-informal'),(5,'146','Ruanda',146,146,'de-informal'),(5,'145','Portugal',145,145,'de-informal'),(5,'144','Polen',144,144,'de-informal'),(5,'143','Philippinen',143,143,'de-informal'),(5,'81','Kap Verde',81,81,'de-informal'),(5,'82','Kasachstan',82,82,'de-informal'),(5,'83','Katar',83,83,'de-informal'),(5,'84','Kenia',84,84,'de-informal'),(5,'85','Kirgisistan',85,85,'de-informal'),(5,'86','Kiribati',86,86,'de-informal'),(5,'87','Kolumbien',87,87,'de-informal'),(5,'88','Komoren',88,88,'de-informal'),(5,'89','Kongo (Demokratische Republik Kongo)',89,89,'de-informal'),(5,'90','Kongo (Republik Kongo)',90,90,'de-informal'),(5,'91','Korea (Demokratische Volksrepublik, Nordkorea)',91,91,'de-informal'),(5,'142','Peru',142,142,'de-informal'),(5,'141','Paraguay',141,141,'de-informal'),(5,'140','Papua-Neuguinea',140,140,'de-informal'),(5,'139','Panama',139,139,'de-informal'),(5,'138','Palau',138,138,'de-informal'),(5,'137','Palästinensische Gebiete',137,137,'de-informal'),(5,'136','Pakistan',136,136,'de-informal'),(5,'135','Oman',135,135,'de-informal'),(5,'72','Italien',72,72,'de-informal'),(5,'73','Jamaika',73,73,'de-informal'),(5,'74','Japan',74,74,'de-informal'),(5,'75','Jemen',75,75,'de-informal'),(5,'76','Jordanien',76,76,'de-informal'),(5,'77','Kaiman-Inseln',77,77,'de-informal'),(5,'78','Kambodscha',78,78,'de-informal'),(5,'79','Kamerun',79,79,'de-informal'),(5,'70','Island',70,70,'de-informal'),(5,'134','Österreich',134,134,'de-informal'),(5,'133','Norwegen',133,133,'de-informal'),(5,'132','Niue',132,132,'de-informal'),(5,'131','Nigeria',131,131,'de-informal'),(5,'130','Niger',130,130,'de-informal'),(5,'129','Niederlande',129,129,'de-informal'),(5,'128','Nicaragua',128,128,'de-informal'),(5,'127','Neuseeland',127,127,'de-informal'),(5,'126','Nepal',126,126,'de-informal'),(5,'125','Nauru',125,125,'de-informal'),(5,'124','Namibia',124,124,'de-informal'),(5,'123','Myanmar',123,123,'de-informal'),(5,'122','Mosambik',122,122,'de-informal'),(5,'120','Mongolei',120,120,'de-informal'),(5,'121','Montenegro',121,121,'de-informal'),(5,'119','Monaco',119,119,'de-informal'),(5,'95','Kuwait',95,95,'de-informal'),(5,'94','Kuba',94,94,'de-informal'),(5,'92','Korea (Republik Korea, Südkorea)',92,92,'de-informal'),(5,'80','Kanada',80,80,'de-informal'),(5,'71','Israel',71,71,'de-informal'),(5,'69','Irland',69,69,'de-informal'),(5,'68','Iran',68,68,'de-informal'),(5,'67','Irak',67,67,'de-informal'),(5,'66','Indonesien',66,66,'de-informal'),(5,'65','Indien',65,65,'de-informal'),(5,'64','Hongkong',64,64,'de-informal'),(5,'63','Honduras',63,63,'de-informal'),(5,'62','Heiliger Stuhl / Vatikan',62,62,'de-informal'),(5,'61','Haiti',61,61,'de-informal'),(5,'60','Guyana',60,60,'de-informal'),(5,'59','Guinea-Bissau',59,59,'de-informal'),(5,'58','Guinea',58,58,'de-informal'),(5,'57','Guatemala',57,57,'de-informal'),(5,'56','Großbritannien / Vereinigtes Königreich',56,56,'de-informal'),(5,'55','Griechenland',55,55,'de-informal'),(5,'54','Grenada',54,54,'de-informal'),(5,'53','Ghana',53,53,'de-informal'),(5,'52','Georgien',52,52,'de-informal'),(5,'51','Gambia',51,51,'de-informal'),(5,'50','Gabun',50,50,'de-informal'),(5,'49','Frankreich',49,49,'de-informal'),(5,'48','Finnland',48,48,'de-informal'),(5,'47','Fidschi',47,47,'de-informal'),(5,'46','Estland',46,46,'de-informal'),(5,'45','Eritrea',45,45,'de-informal'),(5,'44','El Salvador',44,44,'de-informal'),(5,'43','ehemalige jugoslawische Republik Mazedonien',43,43,'de-informal'),(5,'42','Ecuador',42,42,'de-informal'),(5,'41','Dschibuti',41,41,'de-informal'),(5,'40','Dominikanische Republik',40,40,'de-informal'),(5,'39','Dominica',39,39,'de-informal'),(5,'38','Deutschland',38,38,'de-informal'),(5,'37','Dänemark',37,37,'de-informal'),(5,'36','Côte d\'Ivoire',36,36,'de-informal'),(5,'35','Costa Rica',35,35,'de-informal'),(5,'34','Cookinseln',34,34,'de-informal'),(5,'33','China',33,33,'de-informal'),(5,'32','Chile',32,32,'de-informal'),(5,'31','Burundi',31,31,'de-informal'),(5,'30','Burkina Faso',30,30,'de-informal'),(5,'29','Bulgarien',29,29,'de-informal'),(5,'28','Brunei Darussalam',28,28,'de-informal'),(5,'27','Britische Jungferninseln',27,27,'de-informal'),(5,'26','Brasilien',26,26,'de-informal'),(5,'25','Botsuana',25,25,'de-informal'),(5,'24','Bosnien und Herzegowina',24,24,'de-informal'),(5,'23','Bolivien',23,23,'de-informal'),(5,'22','Bhutan',22,22,'de-informal'),(5,'21','Benin',21,21,'de-informal'),(5,'20','Belize',20,20,'de-informal'),(5,'19','Belgien',19,19,'de-informal'),(5,'18','Belarus',18,18,'de-informal'),(5,'17','Barbados',17,17,'de-informal'),(5,'16','Bangladesch',16,16,'de-informal'),(5,'15','Bahrain',15,15,'de-informal'),(5,'14','Bahamas',14,14,'de-informal'),(5,'13','Australien',13,13,'de-informal'),(5,'12','Aserbaidschan',12,12,'de-informal'),(5,'11','Armenien',11,11,'de-informal'),(5,'10','Argentinien',10,10,'de-informal'),(5,'9','Antigua und Barbuda',9,9,'de-informal'),(5,'8','Angola',8,8,'de-informal'),(5,'7','Andorra',7,7,'de-informal'),(5,'6','Algerien',6,6,'de-informal'),(5,'5','Albanien',5,5,'de-informal'),(5,'4','Afghanistan',4,4,'de-informal'),(5,'3','Äthiopien',3,3,'de-informal'),(5,'2','Äquatorialguinea',2,2,'de-informal'),(5,'1','Ägypten',1,1,'de-informal'),(5,'136','Pakistan',136,136,'de'),(5,'137','Palästinensische Gebiete',137,137,'de'),(5,'138','Palau',138,138,'de'),(5,'139','Panama',139,139,'de'),(5,'140','Papua-Neuguinea',140,140,'de'),(5,'141','Paraguay',141,141,'de'),(5,'142','Peru',142,142,'de'),(5,'143','Philippinen',143,143,'de'),(5,'144','Polen',144,144,'de'),(5,'145','Portugal',145,145,'de'),(5,'146','Ruanda',146,146,'de'),(5,'147','Rumänien',147,147,'de'),(5,'148','Russische Föderation',148,148,'de'),(5,'149','Salomonen',149,149,'de'),(5,'150','Sambia',150,150,'de'),(5,'151','Samoa',151,151,'de'),(5,'152','San Marino',152,152,'de'),(5,'153','Saudi-Arabien',153,153,'de'),(5,'154','Schweden',154,154,'de'),(5,'155','Schweiz',155,155,'de'),(5,'156','Senegal',156,156,'de'),(5,'157','Serbien',157,157,'de'),(5,'158','Seychellen',158,158,'de'),(5,'159','Sierra Leone',159,159,'de'),(5,'160','Simbabwe',160,160,'de'),(5,'161','Singapur',161,161,'de'),(5,'162','Slowakei',162,162,'de'),(5,'163','Slowenien',163,163,'de'),(5,'164','Somalia',164,164,'de'),(5,'165','Spanien',165,165,'de'),(5,'166','Sri Lanka',166,166,'de'),(5,'167','St. Kitts und Nevis',167,167,'de'),(5,'168','St. Lucia',168,168,'de'),(5,'169','St. Vincent und die Grenadinen',169,169,'de'),(5,'170','Sudan',170,170,'de'),(5,'171','Südafrika',171,171,'de'),(5,'172','Suriname',172,172,'de'),(5,'173','Swasiland',173,173,'de'),(5,'174','Syrien',174,174,'de'),(5,'175','São Tomé und Príncipe',175,175,'de'),(5,'176','Tadschikistan',176,176,'de'),(5,'177','Taiwan',177,177,'de'),(5,'178','Tansania',178,178,'de'),(5,'179','Thailand',179,179,'de'),(5,'180','Timor-Leste',180,180,'de'),(5,'181','Togo',181,181,'de'),(5,'182','Tonga',182,182,'de'),(5,'183','Trinidad und Tobago',183,183,'de'),(5,'184','Tschad',184,184,'de'),(5,'185','Tschechische Republik',185,185,'de'),(5,'186','Türkei',186,186,'de'),(5,'187','Tunesien',187,187,'de'),(5,'188','Turkmenistan',188,188,'de'),(5,'189','Turks- und Caicosinseln',189,189,'de'),(5,'190','Tuvalu',190,190,'de'),(5,'191','Uganda',191,191,'de'),(5,'192','Ukraine',192,192,'de'),(5,'193','Ungarn',193,193,'de'),(5,'194','Uruguay',194,194,'de'),(5,'195','USA / Vereinigte Staaten',195,195,'de'),(5,'196','Usbekistan',196,196,'de'),(5,'197','Vanuatu',197,197,'de'),(5,'198','Venezuela',198,198,'de'),(5,'199','Vereinigte Arabische Emirate',199,199,'de'),(5,'200','Vietnam',200,200,'de'),(6,'1','weniger als 1 Stunde',1,1,'de'),(6,'2','1 bis 2 Stunden täglich',2,2,'de'),(6,'3','3 bis 6 Stunden täglich',3,3,'de'),(6,'4','6 bis 12 Stunden täglich',4,4,'de'),(6,'5','mehr als 12 Stunden',5,5,'de'),(7,'1','1 Tag',1,1,'de'),(7,'2','2 Tage',2,2,'de'),(7,'3','3 Tage',3,3,'de'),(7,'4','4 Tage',4,4,'de'),(7,'5','5 Tage',5,5,'de'),(7,'6','6 Tage',6,6,'de'),(7,'7','7 Tage',7,7,'de'),(7,'0','seltener',8,0,'de'),(8,'01','Agree strongly',1,1,'en'),(8,'02','Agree somewhat',2,2,'en'),(8,'03','Neither agree nor disagree',3,3,'en'),(8,'04','Disagree somewhat',4,4,'en'),(8,'05','Disagree strongly',5,5,'en'),(9,'1','trifft überhaupt nicht zu',1,1,'de'),(9,'2','trifft eher nicht zu',2,2,'de'),(9,'3','trifft eher zu',3,3,'de'),(9,'4','trifft voll und ganz zu',4,4,'de'),(10,'1','trifft überhaupt nicht zu',1,1,'de'),(10,'2','trifft weitgehend nicht zu',2,2,'de'),(10,'3','trifft eher nicht zu',3,3,'de'),(10,'4','trifft eher zu',4,4,'de'),(10,'5','trifft weitgehend zu',5,5,'de'),(10,'6','trifft voll und ganz zu',6,6,'de'),(14,'TL4','3',3,0,'en'),(10,'1',NULL,1,1,'deinformal'),(10,'2',NULL,2,2,'deinformal'),(10,'3',NULL,3,3,'deinformal'),(10,'4',NULL,4,4,'deinformal'),(10,'5',NULL,5,5,'deinformal'),(10,'6',NULL,6,6,'deinformal'),(14,'TL5','2',4,0,'en'),(14,'TL6','1 - Dont like it at all',5,0,'en'),(12,'6','trifft voll und ganz zu',6,6,'de'),(12,'5','',5,5,'de'),(12,'6','
trifft voll und ganz zu
',6,6,'de-informal'),(12,'4','',4,4,'de'),(12,'5','',5,5,'de-informal'),(12,'3','',3,3,'de'),(12,'4','',4,4,'de-informal'),(12,'1','trifft überhaupt nicht zu',1,1,'de'),(12,'2','',2,2,'de-informal'),(12,'2','',2,2,'de'),(12,'1','
trifft überhaupt nicht zu
',1,1,'de-informal'),(12,'3','',3,3,'de-informal'),(14,'TL3','4',2,0,'en'),(14,'TL2','5',1,0,'en'),(14,'TL1','6 - Like it very much',0,0,'en'),(15,'1','-2',1,1,'en'),(15,'2','-1',2,2,'en'),(15,'3','0',3,3,'en'),(15,'4','1',4,4,'en'),(15,'5','2',5,5,'en'),(16,'1','1',1,1,'en'),(16,'2','2',2,2,'en'),(16,'3','3',3,3,'en'),(16,'4','4',4,4,'en'),(16,'5','5',5,5,'en'),(15,'2',NULL,2,2,'de-informal'),(15,'1',NULL,1,1,'de-informal'),(20,'SPD','Speed',1,0,'en'),(20,'ACC','Accuracy',3,0,'en'),(20,'DSN','Design',2,0,'en'),(15,'3',NULL,3,3,'de-informal'),(15,'4',NULL,4,4,'de-informal'),(15,'5',NULL,5,5,'de-informal'),(15,'1',NULL,1,1,'de'),(15,'2',NULL,2,2,'de'),(15,'3',NULL,3,3,'de'),(15,'4',NULL,4,4,'de'),(15,'5',NULL,5,5,'de'),(16,'1',NULL,1,1,'de-informal'),(16,'2',NULL,2,2,'de-informal'),(16,'3',NULL,3,3,'de-informal'),(16,'4',NULL,4,4,'de-informal'),(16,'5',NULL,5,5,'de-informal'),(16,'1',NULL,1,1,'de'),(16,'2',NULL,2,2,'de'),(16,'3',NULL,3,3,'de'),(16,'4',NULL,4,4,'de'),(16,'5',NULL,5,5,'de'),(21,'1','15-24',1,1,'en'),(21,'2','25-34',2,2,'en'),(21,'3','35-44',3,3,'en'),(21,'4','45-54',4,4,'en'),(21,'5','55-64',5,5,'en'),(21,'6','65-74',6,6,'en'),(21,'1','15-24',1,1,'de-informal'),(21,'2','25-34',2,2,'de-informal'),(21,'3','35-44',3,3,'de-informal'),(21,'4','45-54',4,4,'de-informal'),(21,'5','55-64',5,5,'de-informal'),(21,'6','65-74',6,6,'de-informal'),(21,'1','15-24',1,1,'de'),(21,'2','25-34',2,2,'de'),(21,'3','35-44',3,3,'de'),(21,'4','45-54',4,4,'de'),(21,'5','55-64',5,5,'de'),(21,'6','65-74',6,6,'de'),(22,'2','noch Schüler',2,2,'de'),(22,'3','Volksschule / Hauptschule',3,3,'de'),(22,'4','Mittlere Reife / POS',4,4,'de'),(22,'5','Fachschulabschluss',5,5,'de'),(22,'6','Fachabitur / Fachhochschulreife',6,6,'de'),(22,'7','Allgemeine Hochschulreife / Abitur / EOS',7,7,'de'),(22,'8','Hochschulabschluss',8,8,'de'),(22,'9','Promotion',9,9,'de'),(22,'10','Sonstiges',10,10,'de'); /*!40000 ALTER TABLE `lime_labels` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `lime_labelsets` -- DROP TABLE IF EXISTS `lime_labelsets`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `lime_labelsets` ( `lid` int(11) NOT NULL AUTO_INCREMENT, `label_name` varchar(100) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', `languages` varchar(200) COLLATE utf8_unicode_ci DEFAULT 'en', PRIMARY KEY (`lid`) ) ENGINE=MyISAM AUTO_INCREMENT=23 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `lime_labelsets` -- LOCK TABLES `lime_labelsets` WRITE; /*!40000 ALTER TABLE `lime_labelsets` DISABLE KEYS */; INSERT INTO `lime_labelsets` VALUES (1,'Bundesländer AT','de'),(2,'5er Skala RH','de de_informal'),(3,'Schulnoten 1-6','de de-informal'),(4,'Schulabschlüsse','de'),(5,'Länder','de-informal de'),(6,'Stunden pro Tag_Kategorien','de'),(7,'Tage pro Woche (1-7)','de'),(8,'Feelings','en'),(9,'4er Skala MAM','de de_informal'),(10,'6er Skala MAM','de deinformal'),(12,'6er Entscheidungsleiste MAM','de-informal de'),(14,'Test Labelset','en'),(15,'-2_to_+2','de-informal de en'),(16,'1_to_5','de-informal de en'),(20,'Search Engine Criteria','en'),(21,'Array - Age Range','de-informal de en'),(22,'Bildungsgrad_Schulabschluss','de'); /*!40000 ALTER TABLE `lime_labelsets` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `lime_old_survey_47876_20090602225720` -- DROP TABLE IF EXISTS `lime_old_survey_47876_20090602225720`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `lime_old_survey_47876_20090602225720` ( `id` int(11) NOT NULL AUTO_INCREMENT, `submitdate` datetime DEFAULT NULL, `startlanguage` varchar(20) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', `token` varchar(36) COLLATE utf8_unicode_ci DEFAULT NULL, `datestamp` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `startdate` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `47876X63X224` double DEFAULT NULL, `47876X63X225` char(1) COLLATE utf8_unicode_ci DEFAULT NULL, `47876X63X226` text COLLATE utf8_unicode_ci, `47876X54X191` char(1) COLLATE utf8_unicode_ci DEFAULT NULL, `47876X54X192` char(1) COLLATE utf8_unicode_ci DEFAULT NULL, `47876X55X193` char(1) COLLATE utf8_unicode_ci DEFAULT NULL, `47876X55X194` char(1) COLLATE utf8_unicode_ci DEFAULT NULL, `47876X55X195` char(1) COLLATE utf8_unicode_ci DEFAULT NULL, `47876X56X196` char(1) COLLATE utf8_unicode_ci DEFAULT NULL, `47876X56X197` char(1) COLLATE utf8_unicode_ci DEFAULT NULL, `47876X56X198` char(1) COLLATE utf8_unicode_ci DEFAULT NULL, `47876X56X199` char(1) COLLATE utf8_unicode_ci DEFAULT NULL, `47876X56X200` char(1) COLLATE utf8_unicode_ci DEFAULT NULL, `47876X56X201` char(1) COLLATE utf8_unicode_ci DEFAULT NULL, `47876X56X202` char(1) COLLATE utf8_unicode_ci DEFAULT NULL, `47876X57X203` char(1) COLLATE utf8_unicode_ci DEFAULT NULL, `47876X57X204` char(1) COLLATE utf8_unicode_ci DEFAULT NULL, `47876X57X205` char(1) COLLATE utf8_unicode_ci DEFAULT NULL, `47876X57X206` char(1) COLLATE utf8_unicode_ci DEFAULT NULL, `47876X58X207` char(1) COLLATE utf8_unicode_ci DEFAULT NULL, `47876X58X208` char(1) COLLATE utf8_unicode_ci DEFAULT NULL, `47876X58X209` char(1) COLLATE utf8_unicode_ci DEFAULT NULL, `47876X58X210` char(1) COLLATE utf8_unicode_ci DEFAULT NULL, `47876X58X211` char(1) COLLATE utf8_unicode_ci DEFAULT NULL, `47876X58X212` char(1) COLLATE utf8_unicode_ci DEFAULT NULL, `47876X58X213` char(1) COLLATE utf8_unicode_ci DEFAULT NULL, `47876X59X214` char(1) COLLATE utf8_unicode_ci DEFAULT NULL, `47876X59X215` char(1) COLLATE utf8_unicode_ci DEFAULT NULL, `47876X59X216` char(1) COLLATE utf8_unicode_ci DEFAULT NULL, `47876X60X217` char(1) COLLATE utf8_unicode_ci DEFAULT NULL, `47876X60X218` char(1) COLLATE utf8_unicode_ci DEFAULT NULL, `47876X60X219` char(1) COLLATE utf8_unicode_ci DEFAULT NULL, `47876X60X220` char(1) COLLATE utf8_unicode_ci DEFAULT NULL, `47876X61X221` char(1) COLLATE utf8_unicode_ci DEFAULT NULL, `47876X61X222` char(1) COLLATE utf8_unicode_ci DEFAULT NULL, `47876X62X223` char(1) COLLATE utf8_unicode_ci DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `lime_old_survey_47876_20090602225720` -- LOCK TABLES `lime_old_survey_47876_20090602225720` WRITE; /*!40000 ALTER TABLE `lime_old_survey_47876_20090602225720` DISABLE KEYS */; INSERT INTO `lime_old_survey_47876_20090602225720` VALUES (1,'2009-05-25 20:35:30','de','','2009-05-25 20:35:30','2009-05-25 20:29:14',33,'F','CRM Consulting','4','3','2','1','3','5','3','2','4','2','4','5','4','3','4','3','4','4','4','4','4','4','4','1','3','4','3','4','4','5','5','3','5'),(2,'2009-05-25 20:44:57','de','','2009-05-25 20:44:57','2009-05-25 20:43:58',85,'M','test','5','5','5','4','3','2','2','2','2','2','3','3','3','3','4','4','5','5','5','2','2','2','2','2','2','2','2','2','3','4','4','4','4'); /*!40000 ALTER TABLE `lime_old_survey_47876_20090602225720` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `lime_question_attributes` -- DROP TABLE IF EXISTS `lime_question_attributes`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `lime_question_attributes` ( `qaid` int(11) NOT NULL AUTO_INCREMENT, `qid` int(11) NOT NULL DEFAULT '0', `attribute` varchar(50) COLLATE utf8_unicode_ci DEFAULT NULL, `value` varchar(20) COLLATE utf8_unicode_ci DEFAULT NULL, PRIMARY KEY (`qaid`), KEY `question_attributes_idx2` (`qid`) ) ENGINE=MyISAM AUTO_INCREMENT=56 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `lime_question_attributes` -- LOCK TABLES `lime_question_attributes` WRITE; /*!40000 ALTER TABLE `lime_question_attributes` DISABLE KEYS */; INSERT INTO `lime_question_attributes` VALUES (27,269,'random_order','1'),(26,268,'random_order','1'),(25,268,'display_columns','3'),(24,264,'maximum_chars','3'),(19,224,'maximum_chars','2'),(18,224,'suffix','Jahre'),(28,270,'random_order','1'),(29,271,'random_order','1'),(30,281,'answer_width','50'),(31,281,'dualscale_headerA','satisfaction'),(32,281,'dualscale_headerB','importance'),(33,307,'answer_width','50'),(34,307,'dualscale_headerA','satisfaction'),(35,307,'dualscale_headerB','importance'),(36,308,'multiflexible_max','20'),(37,308,'multiflexible_step','2'),(38,308,'multiflexible_min','10'),(39,310,'answer_width','50'),(40,326,'equals_num_value','10'),(41,326,'slider_layout','1'),(42,327,'dropdown_dates','1'),(43,328,'equals_num_value','10'),(44,310,'dualscale_headerA','satisfaction'),(45,310,'dualscale_headerB','importance'),(46,310,'use_dropdown','true'),(47,311,'multiflexible_max','20'),(48,311,'multiflexible_step','2'),(49,311,'multiflexible_min','10'),(50,311,'multiflexible_checkbox','1'),(51,312,'answer_width','50'),(52,329,'prefix','prefix'),(53,317,'suffix','suffix'),(54,317,'prefix','prefix'),(55,329,'suffix','suffix'); /*!40000 ALTER TABLE `lime_question_attributes` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `lime_questions` -- DROP TABLE IF EXISTS `lime_questions`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `lime_questions` ( `qid` int(11) NOT NULL AUTO_INCREMENT, `sid` int(11) NOT NULL DEFAULT '0', `gid` int(11) NOT NULL DEFAULT '0', `type` char(1) COLLATE utf8_unicode_ci NOT NULL DEFAULT 'T', `title` varchar(20) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', `question` text COLLATE utf8_unicode_ci NOT NULL, `preg` text COLLATE utf8_unicode_ci, `help` text COLLATE utf8_unicode_ci, `other` char(1) COLLATE utf8_unicode_ci NOT NULL DEFAULT 'N', `mandatory` char(1) COLLATE utf8_unicode_ci DEFAULT NULL, `lid` int(11) NOT NULL DEFAULT '0', `lid1` int(11) NOT NULL DEFAULT '0', `question_order` int(11) NOT NULL DEFAULT '0', `language` varchar(20) COLLATE utf8_unicode_ci NOT NULL DEFAULT 'en', PRIMARY KEY (`qid`,`language`), KEY `questions_idx2` (`sid`), KEY `questions_idx3` (`gid`), KEY `questions_idx4` (`type`) ) ENGINE=MyISAM AUTO_INCREMENT=339 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `lime_questions` -- LOCK TABLES `lime_questions` WRITE; /*!40000 ALTER TABLE `lime_questions` DISABLE KEYS */; INSERT INTO `lime_questions` VALUES (250,67268,69,'Z','6a','Frage 6.1
\r\n
\r\nDie Mitarbeiter sind motiviert und identifizieren sich mit dem Unternehmen.
','','Bitte schätzen Sie anhand der angegebenen Antwort-Optionen ein, wie sehr die untenstehende Aussage auf Ihr Unternehmen zutrifft:','N','Y',10,0,0,'de'),(251,67268,69,'Z','6b','Frage 6.2
\r\n
\r\nDie interne Kommunikation vollzieht sich in einem entspannten und offenen Klima.
','','Bitte schätzen Sie anhand der angegebenen Antwort-Optionen ein, wie sehr die untenstehende Aussage auf Ihr Unternehmen zutrifft:','N','Y',10,0,1,'de'),(252,67268,69,'Z','6c','Frage 6.3
\r\n
\r\nMitarbeiter können ihre Meinungen und Wünsche äußern und diese werden berücksichtigt.
','','Bitte schätzen Sie anhand der angegebenen Antwort-Optionen ein, wie sehr die untenstehende Aussage auf Ihr Unternehmen zutrifft:','N','Y',10,0,2,'de'),(253,67268,70,'Z','7a','Frage 7.1
\r\n
\r\nDas Kaufverhalten der Kunden ist konstant bis steigend.
','','Bitte schätzen Sie anhand der angegebenen Antwort-Optionen ein, wie sehr die untenstehende Aussage auf Ihr Unternehmen zutrifft:','N','Y',10,0,0,'de'),(254,67268,70,'Z','7b','Frage 7.2
\r\n
\r\nDie Kunden nutzen die unterschiedlichen Feedback-Möglichkeiten.
','','Bitte schätzen Sie anhand der angegebenen Antwort-Optionen ein, wie sehr die untenstehende Aussage auf Ihr Unternehmen zutrifft:','N','Y',10,0,1,'de'),(255,67268,70,'Z','7c','Frage 7.3
\r\n
\r\nDas Kunden-Feedback hat Einfluss auf die Produkte des Unternehmens.
','','Bitte schätzen Sie anhand der angegebenen Antwort-Optionen ein, wie sehr die untenstehende Aussage auf Ihr Unternehmen zutrifft:','N','Y',10,0,2,'de'),(256,67268,70,'Z','7d','Frage 7.4
\r\n
\r\nKunden schätzen die Glaubwürdigkeit, Kompetenz und Unabhängigkeit des Unternehmens bzw. seiner Produkte.
','','Bitte schätzen Sie anhand der angegebenen Antwort-Optionen ein, wie sehr die untenstehende Aussage auf Ihr Unternehmen zutrifft:','N','Y',10,0,3,'de'),(257,67268,71,'Z','8a','Frage 8.1
\r\n
\r\nDas Unternehmen und seine Produkte haben den Ruf, in ihrem Wirkungsbereich kompetent und glaubwürdig zu sein.
','','Bitte schätzen Sie anhand der angegebenen Antwort-Optionen ein, wie sehr die untenstehende Aussage auf Ihr Unternehmen zutrifft:','N','Y',10,0,0,'de'),(258,67268,71,'Z','8b','Frage 8.2
\r\n
\r\nImage und Glaubwürdigkeit stärken die herausragende Marktposition des Unternehmens und seiner Produkte in deren Wirkungsumfeld.
','','Bitte schätzen Sie anhand der angegebenen Antwort-Optionen ein, wie sehr die untenstehende Aussage auf Ihr Unternehmen zutrifft:','N','Y',10,0,1,'de'),(259,67268,72,'Z','9a','Frage 9.1
\r\n
\r\nDie Umsatzzahlen des Unternehmens sind konstant bis steigend.
','','Bitte schätzen Sie anhand der angegebenen Antwort-Optionen ein, wie sehr die untenstehende Aussage auf Ihr Unternehmen zutrifft:','N','Y',10,0,0,'de'),(260,67268,73,'W','0a','Bitte geben Sie Ihre Altersklasse an:','','','N','Y',21,0,0,'de'),(261,67268,73,'G','0b','Bitte geben Sie Ihr Geschlecht an:','','','N','Y',0,0,1,'de'),(262,67268,73,'S','0c','Bitte geben Sie den Unternehmensbereich an, in dem Sie tätig sind:\r\n
 
\r\n
 
\r\n
 
','','Sollten Sie diese Information nicht preisgeben wollen, tragen Sie bitte "keine Angabe" ein.\r\n
 
\r\n
 
\r\n
 
','N','Y',0,0,2,'de'),(249,67268,68,'Z','5g','Frage 5.7
\r\n
\r\nFür die interne Kommunikation stehen institutionalisierte Prozesse und Verfahren zur Verfügung.
','','Bitte schätzen Sie anhand der angegebenen Antwort-Optionen ein, wie sehr die untenstehende Aussage auf Ihr Unternehmen zutrifft:','N','Y',10,0,6,'de'),(248,67268,68,'Z','5f','Frage 5.6
\r\n
\r\nExternen Kommunikationspartnern wird die Möglichkeit für Feedback gegeben, das im Unternehmen gesammelt, verarbeitet und berücksichtigt wird.
','','Bitte schätzen Sie anhand der angegebenen Antwort-Optionen ein, wie sehr die untenstehende Aussage auf Ihr Unternehmen zutrifft:','N','Y',10,0,5,'de'),(247,67268,68,'Z','5e','Frage 5.5
\r\n
\r\nDie externe Kommunikation erfolgt zielgruppengerecht unter Verwendung unterschiedlicher geeigneter Kommunikationskanäle und -mittel.
','','Bitte schätzen Sie anhand der angegebenen Antwort-Optionen ein, wie sehr die untenstehende Aussage auf Ihr Unternehmen zutrifft:','N','Y',10,0,4,'de'),(244,67268,68,'Z','5b','Frage 5.2
\r\n
\r\nEs gibt einen übergeordneten Kommunikationsverantwortlichen im Unternehmen.
','','Bitte schätzen Sie anhand der angegebenen Antwort-Optionen ein, wie sehr die untenstehende Aussage auf Ihr Unternehmen zutrifft:','N','Y',10,0,1,'de'),(245,67268,68,'Z','5c','Frage 5.3
\r\n
\r\nEs gibt definierte Kommunikationsprozesse, die eingehalten und überwacht werden.
','','Bitte schätzen Sie anhand der angegebenen Antwort-Optionen ein, wie sehr die untenstehende Aussage auf Ihr Unternehmen zutrifft:','N','Y',10,0,2,'de'),(246,67268,68,'Z','5d','Frage 5.4
\r\n
\r\nDie externe Kommunikation bedient sich standardisierter Prozesse und erprobter technischer Hilfsmittel.
','','Bitte schätzen Sie anhand der angegebenen Antwort-Optionen ein, wie sehr die untenstehende Aussage auf Ihr Unternehmen zutrifft:','N','Y',10,0,3,'de'),(243,67268,68,'Z','5a','Frage 5.1
\r\n
\r\nKommunikationsaufgaben sind organisatorisch in den Abteilungen abgebildet und verankert.
','','Bitte schätzen Sie anhand der angegebenen Antwort-Optionen ein, wie sehr die untenstehende Aussage auf Ihr Unternehmen zutrifft:','N','Y',10,0,0,'de'),(242,67268,67,'Z','4d','Frage 4.4
\r\n
\r\nDie Pflege externer Partnerschaften und Kooperationen mit Dritten wird aktiv betrieben.
','','Bitte schätzen Sie anhand der angegebenen Antwort-Optionen ein, wie sehr die untenstehende Aussage auf Ihr Unternehmen zutrifft:','N','Y',10,0,3,'de'),(240,67268,67,'Z','4b','Frage 4.2
\r\n
\r\nDie notwendigen technischen Mittel für Informations- und Kommunikationsaktivitäten stehen zur Verfügung und der Zugriff darauf ist für alle, die ihn benötigen, möglich.
','','Bitte schätzen Sie anhand der angegebenen Antwort-Optionen ein, wie sehr die untenstehende Aussage auf Ihr Unternehmen zutrifft:','N','Y',10,0,1,'de'),(241,67268,67,'Z','4c','Frage 4.3
\r\n
\r\nDer Einsatz der Kommunikationsinstrumente erfolgt koordiniert und ist auf das jeweilige Kommunikationsziel und die jeweilige Kommunikationssituation abgestimmt.
','','Bitte schätzen Sie anhand der angegebenen Antwort-Optionen ein, wie sehr die untenstehende Aussage auf Ihr Unternehmen zutrifft:','N','Y',10,0,2,'de'),(238,67268,66,'Z','3g','Frage 3.7
\r\n
\r\nEs gibt Richtlinien für den einheitlichen Kommunikationsauftritt des Unternehmens im Sinne der Corporate Identity.
','','Bitte schätzen Sie anhand der angegebenen Antwort-Optionen ein, wie sehr die untenstehende Aussage auf Ihr Unternehmen zutrifft:','N','Y',10,0,6,'de'),(239,67268,67,'Z','4a','Frage 4.1
\r\n
\r\nIn den Bereichen Produktentwicklung, Kundenkommunikation und Kundenbetreuung stehen ausreichend personelle Ressourcen zur Bewältigung der unterschiedlichen kommunikativen Aufgaben zur Verfügung und deren Zusammenarbeit ist gegeben.
','','Bitte schätzen Sie anhand der angegebenen Antwort-Optionen ein, wie sehr die untenstehende Aussage auf Ihr Unternehmen zutrifft:','N','Y',10,0,0,'de'),(237,67268,66,'Z','3f','Frage 3.6
\r\n
\r\nDas Unternehmen kennt und pflegt die unterschiedlichen Faktoren, die aus kommunikativer Sicht Anteil am Erfolg des Unternehmens haben.
','','Bitte schätzen Sie anhand der angegebenen Antwort-Optionen ein, wie sehr die untenstehende Aussage auf Ihr Unternehmen zutrifft:','N','Y',10,0,5,'de'),(236,67268,66,'Z','3e','Frage 3.5
\r\n
\r\nDie Werbestrategie des Unternehmens ist auf die einzelnen Produkte abgestimmt.
','','Bitte schätzen Sie anhand der angegebenen Antwort-Optionen ein, wie sehr die untenstehende Aussage auf Ihr Unternehmen zutrifft:','N','Y',10,0,4,'de'),(234,67268,66,'Z','3c','Frage 3.3
\r\n
\r\nProduktstrategie und Portfolio sind im Unternehmen allen Mitarbeitern bekannt.
','','Bitte schätzen Sie anhand der angegebenen Antwort-Optionen ein, wie sehr die untenstehende Aussage auf Ihr Unternehmen zutrifft:','N','Y',10,0,2,'de'),(235,67268,66,'Z','3d','Frage 3.4
\r\n
\r\nDie Kommunikationsstrategie richtet sich an der Zielgruppenorientierung des Unternehmens aus, welche sich auf die Ergebnisse von Unternehmensanalysen und Marktforschungen stützt.
','','Bitte schätzen Sie anhand der angegebenen Antwort-Optionen ein, wie sehr die untenstehende Aussage auf Ihr Unternehmen zutrifft:','N','Y',10,0,3,'de'),(233,67268,66,'Z','3b','Frage 3.2
\r\n
\r\nDas Konzept zur Kommunikationsstrategie wird regelmäßig überprüft und aktualisiert.
','','Bitte schätzen Sie anhand der angegebenen Antwort-Optionen ein, wie sehr die untenstehende Aussage auf Ihr Unternehmen zutrifft:','N','Y',10,0,1,'de'),(230,67268,65,'Z','2b','Frage 2.2
\r\n
\r\nDie Anliegen und Ziele der Mitarbeiter bzw. des Unternehmens werden in regelmäßigen Mitarbeitergesprächen besprochen und festgehalten.
','','Bitte schätzen Sie anhand der angegebenen Antwort-Optionen ein, wie sehr die untenstehende Aussage auf Ihr Unternehmen zutrifft:','N','Y',10,0,1,'de'),(231,67268,65,'Z','2c','Frage 2.3
\r\n
\r\nIm Unternehmen herrscht ein offener Dialog auch über Hierarchien hinweg.
','','Bitte schätzen Sie anhand der angegebenen Antwort-Optionen ein, wie sehr die untenstehende Aussage auf Ihr Unternehmen zutrifft:','N','Y',10,0,2,'de'),(232,67268,66,'Z','3a','Frage 3.1
\r\n
\r\nEs gibt ein Konzept zur Kommunikationsstrategie des Unternehmens, das in schriftlicher Form vorliegt und Richtlinien der Kommunikation vorgibt.
','','Bitte schätzen Sie anhand der angegebenen Antwort-Optionen ein, wie sehr die untenstehende Aussage auf Ihr Unternehmen zutrifft:','N','Y',10,0,0,'de'),(220,47876,60,'5','7d','Frage 7.4
\n
\nKunden schätzen die Glaubwürdigkeit, Kompetenz und Unabhängigkeit des Unternehmens bzw. seiner Produkte.
','','','N','Y',0,0,3,'de'),(221,47876,61,'5','8a','Frage 8.1
\n
\nDas Unternehmen und seine Produkte haben den Ruf, in ihrem Wirkungsbereich kompetent und glaubwürdig zu sein.
','','','N','Y',0,0,0,'de'),(229,67268,65,'Z','2a','Frage 2.1
\r\n
\r\nDie fachliche und soziale Kompetenz der Mitarbeiter sowie ihre Kommunikationsfähigkeit werden festgestellt und gefördert.
','','Bitte schätzen Sie anhand der angegebenen Antwort-Optionen ein, wie sehr die untenstehende Aussage auf Ihr Unternehmen zutrifft:','N','Y',10,0,0,'de'),(226,47876,63,'S','0c','Arbeitsbereich:
','','Bitte geben Sie den Unternehmensbereich an, in dem Sie tätig sind.','N','Y',0,0,2,'de'),(227,67268,64,'Z','1a','Frage 1.1
\r\n
\r\nDie Unternehmensführung bringt sich zu Themen der internen und externen Kommunikation aktiv ein und prägt das Image des Unternehmens nach außen und innen.
','','Bitte schätzen Sie anhand der angegebenen Antwort-Optionen ein, wie sehr die untenstehende Aussage auf Ihr Unternehmen zutrifft:','N','Y',10,10,0,'de'),(228,67268,64,'Z','1b','Frage 1.2
\r\n
\r\nDie Unternehmensführung motiviert die Mitarbeiter dazu, am einheitlichen kommunikativen Auftritt des Unternehmens mitzuwirken und unterstützt sie dabei.
','','Bitte schätzen Sie anhand der angegebenen Antwort-Optionen ein, wie sehr die untenstehende Aussage auf Ihr Unternehmen zutrifft:','N','Y',10,0,1,'de'),(222,47876,61,'5','8b','Frage 8.2
\n
\nImage und Glaubwürdigkeit stärken die herausragende Marktposition des Unternehmens und seiner Produkte in deren Wirkungsumfeld.
','','','N','Y',0,0,1,'de'),(223,47876,62,'5','9a','Frage 9.1
\n
\nDie Umsatzzahlen des Unternehmens sind konstant bis steigend.
','','','N','Y',0,0,0,'de'),(224,47876,63,'N','0a','Alter:
','','Bitte geben Sie Ihr Alter an.','N','Y',0,0,0,'de'),(225,47876,63,'G','0b','Geschlecht:
','','Bitte geben Sie Ihr Geschlecht an.','N','Y',0,0,1,'de'),(219,47876,60,'5','7c','Frage 7.3
\n
\nDas Kunden-Feedback hat Einfluss auf die Produkte des Unternehmens.
','','','N','Y',0,0,2,'de'),(218,47876,60,'5','7b','Frage 7.2
\n
\nDie Kunden nutzen die unterschiedlichen Feedback-Möglichkeiten.
','','','N','Y',0,0,1,'de'),(214,47876,59,'5','6a','Frage 6.1
\n
\nDie Mitarbeiter sind motiviert und identifizieren sich mit dem Unternehmen.
','','','N','Y',0,0,0,'de'),(215,47876,59,'5','6b','Frage 6.2
\n
\nDie interne Kommunikation vollzieht sich in einem entspannten und offenen Klima.
','','','N','Y',0,0,1,'de'),(216,47876,59,'5','6c','Frage 6.3
\n
\nMitarbeiter können ihre Meinungen und Wünsche äußern und diese werden berücksichtigt.
','','','N','Y',0,0,2,'de'),(217,47876,60,'5','7a','Frage 7.1
\n
\nDas Kaufverhalten der Kunden ist konstant bis steigend.
','','','N','Y',0,0,0,'de'),(213,47876,58,'5','5g','Frage 5.7
\n
\nFür die interne Kommunikation stehen institutionalisierte Prozesse und Verfahren zur Verfügung.
','','','N','Y',0,0,6,'de'),(210,47876,58,'5','5d','Frage 5.4
\n
\nDie externe Kommunikation bedient sich standardisierter Prozesse und erprobter technischer Hilfsmittel.
','','','N','Y',0,0,3,'de'),(211,47876,58,'5','5e','Frage 5.5
\n
\nDie externe Kommunikation erfolgt zielgruppengerecht unter Verwendung unterschiedlicher geeigneter Kommunikationskanäle und -mittel.
','','','N','Y',0,0,4,'de'),(212,47876,58,'5','5f','Frage 5.6
\n
\nExternen Kommunikationspartnern wird die Möglichkeit für Feedback gegeben, das im Unternehmen gesammelt, verarbeitet und berücksichtigt wird.
','','','N','Y',0,0,5,'de'),(209,47876,58,'5','5c','Frage 5.3
\n
\nEs gibt definierte Kommunikationsprozesse, die eingehalten und überwacht werden.
','','','N','Y',0,0,2,'de'),(206,47876,57,'5','4d','Frage 4.4
\n
\nDie Pflege externer Partnerschaften und Kooperationen mit Dritten wird aktiv betrieben.
','','','N','Y',0,0,3,'de'),(207,47876,58,'5','5a','Frage 5.1
\n
\nKommunikationsaufgaben sind organisatorisch in den Abteilungen abgebildet und verankert.
','','','N','Y',0,0,0,'de'),(208,47876,58,'5','5b','Frage 5.2
\n
\nEs gibt einen übergeordneten Kommunikationsverantwortlichen im Unternehmen.
','','','N','Y',0,0,1,'de'),(204,47876,57,'5','4b','Frage 4.2
\n
\nDie notwendigen technischen Mittel für Informations- und Kommunikationsaktivitäten stehen zur Verfügung und der Zugriff darauf ist für alle, die ihn benötigen, möglich.
','','','N','Y',0,0,1,'de'),(205,47876,57,'5','4c','Frage 4.3
\n
\nDer Einsatz der Kommunikationsinstrumente erfolgt koordiniert und ist auf das jeweilige Kommunikationsziel und die jeweilge Kommunikationssituation abgestimmt.
','','','N','Y',0,0,2,'de'),(203,47876,57,'5','4a','Frage 4.1
\n
\nIn den Bereichen Produktentwicklung, Kundenkommunikation und Kundenbetreuung stehen ausreichend personelle Ressourcen zur Bewältigung der unterschiedlichen kommunikativen Aufgaben zur Verfügung und deren Zusammenarbeit ist gegeben.
','','','N','Y',0,0,0,'de'),(200,47876,56,'5','3e','Frage 3.5
\n
\nDie Werbestrategie des Unternehmens ist auf die einzelnen Produkte abgestimmt.
','','','N','Y',0,0,4,'de'),(201,47876,56,'5','3f','Frage 3.6
\n
\nDas Unternehmen kennt und pflegt die unterschiedlichen Faktoren, die aus kommunikativer Sicht Anteil am Erfolg des Unternehmens haben.
','','','N','Y',0,0,5,'de'),(202,47876,56,'5','3g','Frage 3.7
\n
\nEs gibt Richtlinien für den einheitlichen Kommunikationsauftritt des Unternehmens im Sinne der Corporate Identity.
','','','N','Y',0,0,6,'de'),(199,47876,56,'5','3d','Frage 3.4
\n
\nDie Kommunikationsstrategie richtet sich an der Zielgruppenorientierung des Unternehmens aus, welche sich auf die Ergebnisse von Unternehmensanalysen und Marktforschungen stützt.
','','','N','Y',0,0,3,'de'),(198,47876,56,'5','3c','Frage 3.3
\n
\nProduktstrategie und Portfolio sind im Unternehmen allen Mitarbeitern bekannt.
','','','N','Y',0,0,2,'de'),(195,47876,55,'5','2c','Frage 2.3
\n
\nIm Unternehmen herrscht ein offener Dialog auch über Hierarchien hinweg.
','','','N','Y',0,0,2,'de'),(196,47876,56,'5','3a','Frage 3.1
\n
\nEs gibt ein Konzept zur Kommunikationsstrategie des Unternehmens, das in schriftlicher Form vorliegt und Richtlinien der Kommunikation vorgibt.
','','','N','Y',0,0,0,'de'),(197,47876,56,'5','3b','Frage 3.2
\n
\nDas Konzept zur Kommunikationsstrategie wird regelmäßig überprüft und aktualisiert.
','','','N','Y',0,0,1,'de'),(192,47876,54,'5','1b','Frage 1.2
\n
\nDie Unternehmensführung motiviert die Mitarbeiter dazu, am einheitlichen kommunikativen Auftritt des Unternehmens mitzuwirken und unterstützt sie dabei.
','','','N','Y',0,0,1,'de'),(193,47876,55,'5','2a','Frage 2.1
\n
\nDie fachliche und soziale Kompetenz der Mitarbeiter sowie ihre Kommunikationsfähigkeit werden festgestellt und gefördert.
','','','N','Y',0,0,0,'de'),(194,47876,55,'5','2b','Frage 2.2
\n
\nDie Anliegen und Ziele der Mitarbeiter bzw. des Unternehmens werden in regelmäßigen Mitarbeitergesprächen besprochen und festgehalten.
','','','N','Y',0,0,1,'de'),(191,47876,54,'5','1a','Frage 1.1
\n
\nDie Unternehmensführung bringt sich zu Themen der internen und externen Kommunikation aktiv ein und prägt das Image des Unternehmens nach außen und innen.
','','','N','Y',0,0,0,'de'),(263,29975,74,'S','01','What is your name?','','','N','Y',0,0,0,'en'),(264,29975,74,'N','03','And for our records, specifically how old are you?','','This is a numerical question. Only numbers may be entered. There is also a question_attribute added to the question to limit the characters to no more than 3. This, of course, limits the possible answer to no more than 999, which seems reasonable for an age question.','N','N',0,0,2,'en'),(265,29975,74,'L','02','What is your age group?','','','N','Y',0,0,1,'en'),(266,29975,75,'T','01','Hi, {INSERTANS:29975X74X263} please tell us a little about yourself. What was your first job, and did you enjoy it?','','','N','N',0,0,0,'en'),(267,29975,75,'L','03','Given your extraordinary age of {INSERTANS:29975X74X264} {INSERTANS:29975X74X263}, how do you find using this survey tool?','','This question is conditional, and only appears if someone is over 100 years old. It also has a \"random order\", which means that the options will appear in a different, random, order for each different participant.','Y','N',0,0,1,'en'),(268,29975,76,'L','01','
 
Which of these ads makes you want to find out more?
 
','','This is an example of using graphics/images within a question. It uses attributes to set the pictures in columns, and also to randomise the display.','N','Y',0,0,0,'en'),(269,29975,76,'F','02a','Please have a good look at this ad, and then complete the questions below.
\n','','This question only displays if lawyer one was chosen.','N','N',8,0,1,'en'),(270,29975,76,'F','03a','Please have a good look at this ad, and then complete the questions below.
\n','','This question only displays if lawyer two was chosen.','N','N',8,0,2,'en'),(271,29975,76,'F','04a','Please have a good look at this ad, and then complete the questions below.
\n','','This question only displays if lawyer three was chosen.','N','N',8,0,3,'en'),(272,31565,77,'I','code_en','qeustion_en','','questionhelp_en','N','N',0,0,0,'en'),(272,31565,77,'I','code_en','qeustion_hr','','questionhelp_cr','N','N',0,0,0,'hr'),(272,31565,77,'I','code_en','qeustion_nl','','questionhelp_nl','N','N',0,0,0,'nl'),(273,31565,77,'M','code','question_en','','questionhelp_en','N','N',0,0,1,'en'),(273,31565,77,'M','code','question_hr','','questionhelp_hr','N','N',0,0,1,'hr'),(273,31565,77,'M','code','question_nl','','questionhelp_nl','N','N',0,0,1,'nl'),(274,40,78,'A','A','Type A - Array 5 Point Choice Question','','','N','N',0,0,0,'en'),(275,40,78,'B','B','Type B - Array 10 point choice Question','','This is the help text for this question. ','N','N',0,0,1,'en'),(276,40,78,'C','C','Type C - Array Yes/No/Uncertain Question','','','N','N',0,0,2,'en'),(277,40,78,'E','E','Type E - Array Increase/Same/Decrease Question','','This is the questions help text.','N','N',0,0,3,'en'),(278,40,78,'F','F','Type F - Array using Flexible Labels question','','This is a array using a flexible label set. Flexible labels sets can be created with as many answer as you like to. We created only one for this survey that will be re-used over and over.','N','N',14,0,4,'en'),(279,40,78,'H','H','Type H - Array Flexible Labels by Column question','','This is the same question type as before just the orientation has changed','N','N',14,0,5,'en'),(280,40,78,'F','Semantic','Semantic Differential Question Type
','','This question type is a modification of Array (flexible labels).
','N','N',15,0,6,'en'),(281,40,78,'1','DualScale','Array (Flexible Labels) dual scale
','','','N','N',16,16,7,'en'),(282,40,79,'Q','Q','Type Q - Multiple Short Text Question','','This is a Multiple Short Text Question','N','N',0,0,0,'en'),(283,40,79,'T','T','Type T - Long Text Question?','','Helptext','N','N',0,0,2,'en'),(284,40,79,'S','S','Type S - Short Free Text?','','helptext','N','N',0,0,1,'en'),(285,40,79,'U','U','Type U - Huge Free text?','','Helptext','N','N',0,0,3,'en'),(286,40,80,'X','X','Type X - Boilerplate question','','This is the boilerplate question type. It\'s not so much a question but a simple text display.','N','Y',0,0,4,'en'),(287,40,80,'G','G','Type G - Gender question?','','This is a standard question aksing for the participiant\'s sex.','N','N',0,0,1,'en'),(288,40,80,'N','N','Type N - Numerical Input Question','','','N','N',0,0,2,'en'),(289,40,80,'R','R','Type R - Ranking Question','','','N','N',0,0,3,'en'),(290,40,80,'Y','Y','Type Y - Yes/No Question','','','N','N',0,0,5,'en'),(291,40,80,'D','D','Type D - Date question?','','Helptext','N','N',0,0,0,'en'),(292,40,81,'Z','Z','Type Z - List Flexible Labels Dropdown','','This question is reusing the same label set as some of the array questions.','N','N',14,0,5,'en'),(293,40,81,'W','W','Type W - List Flexible Labels Dropdown question type','','This question is reusing the same label set as some of the array questions.','N','N',14,0,4,'en'),(294,40,81,'O','O','Type O - List with Comment Question','','','N','N',0,0,3,'en'),(295,40,81,'L','L','Type L - List Radio qeustion','','','Y','N',0,0,2,'en'),(296,40,81,'5','5','Type 5 - 5 point choice','','Help2','N','N',0,0,1,'en'),(297,40,81,'!','!','Type ! - List Dropdown Question','','','Y','N',0,0,0,'en'),(298,40,82,'P','P','Type P - Multiple Options Question with Comments ','','This is a Multiple Options Question with the ability to comment it.','Y','N',0,0,1,'en'),(299,40,82,'M','M','Type M - Multiple Options Question','','This is a type M multiple Options questions.','Y','N',0,0,0,'en'),(300,29846,83,'A','A','Type A - Array 5 Point Choice Question','','','N','N',0,0,0,'en'),(301,29846,83,'B','B','Type B - Array 10 point choice Question','','This is the help text for this question. ','N','N',0,0,1,'en'),(302,29846,83,'C','C','Type C - Array Yes/No/Uncertain Question','','','N','N',0,0,2,'en'),(303,29846,83,'E','E','Type E - Array Increase/Same/Decrease Question','','This is the questions help text.','N','N',0,0,3,'en'),(304,29846,83,'F','F','Type F - Array using Flexible Labels question','','This is a array using a flexible label set. Flexible labels sets can be created with as many answer as you like to. We created only one for this survey that will be re-used over and over.','N','N',14,0,4,'en'),(305,29846,83,'H','H','Type H - Array Flexible Labels by Column question','','This is the same question type as before just the orientation has changed','N','N',14,0,6,'en'),(306,29846,83,'F','Semantic','Semantic Differential Question Type
','','This question type is a modification of Array (flexible labels).
','N','N',15,0,7,'en'),(307,29846,83,'1','DualScale','Array (Flexible Labels) dual scale (radio)
','','','N','N',16,16,8,'en'),(308,29846,83,':',':','Array (Multi Flexi) (Numbers) - Allows a table of dropdowns containing number selections set by question attributes.
','','','N','N',20,0,10,'en'),(309,29846,83,';',';','Array (Multi Flexi) (Text) - Allows a table of text inputs
','','','N','N',20,0,11,'en'),(310,29846,83,'1','DualScale','Array (Flexible Labels) dual scale (dropdown)
','','','N','N',16,16,9,'en'),(311,29846,83,':',':','Array (Multi Flexi) (Numbers - checkbox) - Allows a table of dropdowns containing number selections set by question attributes.
','','','N','N',20,0,12,'en'),(312,29846,83,'F','F','Type F - Array using Flexible Labels question (answerwidth = 50)
','','This is a array using a flexible label set. Flexible labels sets can be created with as many answer as you like to. We created only one for this survey that will be re-used over and over.','N','N',14,0,5,'en'),(313,29846,84,'Q','Q','Type Q - Multiple Short Text Question','','This is a Multiple Short Text Question','N','N',0,0,0,'en'),(314,29846,84,'T','T','Type T - Long Text Question?','','Helptext','N','N',0,0,4,'en'),(315,29846,84,'S','S','Type S - Short Free Text?','','helptext','N','N',0,0,3,'en'),(316,29846,84,'U','U','Type U - Huge Free text?','','Helptext','N','N',0,0,5,'en'),(317,29846,84,'Q','Q','Type Q - Multiple Short Text Question (with suffix and prefix)
','','This is a Multiple Short Text Question','N','N',0,0,1,'en'),(318,29846,84,'Q','Q','Type Q - Multiple Short Text Question (long "answers")
','','This is a Multiple Short Text Question','N','N',0,0,2,'en'),(319,29846,85,'X','X','Type X - Boilerplate question','','This is the boilerplate question type. It\'s not so much a question but a simple text display.','N','Y',0,0,9,'en'),(320,29846,85,'G','G','Type G - Gender question?','','This is a standard question aksing for the participiant\'s sex.','N','N',0,0,2,'en'),(321,29846,85,'N','N','Type N - Numerical Input Question','','','N','Y',0,0,3,'en'),(322,29846,85,'R','R','Type R - Ranking Question','','','N','N',0,0,8,'en'),(323,29846,85,'Y','Y','Type Y - Yes/No Question','','','N','N',0,0,10,'en'),(324,29846,85,'D','D','Type D - Date question?','','Helptext','N','N',0,0,0,'en'),(325,29846,85,'K','K','Multiple Numerical Input
','','','N','N',0,0,4,'en'),(326,29846,85,'K','K','Multiple Numerical Input (slider layout)
','','You can slide the button along.
','N','Y',0,0,7,'en'),(327,29846,85,'D','D','Type D - Date question? (dropdown dates)
','','Helptext','N','N',0,0,1,'en'),(328,29846,85,'K','K','Multiple Numerical Input (equals 10)
','','add numbers to the boxes above
','N','N',0,0,6,'en'),(329,29846,85,'K','K','Multiple Numerical Input (with prefix and suffix)
','','','N','N',0,0,5,'en'),(330,29846,86,'Z','Z','Type Z - List Flexible Labels (Radio)','','This question is reusing the same label set as some of the array questions.','N','N',14,0,5,'en'),(331,29846,86,'W','W','Type W - List Flexible Labels Dropdown question type','','This question is reusing the same label set as some of the array questions.','N','N',14,0,4,'en'),(332,29846,86,'O','O','Type O - List with Comment Question','','','N','N',0,0,3,'en'),(333,29846,86,'L','L','Type L - List Radio qeustion','','','Y','N',0,0,2,'en'),(334,29846,86,'5','5','Type 5 - 5 point choice','','Help2','N','N',0,0,1,'en'),(335,29846,86,'!','!','Type ! - List Dropdown Question','','','Y','N',0,0,0,'en'),(336,29846,87,'P','P','Type P - Multiple Options Question with Comments ','','This is a Multiple Options Question with the ability to comment it.','Y','N',0,0,1,'en'),(337,29846,87,'M','M','Type M - Multiple Options Question','','This is a type M multiple Options questions.','Y','N',0,0,0,'en'),(338,67268,73,'M','0d','Bitte geben Sie Ihren Ausbildungsweg an (Mehrfachnennungen möglich):
','','','N','Y',0,0,3,'de'); /*!40000 ALTER TABLE `lime_questions` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `lime_quota` -- DROP TABLE IF EXISTS `lime_quota`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `lime_quota` ( `id` int(11) NOT NULL AUTO_INCREMENT, `sid` int(11) DEFAULT NULL, `name` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, `qlimit` int(8) DEFAULT NULL, `action` int(2) DEFAULT NULL, `active` int(1) NOT NULL DEFAULT '1', PRIMARY KEY (`id`), KEY `quota_idx2` (`sid`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `lime_quota` -- LOCK TABLES `lime_quota` WRITE; /*!40000 ALTER TABLE `lime_quota` DISABLE KEYS */; /*!40000 ALTER TABLE `lime_quota` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `lime_quota_members` -- DROP TABLE IF EXISTS `lime_quota_members`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `lime_quota_members` ( `id` int(11) NOT NULL AUTO_INCREMENT, `sid` int(11) DEFAULT NULL, `qid` int(11) DEFAULT NULL, `quota_id` int(11) DEFAULT NULL, `code` varchar(5) COLLATE utf8_unicode_ci DEFAULT NULL, PRIMARY KEY (`id`), UNIQUE KEY `sid` (`sid`,`qid`,`quota_id`,`code`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `lime_quota_members` -- LOCK TABLES `lime_quota_members` WRITE; /*!40000 ALTER TABLE `lime_quota_members` DISABLE KEYS */; /*!40000 ALTER TABLE `lime_quota_members` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `lime_saved_control` -- DROP TABLE IF EXISTS `lime_saved_control`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `lime_saved_control` ( `scid` int(11) NOT NULL AUTO_INCREMENT, `sid` int(11) NOT NULL DEFAULT '0', `srid` int(11) NOT NULL DEFAULT '0', `identifier` text COLLATE utf8_unicode_ci NOT NULL, `access_code` text COLLATE utf8_unicode_ci NOT NULL, `email` text COLLATE utf8_unicode_ci, `ip` text COLLATE utf8_unicode_ci NOT NULL, `saved_thisstep` text COLLATE utf8_unicode_ci NOT NULL, `status` char(1) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', `saved_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `refurl` text COLLATE utf8_unicode_ci, PRIMARY KEY (`scid`), KEY `saved_control_idx2` (`sid`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `lime_saved_control` -- LOCK TABLES `lime_saved_control` WRITE; /*!40000 ALTER TABLE `lime_saved_control` DISABLE KEYS */; /*!40000 ALTER TABLE `lime_saved_control` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `lime_settings_global` -- DROP TABLE IF EXISTS `lime_settings_global`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `lime_settings_global` ( `stg_name` varchar(50) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', `stg_value` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', PRIMARY KEY (`stg_name`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `lime_settings_global` -- LOCK TABLES `lime_settings_global` WRITE; /*!40000 ALTER TABLE `lime_settings_global` DISABLE KEYS */; INSERT INTO `lime_settings_global` VALUES ('DBVersion','133'),('SessionName','ls37928383855338684449'); /*!40000 ALTER TABLE `lime_settings_global` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `lime_survey_67268` -- DROP TABLE IF EXISTS `lime_survey_67268`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `lime_survey_67268` ( `id` int(11) NOT NULL AUTO_INCREMENT, `submitdate` datetime DEFAULT NULL, `startlanguage` varchar(20) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', `token` varchar(36) COLLATE utf8_unicode_ci DEFAULT NULL, `datestamp` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `startdate` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `67268X73X260` varchar(5) COLLATE utf8_unicode_ci DEFAULT NULL, `67268X73X261` char(1) COLLATE utf8_unicode_ci DEFAULT NULL, `67268X73X262` text COLLATE utf8_unicode_ci, `67268X73X3381` varchar(5) COLLATE utf8_unicode_ci DEFAULT NULL, `67268X73X3382` varchar(5) COLLATE utf8_unicode_ci DEFAULT NULL, `67268X73X3383` varchar(5) COLLATE utf8_unicode_ci DEFAULT NULL, `67268X73X3384` varchar(5) COLLATE utf8_unicode_ci DEFAULT NULL, `67268X73X3385` varchar(5) COLLATE utf8_unicode_ci DEFAULT NULL, `67268X73X3386` varchar(5) COLLATE utf8_unicode_ci DEFAULT NULL, `67268X73X3387` varchar(5) COLLATE utf8_unicode_ci DEFAULT NULL, `67268X73X3388` varchar(5) COLLATE utf8_unicode_ci DEFAULT NULL, `67268X73X3389` varchar(5) COLLATE utf8_unicode_ci DEFAULT NULL, `67268X64X227` varchar(5) COLLATE utf8_unicode_ci DEFAULT NULL, `67268X64X228` varchar(5) COLLATE utf8_unicode_ci DEFAULT NULL, `67268X65X229` varchar(5) COLLATE utf8_unicode_ci DEFAULT NULL, `67268X65X230` varchar(5) COLLATE utf8_unicode_ci DEFAULT NULL, `67268X65X231` varchar(5) COLLATE utf8_unicode_ci DEFAULT NULL, `67268X66X232` varchar(5) COLLATE utf8_unicode_ci DEFAULT NULL, `67268X66X233` varchar(5) COLLATE utf8_unicode_ci DEFAULT NULL, `67268X66X234` varchar(5) COLLATE utf8_unicode_ci DEFAULT NULL, `67268X66X235` varchar(5) COLLATE utf8_unicode_ci DEFAULT NULL, `67268X66X236` varchar(5) COLLATE utf8_unicode_ci DEFAULT NULL, `67268X66X237` varchar(5) COLLATE utf8_unicode_ci DEFAULT NULL, `67268X66X238` varchar(5) COLLATE utf8_unicode_ci DEFAULT NULL, `67268X67X239` varchar(5) COLLATE utf8_unicode_ci DEFAULT NULL, `67268X67X240` varchar(5) COLLATE utf8_unicode_ci DEFAULT NULL, `67268X67X241` varchar(5) COLLATE utf8_unicode_ci DEFAULT NULL, `67268X67X242` varchar(5) COLLATE utf8_unicode_ci DEFAULT NULL, `67268X68X243` varchar(5) COLLATE utf8_unicode_ci DEFAULT NULL, `67268X68X244` varchar(5) COLLATE utf8_unicode_ci DEFAULT NULL, `67268X68X245` varchar(5) COLLATE utf8_unicode_ci DEFAULT NULL, `67268X68X246` varchar(5) COLLATE utf8_unicode_ci DEFAULT NULL, `67268X68X247` varchar(5) COLLATE utf8_unicode_ci DEFAULT NULL, `67268X68X248` varchar(5) COLLATE utf8_unicode_ci DEFAULT NULL, `67268X68X249` varchar(5) COLLATE utf8_unicode_ci DEFAULT NULL, `67268X69X250` varchar(5) COLLATE utf8_unicode_ci DEFAULT NULL, `67268X69X251` varchar(5) COLLATE utf8_unicode_ci DEFAULT NULL, `67268X69X252` varchar(5) COLLATE utf8_unicode_ci DEFAULT NULL, `67268X70X253` varchar(5) COLLATE utf8_unicode_ci DEFAULT NULL, `67268X70X254` varchar(5) COLLATE utf8_unicode_ci DEFAULT NULL, `67268X70X255` varchar(5) COLLATE utf8_unicode_ci DEFAULT NULL, `67268X70X256` varchar(5) COLLATE utf8_unicode_ci DEFAULT NULL, `67268X71X257` varchar(5) COLLATE utf8_unicode_ci DEFAULT NULL, `67268X71X258` varchar(5) COLLATE utf8_unicode_ci DEFAULT NULL, `67268X72X259` varchar(5) COLLATE utf8_unicode_ci DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM AUTO_INCREMENT=32 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `lime_survey_67268` -- LOCK TABLES `lime_survey_67268` WRITE; /*!40000 ALTER TABLE `lime_survey_67268` DISABLE KEYS */; INSERT INTO `lime_survey_67268` VALUES (1,NULL,'de','','2009-06-16 11:21:26','2009-06-16 11:18:20','2','F','Falter Verlagsgesellschaft','','','','','','','','','Y','4','3','2','2','3','3','4','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2,'2009-06-16 11:30:14','de','','2009-06-16 11:30:14','2009-06-16 11:20:15','5','M','EDV','','','','Y','','','','','','1','2','2','1','3','1','1','2','3','4','3','4','5','6','5','3','4','1','2','4','5','4','2','5','4','3','5','5','4','5','6','5','4'),(3,'2009-06-16 11:28:40','de','','2009-06-16 11:28:40','2009-06-16 11:22:19','2','M','Redaktion','','','','','','','Y','','','5','4','5','6','6','2','2','6','5','6','6','5','2','5','5','6','3','6','4','2','4','3','2','5','6','5','2','5','4','6','6','6','4'),(4,'2009-06-16 11:32:59','de','','2009-06-16 11:32:59','2009-06-16 11:23:00','3','F','keine angabe','','','','','','','','Y','','2','4','1','1','5','1','1','3','4','5','5','6','6','5','4','6','3','6','3','3','6','5','2','6','6','5','4','4','4','6','6','6','4'),(5,'2009-06-16 11:33:04','de','','2009-06-16 11:33:04','2009-06-16 11:23:04','3','M','keine Angabe','','Y','Y','','','','','','','1','4','1','1','4','1','1','1','4','5','4','6','6','5','4','6','1','6','1','1','6','5','1','5','6','3','4','4','3','6','6','6','4'),(6,NULL,'de','','2009-06-16 11:31:46','2009-06-16 11:26:36','2','F','Redaktion','','','','','','','','','Y','5','4','3','3','6','2','2','4','3','5',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(7,'2009-06-16 11:45:05','de','','2009-06-16 11:45:05','2009-06-16 11:40:17','3','M','redaktion','','','','','','','','','Y','4','4','4','3','6','3','3','5','4','5','6','4','4','5','5','5','4','5','5','5','5','5','5','5','6','5','4','6','4','6','6','5','4'),(8,'2009-06-16 11:53:03','de','','2009-06-16 11:53:03','2009-06-16 11:43:58','2','M','Verlag / Corporate Publishing','','','','Y','','','','','','5','4','2','5','6','1','1','4','3','5','4','3','3','5','5','5','5','4','3','5','4','5','5','6','6','5','5','4','4','6','6','5','4'),(9,'2009-06-16 11:57:58','de','','2009-06-16 11:57:58','2009-06-16 11:49:46','3','F','Falte Verlag / Buchverlag','','','','','','','','','Y','3','3','1','1','5','1','1','1','3','6','4','4','5','6','4','5','5','5','3','4','5','4','2','5','4','4','5','5','4','6','6','6','5'),(10,NULL,'de','','2009-06-16 11:59:02','2009-06-16 11:55:51','4','M','frei','','','','','','','','','Y','4','3','1','4','3','1','1','3','1','5','5','4','3','4','4','3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(11,'2009-06-16 12:06:16','de','','2009-06-16 12:06:16','2009-06-16 11:56:23','3','M','produktion','','','','','','','','Y','','5','4','4','3','3','3','3','4','4','4','4','5','5','3','3','4','4','5','5','4','5','4','4','6','5','5','5','4','5','5','5','5','4'),(12,'2009-06-16 12:05:09','de','','2009-06-16 12:05:09','2009-06-16 11:56:41','2','F','Falter Verlagsgesellschaft','','','','','','','','','Y','4','3','2','1','3','2','2','3','3','5','4','3','3','5','4','4','1','1','2','4','4','5','2','3','3','3','3','5','4','5','5','4','4'),(13,NULL,'de','','2009-06-16 12:21:38','2009-06-16 12:21:13','4','F','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(14,'2009-06-16 12:50:50','de','','2009-06-16 12:50:50','2009-06-16 12:38:38','4','F','Falter Programmredaktion','','','','','Y','','','','','5','3','3','4','4','2','3','1','3','4','2','3','3','4','4','4','3','1','3','3','2','3','1','4','4','4','4','3','3','5','6','5','4'),(15,'2009-06-16 13:01:23','de','','2009-06-16 13:01:23','2009-06-16 12:53:01','4','F','anzeigenverkauf','','','','Y','','','','','','5','3','1','1','5','1','1','1','1','1','1','5','1','5','5','1','1','5','5','4','4','1','1','5','1','3','3','1','1','6','6','6','4'),(16,NULL,'de','','2009-06-16 13:05:09','2009-06-16 13:05:06','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17,'2009-06-16 13:24:41','de','','2009-06-16 13:24:41','2009-06-16 13:19:13','2','F','journalismus, zeitungs-magazinverlag','','Y','','Y','','','','','','3','4','2','2','4','1','1','4','4','5','5','3','4','3','4','5','5','4','4','4','4','3','2','4','4','4','4','3','3','6','5','5','4'),(18,'2009-06-16 15:59:58','de','','2009-06-16 15:59:58','2009-06-16 15:54:18','4','M','Anzeigenabteilung','','','','Y','','','','Y','','5','5','3','5','6','3','3','3','3','5','5','6','4','5','5','5','5','6','5','5','5','5','4','5','4','5','4','4','5','5','5','5','4'),(19,NULL,'de','','2009-06-16 20:11:34','2009-06-16 20:11:25','2','F','f',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(20,'2009-06-17 13:51:03','de','','2009-06-17 13:51:03','2009-06-17 13:44:39','3','M','Redaktion','','','','Y','','','','Y','','5','4','4','4','5','1','2','3','4','5','4','5','3','4','4','4','3','3','2','3','3','2','3','4','4','5','5','5','4','6','6','6','5'),(21,'2009-06-18 14:09:08','de','','2009-06-18 14:09:08','2009-06-18 13:58:36','4','F','Verlag','','','','','Y','','','','','2','3','1','2','2','1','1','1','1','5','2','1','2','6','2','4','2','1','2','2','3','3','3','5','2','3','4','4','4','5','5','4','3'),(22,'2009-06-19 14:44:44','de','','2009-06-19 14:44:44','2009-06-19 11:32:49','3','F','keine Angabe','','','','','','','','','Y','3','3','2','1','2','1','1','3','4','4','4','4','3','5','4','4','2','1','1','4','4','4','2','2','2','3','4','3','4','5','5','5','4'),(23,NULL,'de','','2009-06-19 11:34:42','2009-06-19 11:32:53','3','M','Medien','','','','Y','','','','','','5','5','6','6','5','4','4',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(24,'2009-06-19 11:49:25','de','','2009-06-19 11:49:25','2009-06-19 11:45:40','2','M','Redaktion','','','','','','','','','Y','3','1','2','4','6','1','1','1','1','2','1','1','1','2','1','2','1','1','2','1','2','1','1','5','5','4','5','3','3','6','6','6','4'),(25,'2009-06-19 11:52:17','de','','2009-06-19 11:52:17','2009-06-19 11:46:08','3','F','vertrieb','','Y','Y','Y','','','','Y','','5','2','2','1','5','2','3','1','2','4','4','5','3','4','2','5','5','1','2','4','5','4','1','5','5','4','5','3','2','5','5','6','5'),(26,NULL,'de','','2009-06-19 12:19:40','2009-06-19 12:14:59','3','F','Falter Buchverlag','','','','','','','','','Y','3','3','1','1','5','3','3','2','5','6','5','6','5','5','5','5','5','5','4','3','4',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(27,'2009-06-19 12:37:00','de','','2009-06-19 12:37:00','2009-06-19 12:28:09','4','M','redaktion','','','','','','','','','Y','4','1','1','1','3','1','1','3','1','4','3','2','2','4','4','3','3','1','1','3','4','3','1','4','4','4','4','3','4','6','6','6','6'),(28,NULL,'de','','2009-06-19 12:44:05','2009-06-19 12:38:14','1','M','verkauf','','','','','','','Y','','','6','5','5','5','6','2','3','5','4','6','4','3','5','5','3','4','3','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(29,NULL,'de','','2009-06-20 16:19:58','2009-06-20 16:13:34','3','M','Zeitung','','','','','','','','','Y','3','3','3','2','5','1','1','2','2','5','4','3','4','4','4','4',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(30,'2009-06-23 10:05:12','de','','2009-06-23 10:05:12','2009-06-23 09:48:28','2','F','Anzeigenabteilung','','','','','Y','','','','','5','3','3','1','5','1','1','4','1','3','3','3','3','4','4','3','3','2','2','4','3','2','3','4','4','3','3','4','4','4','5','4','3'),(31,'2009-06-24 15:42:59','de','','2009-06-24 15:42:59','2009-06-24 15:36:49','4','M','corporate publishing','','Y','','Y','','','','','Y','3','2','3','4','3','1','1','1','1','4','3','1','2','5','2','6','5','1','1','4','2','2','1','6','4','5','5','5','5','5','6','6','6'); /*!40000 ALTER TABLE `lime_survey_67268` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `lime_surveys` -- DROP TABLE IF EXISTS `lime_surveys`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `lime_surveys` ( `sid` int(11) NOT NULL DEFAULT '0', `owner_id` int(11) NOT NULL DEFAULT '0', `admin` varchar(50) COLLATE utf8_unicode_ci DEFAULT NULL, `active` char(1) COLLATE utf8_unicode_ci NOT NULL DEFAULT 'N', `expires` date DEFAULT NULL, `startdate` date DEFAULT NULL, `adminemail` text COLLATE utf8_unicode_ci, `private` char(1) COLLATE utf8_unicode_ci DEFAULT NULL, `faxto` varchar(20) COLLATE utf8_unicode_ci DEFAULT NULL, `format` char(1) COLLATE utf8_unicode_ci DEFAULT NULL, `template` varchar(100) COLLATE utf8_unicode_ci DEFAULT 'default', `language` varchar(50) COLLATE utf8_unicode_ci DEFAULT NULL, `additional_languages` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, `datestamp` char(1) COLLATE utf8_unicode_ci DEFAULT 'N', `usecookie` char(1) COLLATE utf8_unicode_ci DEFAULT 'N', `notification` char(1) COLLATE utf8_unicode_ci DEFAULT '0', `allowregister` char(1) COLLATE utf8_unicode_ci DEFAULT 'N', `attribute1` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, `attribute2` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, `allowsave` char(1) COLLATE utf8_unicode_ci DEFAULT 'Y', `autonumber_start` bigint(11) DEFAULT '0', `autoredirect` char(1) COLLATE utf8_unicode_ci DEFAULT 'N', `allowprev` char(1) COLLATE utf8_unicode_ci DEFAULT 'Y', `printanswers` char(1) COLLATE utf8_unicode_ci DEFAULT 'N', `ipaddr` char(1) COLLATE utf8_unicode_ci DEFAULT 'N', `useexpiry` char(1) COLLATE utf8_unicode_ci NOT NULL DEFAULT 'N', `usestartdate` char(1) COLLATE utf8_unicode_ci NOT NULL DEFAULT 'N', `refurl` char(1) COLLATE utf8_unicode_ci DEFAULT 'N', `datecreated` date DEFAULT NULL, `publicstatistics` char(1) COLLATE utf8_unicode_ci DEFAULT 'N', `publicgraphs` char(1) COLLATE utf8_unicode_ci DEFAULT 'N', `listpublic` char(1) COLLATE utf8_unicode_ci DEFAULT 'N', `htmlemail` char(1) COLLATE utf8_unicode_ci DEFAULT 'N', `tokenanswerspersistence` char(1) COLLATE utf8_unicode_ci DEFAULT 'N', `assessments` char(1) COLLATE utf8_unicode_ci DEFAULT 'N', `usecaptcha` char(1) COLLATE utf8_unicode_ci DEFAULT 'N', `bounce_email` text COLLATE utf8_unicode_ci, PRIMARY KEY (`sid`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `lime_surveys` -- LOCK TABLES `lime_surveys` WRITE; /*!40000 ALTER TABLE `lime_surveys` DISABLE KEYS */; INSERT INTO `lime_surveys` VALUES (29975,1,'','N','2010-05-01','2009-05-01','','Y','','S','default','en','','Y','N','0','N','','','N',0,'N','Y','N','Y','N','N','Y','2007-10-18','N','N','N','N','N','N','N',''),(67268,1,'Markus A. Mascelli','Y','2009-06-30','2009-06-01','mam@heimam.at','N','','S','limespired_mam','de','','Y','N','2','N','','','Y',0,'N','Y','N','N','Y','N','N','2009-05-15','N','N','N','Y','N','Y','B','mam@heimam.at'),(47876,1,'Markus A. Mascelli','N','2009-07-01','2009-05-01','mam@heimam.at','N','','S','limespired_mam','de','','Y','N','2','N','','','Y',3,'N','Y','N','N','Y','N','N','2009-05-15','N','N','Y','Y','N','Y','B','mam@heimam.at'),(31565,1,'','N',NULL,NULL,'','Y','','S','default','en','hr nl','N','N','0','N','','','Y',0,'N','Y','N','N','N','N','N','2007-02-11','N','N','N','N','N','N','N',''),(40,1,'Administratorname','N',NULL,NULL,'admin@localhost','Y','000-00000000','G','default','en','','Y','N','0','N','','','Y',0,'N','Y','N','N','N','N','N','2008-04-21','N','N','N','N','N','N','N','admin@localhost'),(29846,1,'Administratorname','N',NULL,NULL,'admin@localhost','Y','000-00000000','G','default','en','','Y','N','0','N','','','Y',4,'N','Y','Y','N','N','N','N','2008-04-21','N','N','N','N','N','N','N','admin@localhost'); /*!40000 ALTER TABLE `lime_surveys` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `lime_surveys_languagesettings` -- DROP TABLE IF EXISTS `lime_surveys_languagesettings`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `lime_surveys_languagesettings` ( `surveyls_survey_id` int(10) unsigned NOT NULL DEFAULT '0', `surveyls_language` varchar(45) COLLATE utf8_unicode_ci NOT NULL DEFAULT 'en', `surveyls_title` varchar(200) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', `surveyls_description` text COLLATE utf8_unicode_ci, `surveyls_welcometext` text COLLATE utf8_unicode_ci, `surveyls_endtext` text COLLATE utf8_unicode_ci, `surveyls_url` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, `surveyls_urldescription` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, `surveyls_email_invite_subj` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, `surveyls_email_invite` text COLLATE utf8_unicode_ci, `surveyls_email_remind_subj` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, `surveyls_email_remind` text COLLATE utf8_unicode_ci, `surveyls_email_register_subj` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, `surveyls_email_register` text COLLATE utf8_unicode_ci, `surveyls_email_confirm_subj` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, `surveyls_email_confirm` text COLLATE utf8_unicode_ci, PRIMARY KEY (`surveyls_survey_id`,`surveyls_language`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `lime_surveys_languagesettings` -- LOCK TABLES `lime_surveys_languagesettings` WRITE; /*!40000 ALTER TABLE `lime_surveys_languagesettings` DISABLE KEYS */; INSERT INTO `lime_surveys_languagesettings` VALUES (29975,'en','Slightly Trickier Sample Survey','

This is a sample survey designed for testing LimeSurvey.

One of the first things you\'ll need to do, in order to make this work properly, is to fix up the "reference to previous answers" codes in the first two questions of Group 2. These questions contain (INSERTANS:1X2X3) code that needs the numbers changed to match questions 1 and 3 of Group 1. In order to find this number out, browse to question 1 of Group 1, and then copy the code from the URL bar in your web browser, starting from the number after "SID="

IE: 29975&gid=2&qid=4

Then, replace the "&gid=" with an X, and replace the "&qid=" with an X. So you should have:

29975X2X4

Then, you can replace the number in the curly brackets of question 1, group 2, so that it says:

(INSERTANS:29975X2X4)

Do the same with the other codes in the questions.

More information on using the answers to previous questions in your questions is available in the documentation.

','Welcome to the LimeSurvey Sample Survey',NULL,NULL,'','Invitation to participate in survey','Dear {FIRSTNAME},\n\nYou have been invited to participate in a survey.\n\nThe survey is titled:\n\"{SURVEYNAME}\"\n\n\"{SURVEYDESCRIPTION}\"\n\nTo participate, please click on the link below.\n\nSincerely,\n\n{ADMINNAME} ({ADMINEMAIL})\n\n----------------------------------------------\nClick here to do the survey:\n{SURVEYURL}','Reminder to participate in survey','Dear {FIRSTNAME},\n\nRecently we invited you to participate in a survey.\n\nWe note that you have not yet completed the survey, and wish to remind you that the survey is still available should you wish to take part.\n\nThe survey is titled:\n\"{SURVEYNAME}\"\n\n\"{SURVEYDESCRIPTION}\"\n\nTo participate, please click on the link below.\n\nSincerely,\n\n{ADMINNAME} ({ADMINEMAIL})\n\n----------------------------------------------\nClick here to do the survey:\n{SURVEYURL}','Survey Registration Confirmation','Dear {FIRSTNAME},\n\nYou, or someone using your email address, have registered to participate in an online survey titled {SURVEYNAME}.\n\nTo complete this survey, click on the following URL:\n\n{SURVEYURL}\n\nIf you have any questions about this survey, or if you did not register to participate and believe this email is in error, please contact {ADMINNAME} at {ADMINEMAIL}.','Confirmation of completed survey','Dear {FIRSTNAME},\n\nThis email is to confirm that you have completed the survey titled {SURVEYNAME} and your response has been saved. Thank you for participating.\n\nIf you have any further questions about this email, please contact {ADMINNAME} on {ADMINEMAIL}.\n\nSincerely,\n\n{ADMINNAME}'),(67268,'de','Bewertung der Integrierten Kommunikation im Unternehmen','

Online-Umfrage im Rahmen der Diplomarbeit in der Studienrichtung Publizistik- und Kommunikationswissenschaft an der Universität Wien

','

Liebe Teilnehmerin, lieber Teilnehmer,
\r\n
\r\n
\r\ndanke, dass Sie sich bereit erklärt haben, an dieser Umfrage teilzunehmen.
\r\n
\r\nDie Umfrage besteht aus 9 Abschnitten mit insgesamt 33 Fragen.
\r\nDie Beantwortung der Fragen wird nur zirka 15 Minuten in Anspruch nehmen.
\r\n
\r\nDie Befragung und die anschließende Auswertung erfolgt selbstverständlich absolut anonym.
\r\nDie Angaben zu Ihrer Person, die zu Beginn der Umfrage gestellt werden, dienen lediglich der statistischen Auswertung und werden absolut vertraulich behandelt.
\r\n
\r\n
\r\nHier geht es zur Umfrage:

','
\r\nVielen Dank für Ihre Teilnahme!
\r\n
','','','Einladung zur Teilnahme an einer Umfrage','Hallo {FIRSTNAME},

Hiermit möchten wir Sie zu einer Umfrage einladen.

Der Titel der Umfrage ist
\'{SURVEYNAME}\'

\'{SURVEYDESCRIPTION}\'

Um an dieser Umfrage teilzunehmen, klicken Sie bitte auf den unten stehenden Link.

Mit freundlichen Grüßen,

{ADMINNAME} ({ADMINEMAIL})

----------------------------------------------
Klicken Sie hier um die Umfrage zu starten:
{SURVEYURL}','Erinnerung an Teilnahme an einer Umfrage','Hallo {FIRSTNAME},

Vor kurzem haben wir Sie zu einer Umfrage eingeladen.

Zu unserem Bedauern haben wir bemerkt, dass Sie die Umfrage noch nicht ausgefüllt haben. Wir möchten Ihnen mitteilen, dass die Umfrage noch aktiv ist und würden uns freuen, wenn Sie teilnehmen könnten.

Der Titel der Umfrage ist
\'{SURVEYNAME}\'

\'{SURVEYDESCRIPTION}\'

Um an dieser Umfrage teilzunehmen, klicken Sie bitte auf den unten stehenden Link.

Mit freundlichen Grüßen,

{ADMINNAME} ({ADMINEMAIL})

----------------------------------------------
Klicken Sie hier um die Umfrage zu starten:
{SURVEYURL}','Registrierungsbestätigung für Teilnahmeumfrage','Hallo {FIRSTNAME},

Sie (oder jemand, der Ihre Email benutzt hat) haben sich für eine Umfrage mit dem Titel {SURVEYNAME} angemeldet.

Um an dieser Umfrage teilzunehmen, klicken Sie bitte auf den folgenden Link.

{SURVEYURL}

Wenn Sie irgendwelche Fragen zu dieser Umfrage haben oder wenn Sie sich _nicht_ für diese Umfrage angemeldet haben und sie glauben, dass Ihnen diese Email irrtümlicherweise zugeschickt worden ist, kontaktieren Sie bitte {ADMINNAME} unter {ADMINEMAIL}.','Abschlussbestätigung einer Umfrage','Hallo {FIRSTNAME},

Vielen Dank für die Teilnahme an der Umfrage mit dem Titel {SURVEYNAME}. Ihre Antworten wurden bei uns gespeichert.

Wenn Sie irgendwelche Fragen zu dieser Email haben, kontaktieren Sie bitte {ADMINNAME} unter {ADMINEMAIL}.

Mit freundlichen Grüßen,

{ADMINNAME}'),(47876,'de','Bewertung der Integrierten Kommunikation im Unternehmen TEST','

Online-Umfrage im Rahmen der Diplomarbeit in der Studienrichtung Publizistik- und Kommunikationswissenschaft an der Universität Wien

','

Liebe Teilnehmerin, lieber Teilnehmer,
\r\n
\r\n
\r\ndanke, dass Sie sich bereit erklärt haben, an dieser Umfrage teilzunehmen.
\r\n
\r\nDie Umfrage besteht aus 9 Abschnitten mit insgesamt 33 Fragen.
\r\nDie Beantwortung der Fragen wird nur zirka 15 Minuten in Anspruch nehmen.
\r\n
\r\nDie Befragung und die anschließende Auswertung erfolgt selbstverständlich absolut anonym.
\r\nDie Angaben zu Ihrer Person, die zu Beginn der Umfrage gestellt werden, dienen lediglich der statistischen Auswertung und werden absolut vertraulich behandelt.
\r\n
\r\n
\r\nHier geht es zur Umfrage:

','
\r\nVielen Dank für Ihre Teilnahme!
\r\n
','','','Einladung zur Teilnahme an einer Umfrage','Hallo {FIRSTNAME},

Hiermit möchten wir Sie zu einer Umfrage einladen.

Der Titel der Umfrage ist
\'{SURVEYNAME}\'

\'{SURVEYDESCRIPTION}\'

Um an dieser Umfrage teilzunehmen, klicken Sie bitte auf den unten stehenden Link.

Mit freundlichen Grüßen,

{ADMINNAME} ({ADMINEMAIL})

----------------------------------------------
Klicken Sie hier um die Umfrage zu starten:
{SURVEYURL}','Erinnerung an Teilnahme an einer Umfrage','Hallo {FIRSTNAME},

Vor kurzem haben wir Sie zu einer Umfrage eingeladen.

Zu unserem Bedauern haben wir bemerkt, dass Sie die Umfrage noch nicht ausgefüllt haben. Wir möchten Ihnen mitteilen, dass die Umfrage noch aktiv ist und würden uns freuen, wenn Sie teilnehmen könnten.

Der Titel der Umfrage ist
\'{SURVEYNAME}\'

\'{SURVEYDESCRIPTION}\'

Um an dieser Umfrage teilzunehmen, klicken Sie bitte auf den unten stehenden Link.

Mit freundlichen Grüßen,

{ADMINNAME} ({ADMINEMAIL})

----------------------------------------------
Klicken Sie hier um die Umfrage zu starten:
{SURVEYURL}','Registrierungsbestätigung für Teilnahmeumfrage','Hallo {FIRSTNAME},

Sie (oder jemand, der Ihre Email benutzt hat) haben sich für eine Umfrage mit dem Titel {SURVEYNAME} angemeldet.

Um an dieser Umfrage teilzunehmen, klicken Sie bitte auf den folgenden Link.

{SURVEYURL}

Wenn Sie irgendwelche Fragen zu dieser Umfrage haben oder wenn Sie sich _nicht_ für diese Umfrage angemeldet haben und sie glauben, dass Ihnen diese Email irrtümlicherweise zugeschickt worden ist, kontaktieren Sie bitte {ADMINNAME} unter {ADMINEMAIL}.','Abschlussbestätigung einer Umfrage','Hallo {FIRSTNAME},

Vielen Dank für die Teilnahme an der Umfrage mit dem Titel {SURVEYNAME}. Ihre Antworten wurden bei uns gespeichert.

Wenn Sie irgendwelche Fragen zu dieser Email haben, kontaktieren Sie bitte {ADMINNAME} unter {ADMINEMAIL}.

Mit freundlichen Grüßen,

{ADMINNAME}'),(31565,'en','Test for language question','description_en','welcome_en',NULL,NULL,'urldescrip_en','Invitation to participate in survey','Dear {FIRSTNAME},\n\nYou have been invited to participate in a survey.\n\nThe survey is titled:\n\"{SURVEYNAME}\"\n\n\"{SURVEYDESCRIPTION}\"\n\nTo participate, please click on the link below.\n\nSincerely,\n\n{ADMINNAME} ({ADMINEMAIL})\n\n----------------------------------------------\nClick here to do the survey:\n{SURVEYURL}','Reminder to participate in survey','Dear {FIRSTNAME},\n\nRecently we invited you to participate in a survey.\n\nWe note that you have not yet completed the survey, and wish to remind you that the survey is still available should you wish to take part.\n\nThe survey is titled:\n\"{SURVEYNAME}\"\n\n\"{SURVEYDESCRIPTION}\"\n\nTo participate, please click on the link below.\n\nSincerely,\n\n{ADMINNAME} ({ADMINEMAIL})\n\n----------------------------------------------\nClick here to do the survey:\n{SURVEYURL}','Survey Registration Confirmation','Dear {FIRSTNAME},\n\nYou, or someone using your email address, have registered to participate in an online survey titled {SURVEYNAME}.\n\nTo complete this survey, click on the following URL:\n\n{SURVEYURL}\n\nIf you have any questions about this survey, or if you did not register to participate and believe this email is in error, please contact {ADMINNAME} at {ADMINEMAIL}.','Confirmation of completed survey','Dear {FIRSTNAME},\n\nThis email is to confirm that you have completed the survey titled {SURVEYNAME} and your response has been saved. Thank you for participating.\n\nIf you have any further questions about this email, please contact {ADMINNAME} on {ADMINEMAIL}.\n\nSincerely,\n\n{ADMINNAME}'),(31565,'hr','short_title_hr','description_hr','welcome_hr',NULL,NULL,'urldescrip_hr','example@example.com','email_invite_hr','example@example.com','email_remind_hr','example@example.com','email_register_hr','example@example.com','email_confirm_hr'),(31565,'nl','short_title_nl','description_nl','welcome_nl',NULL,NULL,'urldescrip_nl','example@example.com','email_invite_nl','example@example.com','email_remind_nl','example@example.com','email_register_nl','example@example.com','email_confirm_nl'),(40,'en','Sample Survey','This is a sample survey showing of all the question types you can use in LimeSurvey.','This is the welcome text for the survey!
\nYou can can edit it in the survey properties.',NULL,NULL,'','Invitation to participate in survey','Dear {FIRSTNAME},\n\nYou have been invited to participate in a survey.\n\nThe survey is titled:\n"{SURVEYNAME}"\n\n"{SURVEYDESCRIPTION}"\n\nTo participate, please click on the link below.\n\nSincerely,\n\n{ADMINNAME} ({ADMINEMAIL})\n\n----------------------------------------------\nClick here to do the survey:\n{SURVEYURL}','Reminder to participate in survey','Dear {FIRSTNAME},\n\nRecently we invited you to participate in a survey.\n\nWe note that you have not yet completed the survey, and wish to remind you that the survey is still available should you wish to take part.\n\nThe survey is titled:\n"{SURVEYNAME}"\n\n"{SURVEYDESCRIPTION}"\n\nTo participate, please click on the link below.\n\nSincerely,\n\n{ADMINNAME} ({ADMINEMAIL})\n\n----------------------------------------------\nClick here to do the survey:\n{SURVEYURL}','Survey Registration Confirmation','Dear {FIRSTNAME},\n\nYou, or someone using your email address, have registered to participate in an online survey titled {SURVEYNAME}.\n\nTo complete this survey, click on the following URL:\n\n{SURVEYURL}\n\nIf you have any questions about this survey, or if you did not register to participate and believe this email is in error, please contact {ADMINNAME} at {ADMINEMAIL}.','Confirmation of completed survey','Dear {FIRSTNAME},\n\nThis email is to confirm that you have completed the survey titled {SURVEYNAME} and your response has been saved. Thank you for participating.\n\nIf you have any further questions about this email, please contact {ADMINNAME} on {ADMINEMAIL}.\n\nSincerely,\n\n{ADMINNAME}'),(29846,'en','Sample Survey for v1.8 (all questions plus most options)','This is a sample survey showing all the question types you can use in LimeSurvey version 1.80.
\nIt also shows some of the options available for each question.
','This is the welcome text for the survey!
\nYou can can edit it in the survey properties.',NULL,NULL,'','Invitation to participate in survey','Dear {FIRSTNAME},\n\nYou have been invited to participate in a survey.\n\nThe survey is titled:\n"{SURVEYNAME}"\n\n"{SURVEYDESCRIPTION}"\n\nTo participate, please click on the link below.\n\nSincerely,\n\n{ADMINNAME} ({ADMINEMAIL})\n\n----------------------------------------------\nClick here to do the survey:\n{SURVEYURL}','Reminder to participate in survey','Dear {FIRSTNAME},\n\nRecently we invited you to participate in a survey.\n\nWe note that you have not yet completed the survey, and wish to remind you that the survey is still available should you wish to take part.\n\nThe survey is titled:\n"{SURVEYNAME}"\n\n"{SURVEYDESCRIPTION}"\n\nTo participate, please click on the link below.\n\nSincerely,\n\n{ADMINNAME} ({ADMINEMAIL})\n\n----------------------------------------------\nClick here to do the survey:\n{SURVEYURL}','Survey Registration Confirmation','Dear {FIRSTNAME},\n\nYou, or someone using your email address, have registered to participate in an online survey titled {SURVEYNAME}.\n\nTo complete this survey, click on the following URL:\n\n{SURVEYURL}\n\nIf you have any questions about this survey, or if you did not register to participate and believe this email is in error, please contact {ADMINNAME} at {ADMINEMAIL}.','Confirmation of completed survey','Dear {FIRSTNAME},\n\nThis email is to confirm that you have completed the survey titled {SURVEYNAME} and your response has been saved. Thank you for participating.\n\nIf you have any further questions about this email, please contact {ADMINNAME} on {ADMINEMAIL}.\n\nSincerely,\n\n{ADMINNAME}'); /*!40000 ALTER TABLE `lime_surveys_languagesettings` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `lime_surveys_rights` -- DROP TABLE IF EXISTS `lime_surveys_rights`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `lime_surveys_rights` ( `sid` int(10) unsigned NOT NULL DEFAULT '0', `uid` int(10) unsigned NOT NULL DEFAULT '0', `edit_survey_property` tinyint(1) NOT NULL DEFAULT '0', `define_questions` tinyint(1) NOT NULL DEFAULT '0', `browse_response` tinyint(1) NOT NULL DEFAULT '0', `export` tinyint(1) NOT NULL DEFAULT '0', `delete_survey` tinyint(1) NOT NULL DEFAULT '0', `activate_survey` tinyint(1) NOT NULL DEFAULT '0', PRIMARY KEY (`sid`,`uid`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `lime_surveys_rights` -- LOCK TABLES `lime_surveys_rights` WRITE; /*!40000 ALTER TABLE `lime_surveys_rights` DISABLE KEYS */; INSERT INTO `lime_surveys_rights` VALUES (67268,1,1,1,1,1,1,1),(29975,1,1,1,1,1,1,1),(47876,1,1,1,1,1,1,1),(31565,1,1,1,1,1,1,1),(40,1,1,1,1,1,1,1),(29846,1,1,1,1,1,1,1); /*!40000 ALTER TABLE `lime_surveys_rights` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `lime_templates` -- DROP TABLE IF EXISTS `lime_templates`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `lime_templates` ( `folder` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', `creator` int(11) NOT NULL DEFAULT '0', PRIMARY KEY (`folder`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `lime_templates` -- LOCK TABLES `lime_templates` WRITE; /*!40000 ALTER TABLE `lime_templates` DISABLE KEYS */; /*!40000 ALTER TABLE `lime_templates` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `lime_templates_rights` -- DROP TABLE IF EXISTS `lime_templates_rights`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `lime_templates_rights` ( `uid` int(11) NOT NULL DEFAULT '0', `folder` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', `use` int(1) NOT NULL DEFAULT '0', PRIMARY KEY (`uid`,`folder`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `lime_templates_rights` -- LOCK TABLES `lime_templates_rights` WRITE; /*!40000 ALTER TABLE `lime_templates_rights` DISABLE KEYS */; /*!40000 ALTER TABLE `lime_templates_rights` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `lime_user_groups` -- DROP TABLE IF EXISTS `lime_user_groups`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `lime_user_groups` ( `ugid` int(10) unsigned NOT NULL AUTO_INCREMENT, `name` varchar(20) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', `description` text COLLATE utf8_unicode_ci NOT NULL, `owner_id` int(10) unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`ugid`), UNIQUE KEY `name` (`name`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `lime_user_groups` -- LOCK TABLES `lime_user_groups` WRITE; /*!40000 ALTER TABLE `lime_user_groups` DISABLE KEYS */; /*!40000 ALTER TABLE `lime_user_groups` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `lime_user_in_groups` -- DROP TABLE IF EXISTS `lime_user_in_groups`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `lime_user_in_groups` ( `ugid` int(10) unsigned NOT NULL DEFAULT '0', `uid` int(10) unsigned NOT NULL DEFAULT '0', KEY `user_in_groups_idx1` (`ugid`,`uid`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `lime_user_in_groups` -- LOCK TABLES `lime_user_in_groups` WRITE; /*!40000 ALTER TABLE `lime_user_in_groups` DISABLE KEYS */; /*!40000 ALTER TABLE `lime_user_in_groups` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `lime_users` -- DROP TABLE IF EXISTS `lime_users`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `lime_users` ( `uid` int(11) NOT NULL AUTO_INCREMENT, `users_name` varchar(64) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', `password` blob NOT NULL, `full_name` varchar(50) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', `parent_id` int(10) unsigned NOT NULL DEFAULT '0', `lang` varchar(20) COLLATE utf8_unicode_ci DEFAULT NULL, `email` text COLLATE utf8_unicode_ci, `create_survey` tinyint(1) NOT NULL DEFAULT '0', `create_user` tinyint(1) NOT NULL DEFAULT '0', `delete_user` tinyint(1) NOT NULL DEFAULT '0', `superadmin` tinyint(1) NOT NULL DEFAULT '0', `configurator` tinyint(1) NOT NULL DEFAULT '0', `manage_template` tinyint(1) NOT NULL DEFAULT '0', `manage_label` tinyint(1) NOT NULL DEFAULT '0', `htmleditormode` varchar(7) COLLATE utf8_unicode_ci DEFAULT 'default', `one_time_pw` blob, PRIMARY KEY (`uid`), UNIQUE KEY `users_name` (`users_name`) ) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `lime_users` -- LOCK TABLES `lime_users` WRITE; /*!40000 ALTER TABLE `lime_users` DISABLE KEYS */; INSERT INTO `lime_users` VALUES (1,'mam','06ddf8ed75a7f41957239a65972cc2fbc28f41007f6f0278fc6250fac40dcac0','Markus A. Mascelli',0,'de','mam@heimam.at',1,1,1,1,1,1,1,'default',''); /*!40000 ALTER TABLE `lime_users` ENABLE KEYS */; UNLOCK TABLES; -- -- Current Database: `mambo_netspot` -- CREATE DATABASE /*!32312 IF NOT EXISTS*/ `mambo_netspot` /*!40100 DEFAULT CHARACTER SET latin1 */; USE `mambo_netspot`; -- -- Table structure for table `netspot_banner` -- DROP TABLE IF EXISTS `netspot_banner`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `netspot_banner` ( `bid` int(11) NOT NULL AUTO_INCREMENT, `cid` int(11) NOT NULL DEFAULT '0', `type` varchar(10) NOT NULL DEFAULT 'banner', `name` varchar(50) NOT NULL DEFAULT '', `imptotal` int(11) NOT NULL DEFAULT '0', `impmade` int(11) NOT NULL DEFAULT '0', `clicks` int(11) NOT NULL DEFAULT '0', `imageurl` varchar(100) NOT NULL DEFAULT '', `clickurl` varchar(200) NOT NULL DEFAULT '', `date` datetime DEFAULT NULL, `showBanner` tinyint(1) NOT NULL DEFAULT '0', `checked_out` tinyint(1) NOT NULL DEFAULT '0', `checked_out_time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `editor` varchar(50) DEFAULT NULL, `custombannercode` text, PRIMARY KEY (`bid`), KEY `viewbanner` (`showBanner`) ) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `netspot_banner` -- LOCK TABLES `netspot_banner` WRITE; /*!40000 ALTER TABLE `netspot_banner` DISABLE KEYS */; INSERT INTO `netspot_banner` VALUES (1,1,'banner','Ka-Ching',0,42,0,'ka-chingBanner.gif','http://www.miro.com.au','2004-07-07 15:31:29',1,0,'2000-00-00 00:00:00',NULL,NULL),(2,1,'banner','Oi!',0,48,0,'OiBanner.gif','http://www.miro.com.au','2004-07-07 15:31:29',1,0,'2000-00-00 00:00:00',NULL,NULL); /*!40000 ALTER TABLE `netspot_banner` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `netspot_bannerclient` -- DROP TABLE IF EXISTS `netspot_bannerclient`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `netspot_bannerclient` ( `cid` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(60) NOT NULL DEFAULT '', `contact` varchar(60) NOT NULL DEFAULT '', `email` varchar(60) NOT NULL DEFAULT '', `extrainfo` text NOT NULL, `checked_out` tinyint(1) NOT NULL DEFAULT '0', `checked_out_time` time DEFAULT NULL, `editor` varchar(50) DEFAULT NULL, PRIMARY KEY (`cid`) ) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `netspot_bannerclient` -- LOCK TABLES `netspot_bannerclient` WRITE; /*!40000 ALTER TABLE `netspot_bannerclient` DISABLE KEYS */; INSERT INTO `netspot_bannerclient` VALUES (1,'Miro International Pty.','Administrator','admin@miro.com.au','',0,'00:00:00',NULL); /*!40000 ALTER TABLE `netspot_bannerclient` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `netspot_bannerfinish` -- DROP TABLE IF EXISTS `netspot_bannerfinish`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `netspot_bannerfinish` ( `bid` int(11) NOT NULL AUTO_INCREMENT, `cid` int(11) NOT NULL DEFAULT '0', `type` varchar(10) NOT NULL DEFAULT '', `name` varchar(50) NOT NULL DEFAULT '', `impressions` int(11) NOT NULL DEFAULT '0', `clicks` int(11) NOT NULL DEFAULT '0', `imageurl` varchar(50) NOT NULL DEFAULT '', `datestart` datetime DEFAULT NULL, `dateend` datetime DEFAULT NULL, PRIMARY KEY (`bid`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `netspot_bannerfinish` -- LOCK TABLES `netspot_bannerfinish` WRITE; /*!40000 ALTER TABLE `netspot_bannerfinish` DISABLE KEYS */; /*!40000 ALTER TABLE `netspot_bannerfinish` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `netspot_categories` -- DROP TABLE IF EXISTS `netspot_categories`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `netspot_categories` ( `id` int(11) NOT NULL AUTO_INCREMENT, `parent_id` int(11) NOT NULL DEFAULT '0', `title` varchar(50) NOT NULL DEFAULT '', `name` varchar(255) NOT NULL DEFAULT '', `image` varchar(100) NOT NULL DEFAULT '', `section` varchar(50) NOT NULL DEFAULT '', `image_position` varchar(10) NOT NULL DEFAULT '', `description` text NOT NULL, `published` tinyint(1) NOT NULL DEFAULT '0', `checked_out` int(11) unsigned NOT NULL DEFAULT '0', `checked_out_time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `editor` varchar(50) DEFAULT NULL, `ordering` int(11) NOT NULL DEFAULT '0', `access` tinyint(3) unsigned NOT NULL DEFAULT '0', `count` int(11) NOT NULL DEFAULT '0', `params` text NOT NULL, PRIMARY KEY (`id`), KEY `cat_idx` (`section`,`published`,`access`), KEY `idx_section` (`section`), KEY `idx_access` (`access`), KEY `idx_checkout` (`checked_out`) ) ENGINE=MyISAM AUTO_INCREMENT=13 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `netspot_categories` -- LOCK TABLES `netspot_categories` WRITE; /*!40000 ALTER TABLE `netspot_categories` DISABLE KEYS */; INSERT INTO `netspot_categories` VALUES (1,0,'Latest','Latest News','taking_notes.jpg','1','left','The latest news from the Mambo Team',1,0,'0000-00-00 00:00:00','',0,0,1,''),(2,0,'Mambo','Mambo','clock.jpg','com_weblinks','left','A selection of links that are all related to the Mambo project.',1,0,'0000-00-00 00:00:00',NULL,0,0,0,''),(3,0,'Newsflash','Newsflash','','2','left','',1,0,'0000-00-00 00:00:00','',0,0,0,''),(4,0,'Mambo','Mambo','','com_newsfeeds','left','',1,0,'0000-00-00 00:00:00',NULL,2,0,0,''),(5,0,'Business: general','Business: general','','com_newsfeeds','left','',1,0,'0000-00-00 00:00:00',NULL,1,0,0,''),(7,0,'Examples','Example FAQs','key.jpg','3','left','Here you will find an example set of FAQs.',1,0,'0000-00-00 00:00:00',NULL,0,0,2,''),(9,0,'Finance','Finance','','com_newsfeeds','left','',1,0,'0000-00-00 00:00:00',NULL,5,0,0,''),(10,0,'Linux','Linux','','com_newsfeeds','left','
\r\n',1,0,'0000-00-00 00:00:00',NULL,6,0,0,''),(11,0,'Internet','Internet','','com_newsfeeds','left','',1,0,'0000-00-00 00:00:00',NULL,7,0,0,''),(12,0,'Contacts','Contacts','','com_contact_details','left','Contact Details for this website',1,0,'0000-00-00 00:00:00',NULL,0,0,0,''); /*!40000 ALTER TABLE `netspot_categories` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `netspot_components` -- DROP TABLE IF EXISTS `netspot_components`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `netspot_components` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(50) NOT NULL DEFAULT '', `link` varchar(255) NOT NULL DEFAULT '', `menuid` int(11) unsigned NOT NULL DEFAULT '0', `parent` int(11) unsigned NOT NULL DEFAULT '0', `admin_menu_link` varchar(255) NOT NULL DEFAULT '', `admin_menu_alt` varchar(255) NOT NULL DEFAULT '', `option` varchar(50) NOT NULL DEFAULT '', `ordering` int(11) NOT NULL DEFAULT '0', `admin_menu_img` varchar(255) NOT NULL DEFAULT '', `iscore` tinyint(4) NOT NULL DEFAULT '0', `params` text NOT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM AUTO_INCREMENT=19 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `netspot_components` -- LOCK TABLES `netspot_components` WRITE; /*!40000 ALTER TABLE `netspot_components` DISABLE KEYS */; INSERT INTO `netspot_components` VALUES (1,'Banners','',0,0,'','Banner Management','com_banners',0,'js/ThemeOffice/component.png',0,''),(2,'Manage Banners','',0,1,'option=com_banners','Active Banners','com_banners',1,'js/ThemeOffice/edit.png',0,''),(3,'Manage Clients','',0,1,'option=com_banners&task=listclients','Manage Clients','com_banners',2,'js/ThemeOffice/categories.png',0,''),(4,'Web Links','option=com_weblinks',0,0,'','Manage Weblinks','com_weblinks',0,'js/ThemeOffice/globe2.png',0,''),(5,'Weblink Items','',0,4,'option=com_weblinks','View existing weblinks','com_weblinks',1,'js/ThemeOffice/edit.png',0,''),(6,'Weblink Categories','',0,4,'option=categories§ion=com_weblinks','Manage weblink categories','',2,'js/ThemeOffice/categories.png',0,''),(7,'Contacts','option=com_contact',0,0,'','Edit contact details','com_contact',0,'js/ThemeOffice/user.png',1,''),(8,'Manage Contacts','',0,7,'option=com_contact','Edit contact details','com_contact',0,'js/ThemeOffice/edit.png',1,''),(9,'Contact Categories','',0,7,'option=categories§ion=com_contact_details','Manage contact categories','',2,'js/ThemeOffice/categories.png',1,''),(10,'FrontPage','option=com_frontpage',0,0,'','Manage Front Page Items','com_frontpage',0,'js/ThemeOffice/component.png',1,''),(11,'Polls','option=com_poll',0,0,'option=com_poll','Manage Polls','com_poll',0,'js/ThemeOffice/component.png',0,''),(12,'News Feeds','option=com_newsfeeds',0,0,'','News Feeds Management','com_newsfeeds',0,'js/ThemeOffice/component.png',0,''),(13,'Manage News Feeds','',0,12,'option=com_newsfeeds','Manage News Feeds','com_newsfeeds',1,'js/ThemeOffice/edit.png',0,''),(14,'Manage Categories','',0,12,'option=com_categories§ion=com_newsfeeds','Manage Categories','',2,'js/ThemeOffice/categories.png',0,''),(15,'Login','option=com_login',0,0,'','','com_login',0,'',1,''),(16,'Search','option=com_search',0,0,'','','com_search',0,'',1,''),(17,'Syndicate','',0,0,'option=com_syndicate&hidemainmenu=1','Manage Syndication Settings','com_syndicate',0,'js/ThemeOffice/component.png',0,''),(18,'Mass Mail','',0,0,'option=com_massmail&hidemainmenu=1','Send Mass Mail','com_massmail',0,'js/ThemeOffice/mass_email.png',0,''); /*!40000 ALTER TABLE `netspot_components` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `netspot_contact_details` -- DROP TABLE IF EXISTS `netspot_contact_details`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `netspot_contact_details` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(100) NOT NULL DEFAULT '', `con_position` varchar(50) DEFAULT NULL, `address` text, `suburb` varchar(50) DEFAULT NULL, `state` varchar(20) DEFAULT NULL, `country` varchar(50) DEFAULT NULL, `postcode` varchar(10) DEFAULT NULL, `telephone` varchar(25) DEFAULT NULL, `fax` varchar(25) DEFAULT NULL, `misc` mediumtext, `image` varchar(100) DEFAULT NULL, `imagepos` varchar(20) DEFAULT NULL, `email_to` varchar(100) DEFAULT NULL, `default_con` tinyint(1) unsigned NOT NULL DEFAULT '0', `published` tinyint(1) unsigned NOT NULL DEFAULT '0', `checked_out` int(11) unsigned NOT NULL DEFAULT '0', `checked_out_time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `ordering` int(11) NOT NULL DEFAULT '0', `params` text NOT NULL, `user_id` int(11) NOT NULL DEFAULT '0', `catid` int(11) NOT NULL DEFAULT '0', `access` tinyint(3) unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`id`) ) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `netspot_contact_details` -- LOCK TABLES `netspot_contact_details` WRITE; /*!40000 ALTER TABLE `netspot_contact_details` DISABLE KEYS */; INSERT INTO `netspot_contact_details` VALUES (1,'Name','Position','Street','Suburb','State','Country','Zip Code','Telephone','Fax','Miscellanous info','asterisk.png','top','email@email.com',1,1,0,'0000-00-00 00:00:00',1,'',0,12,0); /*!40000 ALTER TABLE `netspot_contact_details` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `netspot_content` -- DROP TABLE IF EXISTS `netspot_content`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `netspot_content` ( `id` int(11) unsigned NOT NULL AUTO_INCREMENT, `title` varchar(100) NOT NULL DEFAULT '', `title_alias` varchar(100) NOT NULL DEFAULT '', `introtext` mediumtext NOT NULL, `fulltext` mediumtext NOT NULL, `state` tinyint(3) NOT NULL DEFAULT '0', `sectionid` int(11) unsigned NOT NULL DEFAULT '0', `mask` int(11) unsigned NOT NULL DEFAULT '0', `catid` int(11) unsigned NOT NULL DEFAULT '0', `created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `created_by` int(11) unsigned NOT NULL DEFAULT '0', `created_by_alias` varchar(100) NOT NULL DEFAULT '', `modified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `modified_by` int(11) unsigned NOT NULL DEFAULT '0', `checked_out` int(11) unsigned NOT NULL DEFAULT '0', `checked_out_time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `publish_up` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `publish_down` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `images` text NOT NULL, `urls` text NOT NULL, `attribs` text NOT NULL, `version` int(11) unsigned NOT NULL DEFAULT '1', `parentid` int(11) unsigned NOT NULL DEFAULT '0', `ordering` int(11) NOT NULL DEFAULT '0', `metakey` text NOT NULL, `metadesc` text NOT NULL, `access` int(11) unsigned NOT NULL DEFAULT '0', `hits` int(11) unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`id`), KEY `idx_section` (`sectionid`), KEY `idx_access` (`access`), KEY `idx_checkout` (`checked_out`), KEY `idx_state` (`state`), KEY `idx_catid` (`catid`), KEY `idx_mask` (`mask`) ) ENGINE=MyISAM AUTO_INCREMENT=12 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `netspot_content` -- LOCK TABLES `netspot_content` WRITE; /*!40000 ALTER TABLE `netspot_content` DISABLE KEYS */; INSERT INTO `netspot_content` VALUES (1,'Welcome to Mambo','Welcome','If you\'ve read \r\n\r\nanything at all about Content Management Systems (CMS), you\'ll probably know at least three things: CMS are the most exciting way to do business, CMS can be really, I mean really, complicated and lastly \r\n\r\nPortals are absolutely, outrageously, often unaffordably expensive.

{mosimage}Mambo is set to change all that ... Mambo is different from the normal models for portal software. For a start, it\'s \r\n\r\nnot complicated. Mambo has been developed for the masses. It\'s licensed under the GNU/GPL license, easy to install and administer and reliable. Mambo doesn\'t even require the user or administrator of the system \r\n\r\nto know HTML to operate it once it\'s up and running.','

Mambo features:

\r\n\r\r\n\r\n\n

Extensive Administration:

\r\n',1,1,0,1,'2004-06-12 11:54:06',62,'Web \r\n\r\nMaster','2004-06-12 12:33:27',62,0,'0000-00-00 00:00:00','2004-01-01 00:00:00','0000-00-00 00:00:00','asterisk.png|left|Mambo Logo|1|Mambo Flower Logo|bottom|center|120','','',1,0,1,'','',0,0),(2,'Newsflash 1','','Mambo 4.5 is \'Power In Simplicity\'!. It has never been easier to create\r\nyour own dynamic site. Manage all your content from the best CMS admin\r\ninterface.','',1,2,1,3,'0000-00-00 00:00:00',62,'','0000-00-00 00:00:00',0,0,'0000-00-00 00:00:00','2004-08-09 00:00:00','0000-00-00 00:00:00','','','',1,0,1,'','',0,0),(3,'Newsflash 2','','Yesterday all servers in the U.S. went out on strike in a bid to get more RAM and better CPUs. A spokes person said that the need for better RAM was due to some fool increasing the front-\r\n\r\nside bus speed. In future, busses will be told to slow down in residential motherboards.','',1,2,1,3,'2004-08-09 08:30:34',62,'','0000-00-00 00:00:00',0,0,'0000-00-00 00:00:00','2004-08-09 00:00:00','0000-00-00 00:00:00','','','',1,0,2,'','',0,0),(4,'Newsflash 3','','Aoccdrnig to a rscheearch at an Elingsh uinervtisy, it deosn\'t mttaer in waht oredr the ltteers in a wrod are, the olny iprmoetnt tihng is taht frist and lsat ltteer is at the rghit pclae. \r\n\r\nThe rset can be a toatl mses and you can sitll raed it wouthit porbelm. Tihs is bcuseae we do not raed ervey lteter by itslef but the wrod as a wlohe.','',1,2,1,3,'2004-08-09 08:30:34',62,'','0000-00-00 00:00:00',0,0,'0000-00-00 00:00:00','2004-08-09 00:00:00','0000-00-00 00:00:00','','','',1,0,3,'','',0,1),(5,'Mambo License Guidelines','','Learn more about how Mambo is licensed and how this affects you.

Mambo is released under the GNU General Public license (GNU GPL).The\r\nGNU GPL provides for a \r\n\r\nperson or persons to distribute Mambo for a fee,\r\nbut not actually charging for the software itself, because Mambo is\r\nfree. Mambo is free to share and change, but if you do change it in\r\nanyway, can you also \r\n\r\nchange the license and make it commercial? No! The\r\nwhole GPL is devoted to ensuring this does not happen. Copyright, a\r\nmuch more refined and stringent law will prevent this as well.

So with \r\n\r\nregard to Mambo, the GPL and copyright:

You MAY distribute it and charge for that service. You MAY change it, add design and content to it and you MAY charge \r\n\r\nfor that. You may NOT alter the license and you must NOT alter the copyright. You do NOT have to show a \'Powered by Mambo\' graphic, as it not a copyright \r\n\r\nnotice.

In other words, you must NOT pretend that Mambo is yours, and you must NOT charge people for Mambo.

\r\nUse Mambo to empower yourself and your clients by taking away the\r\n\'Black Magic\' \r\n\r\nthat surrounds putting content on the internet. Charge\r\nfor the value you add and not for the hard work that Miro, the Mambo\r\nDevelopment Team and the Mambo community have put into it.

\r\n\r\nGuidelines:

Mambo is \"free\" software released under the GNU General Public License (GPL).

The\r\nword \"free\'\' has two legitimate general meanings; it can refer either\r\nto freedom \r\n\r\nor to price. When we speak of \"free software\'\', we\'re\r\ntalking about freedom, not price. (Think of \"free speech\'\', not \"free\r\nbeer\'\'.)

Free software is a matter of the users\' freedom\r\nto \r\n\r\nrun, copy, distribute, study, change and improve the software. More\r\nprecisely, it refers to four kinds of freedom, for the users of the\r\nsoftware:

{mospagebreak heading=Introduction&title=Guidelines}

1. What license is Mambo released under?

Mambo is released under the \r\n\r\nGNU GPL. A copy of this is included with your copy of Mambo and can also be found at http://www.fsf.org/licenses/gpl.html. Unofficial translations can also be found at \r\n\r\nhttp://www.fsf.org/licenses/translations.html.

2. Who owns the copyright to Mambo?

The\r\ncopyright to Mambo is held by Miro International Pty Ltd. Miro were the\r\r\n\r\n\noriginal authors of Mambo and continue to actively support the project.

3. Are there any restrictions to your use of Mambo?

The GNU GPL grants you the freedom to use the software \r\n\r\nfor whatever purpose you see fit.

4. May I charge money for Mambo?

The\r\nGPL allows everyone the freedom to do this. The right to charge money\r\nto distribute Mambo is part of the \r\n\r\ndefinition of \"free\" software.

When\r\npeople think of \"selling software\'\', they usually imagine doing it the\r\nway most companies do it: making the software proprietary rather than\r\nfree. So to avoid \r\n\r\nambiguity you may you may charge to distribute the\r\nsoftware and any other service you provide along the way. You may not\r\ncharge for the software itself.

Remember if someone pays your fee the GPL also \r\n\r\ngives him or her the freedom to pass on the software with or without a fee.

5. May I remove \"powered by Mambo, Copyright Miro etc\" from the footer?

Yes you can although we would \r\n\r\nhope that you would retain it as a badge of honour.

6. May I remove the \"copyright\" statements from the source code to Mambo?

No, you must keep all copyright notices and credits in \r\n\r\nthe source code.

7. Does the GPL mean that my website content is also GPL?

No.\r\nThe copyright and license of Mambo does not cover the content that you\r\ncreate. Using Mambo does \r\n\r\nnot place any restrictions, legally, on the\r\nlicense or copyright you use for the content of your website.

8. I have modified Mambo for my own web site. Do I have to release these \r\n\r\nmodifications?

The\r\nGPL permits anyone to make a modified version for their own use without\r\nthe requirement to distribute it or pass on those changes to others.

9. I have made \r\n\r\na modification (hack) to the Mambo core code. Do I have to release it under the GPL?

If\r\nyou chose to distribute your modifications to others it must be\r\nreleased under the same terms that \r\n\r\nyou received the original code. So\r\nyour modifications must be released under the GPL. You may of course in\r\nthis case modify the headers for the source code to include your own\r\ncopyright statement. If you \r\n\r\ndo so you must clearly annotate in the\r\nsource code your amendments, changes or additions.

10. I have written a Component, Module, Template for Mambo. Do I have to release it under the GPL? \r\n\r\n

No The GPL allows you to write your own extensions for Mambo and to release those extensions under whatever license you chose.

11.\r\nI have written a Component, Module, Template \r\n\r\nfor Mambo and released it\r\nunder the GPL and I charge a fee for it, but website X is giving it\r\naway for free.

If someone pays your fee the GPL also\r\ngives him or her the freedom to pass on \r\n\r\nthe software with or without a\r\nfee. Placing a restriction on someone\'s use of GPL licensed software is\r\nin breach of the GPL itself.

12. May I purchase a copy of Mambo, which has the copyright \r\n\r\nstatements removed?

Although other GPL products may be available in this way Mambo is not.

13. I believe person A is in breach of the GPL what should I do?

You \r\n\r\nshould report it. First check all the facts that you can and then report it by sending an e-mail to license-violation@mamboserver.com.

14. Who has the power to enforce the GNU GPL \r\n\r\nlicense of Mambo?

Only\r\nthe copyright holder, Miro International Pty Ltd, has the power to do\r\nthis. If the Mambo Development Team finds, or is made aware of, a\r\nbreach of the GPL they will \r\n\r\nreport it to Miro for them to take any\r\nnecessary action.

Miro takes copyright infringement very seriously and will prosecute to the full extent of the law.

\r\n\r\n

15.\r\nWebsite X is using, or offering, my non-GPL Component, Module, Template\r\nwithout my permission, or in breach of its license, can you help me?

Whilst\r\nthis is not within the \r\n\r\nremit or responsibility of Mambo we are willing\r\nto act as intermediaries in this on your behalf. In most cases these\r\nsituations arise out of simple misunderstandings and can be settled\r\namicably. You should \r\n\r\ne-mail full details to license-violation@mamboserver.com.

DISCLAIMER

This\r\ndocument refers to the software program Mambo, Version 4.x and all\r\nsubsequent versions, \r\n\r\nreleased under the GNU General Public License and\r\ncopyright Miro International Pty Ltd.

This document is subject to additions, modifications and other changes at any time without notice.

A\r\r\n\r\n\nlawyer has not prepared this document. You should consult a lawyer\r\nexperienced in copyright, licensing and intellectual property for\r\nclarification.

Document Rev. 1.4 - 17th August 2004

\r\n\r\n


','',1,0,0,0,'2004-08-19 20:11:07',62,'','2004-08-19 20:14:49',62,0,'0000-00-00 00:00:00','2004-08-19 00:00:00','0000-00-00 00:00:00','','','menu_image=\nitem_title=1\npageclass_sfx=\r\n\r\n\nback_button=\nrating=\nauthor=\ncreatedate=\nmodifydate=\npdf=\nprint=\nemail=',1,0,11,'','',0,10),(6,'Example News Item 1','News1','{mosimage}Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat,\r\nsed diam voluptua. At vero \r\n\r\neos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit\r\namet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod \r\n\r\ntempor invidunt ut labore et dolore magna aliquyam erat, sed diam\r\nvoluptua. At vero eos et accusam et justo duo dolores et ea rebum.','

{mosimage}Duis autem vel eum iriure dolor in hendrerit in vulputate\r\r\n\r\n\nvelit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at\r\nvero eros et accumsan et iusto odio dignissim qui blandit praesent luptatum\r\nzzril delenit augue duis dolore te feugait nulla \r\n\r\nfacilisi. Lorem ipsum dolor\r\nsit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt\r\nut laoreet dolore magna aliquam erat volutpat.

\r\n\r\n

Ut wisi enim ad minim veniam, quis \r\n\r\nnostrud exerci tation\r\nullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis\r\nautem vel eum iriure dolor in hendrerit in vulputate velit esse molestie\r\nconsequat, vel illum dolore eu \r\n\r\nfeugiat nulla facilisis at vero eros et accumsan\r\net iusto odio dignissim qui blandit praesent luptatum zzril delenit augue duis\r\ndolore te feugait nulla facilisi.

\r\n\r\n

Nam liber tempor cum soluta \r\n\r\nnobis eleifend option congue\r\nnihil imperdiet doming id quod mazim placerat facer possim assum. Lorem ipsum\r\ndolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod\r\ntincidunt ut laoreet \r\n\r\ndolore magna aliquam erat volutpat. Ut wisi enim ad minim\r\nveniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut\r\naliquip ex ea commodo consequat.

\r\n\r\n

Duis autem vel eum iriure \r\n\r\ndolor in hendrerit in vulputate\r\nvelit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis. At\r\nvero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd\r\ngubergren, no sea \r\n\r\ntakimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum\r\ndolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor\r\ninvidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At \r\n\r\nvero\r\neos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no\r\nsea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit\r\namet, consetetur sadipscing elitr, At accusam \r\n\r\naliquyam diam diam dolore dolores\r\nduo eirmod eos erat, et nonumy sed tempor et et invidunt justo labore Stet\r\nclita ea et gubergren, kasd magna no rebum. sanctus sea sed takimata ut vero\r\nvoluptua. est Lorem \r\n\r\nipsum dolor sit amet. Lorem ipsum dolor sit amet,\r\nconsetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore\r\net dolore magna aliquyam erat.

\r\n\r\n

Consetetur sadipscing elitr, sed \r\n\r\ndiam nonumy eirmod tempor\r\ninvidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero\r\neos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no\r\nsea takimata sanctus \r\n\r\nest Lorem ipsum dolor sit amet. Lorem ipsum dolor sit\r\namet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut\r\nlabore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et \r\n\r\naccusam\r\net justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata\r\nsanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur\r\nsadipscing elitr, sed diam nonumy eirmod \r\n\r\ntempor invidunt ut labore et dolore\r\nmagna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo\r\ndolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est\r\nLorem ipsum dolor \r\n\r\nsit amet.

',1,1,0,1,'2004-07-07 11:54:06',62,'','2004-07-07 18:05:05',62,0,'0000-00-00 00:00:00','2004-07-07 00:00:00','0000-00-00 00:00:00','food/coffee.jpg|left||0\r\nfood/bread.jpg|right||0','','',1,0,2,'','',0,4),(7,'Example News Item 2','News2','

{mosimage}Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat,\r\nsed diam voluptua. At \r\n\r\nvero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit\r\namet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy \r\n\r\neirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam\r\nvoluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum \r\n\r\ndolor sit amet. Lorem\r\nipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At\r\nvero eos et accusam et justo duo \r\n\r\ndolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet.

','',1,1,0,1,'2004-07-07 11:54:06',62,'','2004-07-07 18:11:30',62,0,'0000-00-00 00:00:00','2004-07-07 00:00:00','0000-00-00 00:00:00','food/bun.jpg|right||0','','',1,0,3,'','',0,2),(8,'Example News Item 3','News3','

{mosimage}Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat,\r\nsed diam voluptua. At \r\n\r\nvero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit\r\namet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy \r\n\r\neirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam\r\nvoluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum \r\n\r\ndolor sit amet. Lorem\r\nipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At\r\nvero eos et accusam et justo duo \r\n\r\ndolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet.

','',1,1,0,1,'2004-04-12 11:54:06',62,'','2004-07-07 18:08:23',62,0,'0000-00-00 00:00:00','2004-07-07 00:00:00','0000-00-00 00:00:00','fruit/pears.jpg|right||0','','',1,0,4,'','',0,1),(9,'Example News Item 4','News4','

Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat,\r\nsed diam voluptua. Lorem ipsum \r\n\r\ndolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam\r\nvoluptua. At\r\nvero eos et accusam et justo duo dolores et ea rebum. Stet \r\n\r\nclita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet.

','

{mosimage}Duis autem vel eum iriure dolor in hendrerit in vulputate\r\nvelit esse molestie consequat, vel illum dolore eu \r\n\r\nfeugiat nulla facilisis at\r\nvero eros et accumsan et iusto odio dignissim qui blandit praesent luptatum\r\nzzril delenit augue duis dolore te feugait nulla facilisi. Lorem ipsum dolor\r\nsit amet, consectetuer \r\n\r\nadipiscing elit, sed diam nonummy nibh euismod tincidunt\r\nut laoreet dolore magna aliquam erat volutpat.

\r\n\r\n{mospagebreak}

{mosimage}Ut wisi enim ad minim veniam, quis nostrud exerci tation\r\r\n\r\n\nullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis\r\nautem vel eum iriure dolor in hendrerit in vulputate velit esse molestie\r\nconsequat, vel illum dolore eu feugiat nulla facilisis at \r\n\r\nvero eros et accumsan\r\net iusto odio dignissim qui blandit praesent luptatum zzril delenit augue duis\r\ndolore te feugait nulla facilisi.

\r\n\r\n

{mosimage}Nam liber tempor cum soluta nobis eleifend option \r\n\r\ncongue\r\nnihil imperdiet doming id quod mazim placerat facer possim assum. Lorem ipsum\r\ndolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod\r\ntincidunt ut laoreet dolore magna aliquam \r\n\r\nerat volutpat. Ut wisi enim ad minim\r\nveniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut\r\naliquip ex ea commodo consequat.

\r\n\r\n

Duis autem vel eum iriure dolor in hendrerit in \r\n\r\nvulputate\r\nvelit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis. At\r\nvero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd\r\ngubergren, no sea takimata sanctus est Lorem \r\n\r\nipsum dolor sit amet. Lorem ipsum\r\ndolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor\r\ninvidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero\r\neos et accusam et \r\n\r\njusto duo dolores et ea rebum. Stet clita kasd gubergren, no\r\nsea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit\r\namet, consetetur sadipscing elitr, At accusam aliquyam diam diam dolore \r\n\r\ndolores\r\nduo eirmod eos erat, et nonumy sed tempor et et invidunt justo labore Stet\r\nclita ea et gubergren, kasd magna no rebum. sanctus sea sed takimata ut vero\r\nvoluptua. est Lorem ipsum dolor sit amet. \r\n\r\nLorem ipsum dolor sit amet,\r\nconsetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore\r\net dolore magna aliquyam erat.

\r\n\r\n{mospagebreak}

Consetetur sadipscing elitr, sed diam \r\n\r\nnonumy eirmod tempor\r\ninvidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero\r\neos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no\r\nsea takimata sanctus est \r\n\r\nLorem ipsum dolor sit amet. Lorem ipsum dolor sit\r\namet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut\r\nlabore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam\r\n\r\n\r\net justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata\r\nsanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur\r\nsadipscing elitr, sed diam nonumy eirmod tempor \r\n\r\ninvidunt ut labore et dolore\r\nmagna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo\r\ndolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est\r\nLorem ipsum dolor sit \r\n\r\namet.

',1,1,0,1,'2004-07-07 11:54:06',62,'','2004-07-07 18:10:23',62,0,'0000-00-00 00:00:00','2004-07-07 00:00:00','0000-00-00 00:00:00','fruit/strawberry.jpg|left||0\r\nfruit/pears.jpg|right||0\r\r\n\r\n\nfruit/cherry.jpg|left||0','','',1,0,5,'','',0,6),(10,'Example FAQ Item 1','FAQ1','

Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat,\r\nsed diam voluptua. Lorem ipsum \r\n\r\ndolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam\r\nvoluptua. At\r\nvero eos et accusam et justo duo dolores et ea rebum. Stet \r\n\r\nclita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet.

','',1,3,0,7,'2004-05-12 11:54:06',62,'','2004-07-07 18:10:23',62,0,'0000-00-00 00:00:00','2004-01-01 00:00:00','0000-00-00 00:00:00','','','',1,0,5,'','',0,8),(11,'Example FAQ Item 2','FAQ2','

Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat,\r\nsed diam voluptua. Lorem ipsum \r\n\r\ndolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam\r\nvoluptua. At\r\nvero eos et accusam et justo duo dolores et ea rebum. Stet \r\n\r\nclita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet.

','

{mosimage}Duis autem vel eum iriure dolor in hendrerit in vulputate\r\nvelit esse molestie consequat, vel illum dolore eu \r\n\r\nfeugiat nulla facilisis at\r\nvero eros et accumsan et iusto odio dignissim qui blandit praesent luptatum\r\nzzril delenit augue duis dolore te feugait nulla facilisi. Lorem ipsum dolor\r\nsit amet, consectetuer \r\n\r\nadipiscing elit, sed diam nonummy nibh euismod tincidunt\r\nut laoreet dolore magna aliquam erat volutpat.

\r\n\r\n

{mosimage}Ut wisi enim ad minim veniam, quis nostrud exerci tation\r\nullamcorper suscipit \r\n\r\nlobortis nisl ut aliquip ex ea commodo consequat. Duis\r\nautem vel eum iriure dolor in hendrerit in vulputate velit esse molestie\r\nconsequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan\r\n\r\n\r\net iusto odio dignissim qui blandit praesent luptatum zzril delenit augue duis\r\ndolore te feugait nulla facilisi.

\r\n\r\n

{mosimage}Nam liber tempor cum soluta nobis eleifend option congue\r\nnihil \r\n\r\nimperdiet doming id quod mazim placerat facer possim assum. Lorem ipsum\r\ndolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod\r\ntincidunt ut laoreet dolore magna aliquam erat volutpat. Ut \r\n\r\nwisi enim ad minim\r\nveniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut\r\naliquip ex ea commodo consequat.

\r\n\r\n

Duis autem vel eum iriure dolor in hendrerit in vulputate\r\nvelit \r\n\r\nesse molestie consequat, vel illum dolore eu feugiat nulla facilisis. At\r\nvero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd\r\ngubergren, no sea takimata sanctus est Lorem ipsum dolor sit \r\n\r\namet. Lorem ipsum\r\ndolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor\r\ninvidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero\r\neos et accusam et justo duo dolores \r\n\r\net ea rebum. Stet clita kasd gubergren, no\r\nsea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit\r\namet, consetetur sadipscing elitr, At accusam aliquyam diam diam dolore dolores\r\nduo \r\n\r\neirmod eos erat, et nonumy sed tempor et et invidunt justo labore Stet\r\nclita ea et gubergren, kasd magna no rebum. sanctus sea sed takimata ut vero\r\nvoluptua. est Lorem ipsum dolor sit amet. Lorem ipsum dolor \r\n\r\nsit amet,\r\nconsetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore\r\net dolore magna aliquyam erat.

\r\n\r\n

Consetetur sadipscing elitr, sed diam nonumy eirmod tempor\r\ninvidunt ut \r\n\r\nlabore et dolore magna aliquyam erat, sed diam voluptua. At vero\r\neos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no\r\nsea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum \r\n\r\ndolor sit\r\namet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut\r\nlabore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam\r\net justo duo dolores et ea rebum. Stet \r\n\r\nclita kasd gubergren, no sea takimata\r\nsanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur\r\nsadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore\r\nmagna \r\n\r\naliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo\r\ndolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est\r\nLorem ipsum dolor sit amet.

',1,3,0,7,'2004-05-12 11:54:06',62,'Web master','2004-07-07 18:10:23',62,0,'0000-00-00 00:00:00','2004-01-01 00:00:00','0000-00-00 00:00:00','fruit/cherry.jpg|left||0\r\nfruit/peas.jpg|right||0\r\nfood/milk.jpg|left||0','','',1,0,5,'','',0,10); /*!40000 ALTER TABLE `netspot_content` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `netspot_content_frontpage` -- DROP TABLE IF EXISTS `netspot_content_frontpage`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `netspot_content_frontpage` ( `content_id` int(11) NOT NULL DEFAULT '0', `ordering` int(11) NOT NULL DEFAULT '0', PRIMARY KEY (`content_id`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `netspot_content_frontpage` -- LOCK TABLES `netspot_content_frontpage` WRITE; /*!40000 ALTER TABLE `netspot_content_frontpage` DISABLE KEYS */; INSERT INTO `netspot_content_frontpage` VALUES (1,1),(2,2),(3,3),(4,4),(5,5); /*!40000 ALTER TABLE `netspot_content_frontpage` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `netspot_content_rating` -- DROP TABLE IF EXISTS `netspot_content_rating`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `netspot_content_rating` ( `content_id` int(11) NOT NULL DEFAULT '0', `rating_sum` int(11) unsigned NOT NULL DEFAULT '0', `rating_count` int(11) unsigned NOT NULL DEFAULT '0', `lastip` varchar(50) NOT NULL DEFAULT '', PRIMARY KEY (`content_id`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `netspot_content_rating` -- LOCK TABLES `netspot_content_rating` WRITE; /*!40000 ALTER TABLE `netspot_content_rating` DISABLE KEYS */; /*!40000 ALTER TABLE `netspot_content_rating` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `netspot_core_acl_aro` -- DROP TABLE IF EXISTS `netspot_core_acl_aro`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `netspot_core_acl_aro` ( `aro_id` int(11) NOT NULL AUTO_INCREMENT, `section_value` varchar(240) NOT NULL DEFAULT '0', `value` varchar(240) NOT NULL DEFAULT '', `order_value` int(11) NOT NULL DEFAULT '0', `name` varchar(255) NOT NULL DEFAULT '', `hidden` int(11) NOT NULL DEFAULT '0', PRIMARY KEY (`aro_id`), UNIQUE KEY `section_value_value_aro` (`section_value`,`value`), UNIQUE KEY `netspot_gacl_section_value_value_aro` (`section_value`,`value`), KEY `hidden_aro` (`hidden`), KEY `netspot_gacl_hidden_aro` (`hidden`) ) ENGINE=MyISAM AUTO_INCREMENT=11 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `netspot_core_acl_aro` -- LOCK TABLES `netspot_core_acl_aro` WRITE; /*!40000 ALTER TABLE `netspot_core_acl_aro` DISABLE KEYS */; INSERT INTO `netspot_core_acl_aro` VALUES (10,'users','62',0,'Administrator',0); /*!40000 ALTER TABLE `netspot_core_acl_aro` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `netspot_core_acl_aro_groups` -- DROP TABLE IF EXISTS `netspot_core_acl_aro_groups`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `netspot_core_acl_aro_groups` ( `group_id` int(11) NOT NULL AUTO_INCREMENT, `parent_id` int(11) NOT NULL DEFAULT '0', `name` varchar(255) NOT NULL DEFAULT '', `lft` int(11) NOT NULL DEFAULT '0', `rgt` int(11) NOT NULL DEFAULT '0', PRIMARY KEY (`group_id`), KEY `parent_id_aro_groups` (`parent_id`), KEY `netspot_gacl_parent_id_aro_groups` (`parent_id`), KEY `netspot_gacl_lft_rgt_aro_groups` (`lft`,`rgt`) ) ENGINE=MyISAM AUTO_INCREMENT=31 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `netspot_core_acl_aro_groups` -- LOCK TABLES `netspot_core_acl_aro_groups` WRITE; /*!40000 ALTER TABLE `netspot_core_acl_aro_groups` DISABLE KEYS */; INSERT INTO `netspot_core_acl_aro_groups` VALUES (17,0,'ROOT',1,22),(28,17,'USERS',2,21),(29,28,'Public Frontend',3,12),(18,29,'Registered',4,11),(19,18,'Author',5,10),(20,19,'Editor',6,9),(21,20,'Publisher',7,8),(30,28,'Public Backend',13,20),(23,30,'Manager',14,19),(24,23,'Administrator',15,18),(25,24,'Super Administrator',16,17); /*!40000 ALTER TABLE `netspot_core_acl_aro_groups` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `netspot_core_acl_aro_sections` -- DROP TABLE IF EXISTS `netspot_core_acl_aro_sections`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `netspot_core_acl_aro_sections` ( `section_id` int(11) NOT NULL AUTO_INCREMENT, `value` varchar(230) NOT NULL DEFAULT '', `order_value` int(11) NOT NULL DEFAULT '0', `name` varchar(230) NOT NULL DEFAULT '', `hidden` int(11) NOT NULL DEFAULT '0', PRIMARY KEY (`section_id`), UNIQUE KEY `value_aro_sections` (`value`), UNIQUE KEY `netspot_gacl_value_aro_sections` (`value`), KEY `hidden_aro_sections` (`hidden`), KEY `netspot_gacl_hidden_aro_sections` (`hidden`) ) ENGINE=MyISAM AUTO_INCREMENT=11 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `netspot_core_acl_aro_sections` -- LOCK TABLES `netspot_core_acl_aro_sections` WRITE; /*!40000 ALTER TABLE `netspot_core_acl_aro_sections` DISABLE KEYS */; INSERT INTO `netspot_core_acl_aro_sections` VALUES (10,'users',1,'Users',0); /*!40000 ALTER TABLE `netspot_core_acl_aro_sections` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `netspot_core_acl_groups_aro_map` -- DROP TABLE IF EXISTS `netspot_core_acl_groups_aro_map`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `netspot_core_acl_groups_aro_map` ( `group_id` int(11) NOT NULL DEFAULT '0', `section_value` varchar(240) NOT NULL DEFAULT '', `aro_id` int(11) NOT NULL DEFAULT '0', UNIQUE KEY `group_id_aro_id_groups_aro_map` (`group_id`,`section_value`,`aro_id`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `netspot_core_acl_groups_aro_map` -- LOCK TABLES `netspot_core_acl_groups_aro_map` WRITE; /*!40000 ALTER TABLE `netspot_core_acl_groups_aro_map` DISABLE KEYS */; INSERT INTO `netspot_core_acl_groups_aro_map` VALUES (25,'',10); /*!40000 ALTER TABLE `netspot_core_acl_groups_aro_map` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `netspot_core_log_items` -- DROP TABLE IF EXISTS `netspot_core_log_items`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `netspot_core_log_items` ( `time_stamp` date NOT NULL DEFAULT '0000-00-00', `item_table` varchar(50) NOT NULL DEFAULT '', `item_id` int(11) unsigned NOT NULL DEFAULT '0', `hits` int(11) unsigned NOT NULL DEFAULT '0' ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `netspot_core_log_items` -- LOCK TABLES `netspot_core_log_items` WRITE; /*!40000 ALTER TABLE `netspot_core_log_items` DISABLE KEYS */; /*!40000 ALTER TABLE `netspot_core_log_items` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `netspot_core_log_searches` -- DROP TABLE IF EXISTS `netspot_core_log_searches`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `netspot_core_log_searches` ( `search_term` varchar(128) NOT NULL DEFAULT '', `hits` int(11) unsigned NOT NULL DEFAULT '0' ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `netspot_core_log_searches` -- LOCK TABLES `netspot_core_log_searches` WRITE; /*!40000 ALTER TABLE `netspot_core_log_searches` DISABLE KEYS */; /*!40000 ALTER TABLE `netspot_core_log_searches` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `netspot_groups` -- DROP TABLE IF EXISTS `netspot_groups`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `netspot_groups` ( `id` tinyint(3) unsigned NOT NULL DEFAULT '0', `name` varchar(50) NOT NULL DEFAULT '', PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `netspot_groups` -- LOCK TABLES `netspot_groups` WRITE; /*!40000 ALTER TABLE `netspot_groups` DISABLE KEYS */; INSERT INTO `netspot_groups` VALUES (0,'Public'),(1,'Registered'),(2,'Special'); /*!40000 ALTER TABLE `netspot_groups` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `netspot_mambots` -- DROP TABLE IF EXISTS `netspot_mambots`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `netspot_mambots` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(100) NOT NULL DEFAULT '', `element` varchar(100) NOT NULL DEFAULT '', `folder` varchar(100) NOT NULL DEFAULT '', `access` tinyint(3) unsigned NOT NULL DEFAULT '0', `ordering` int(11) NOT NULL DEFAULT '0', `published` tinyint(3) NOT NULL DEFAULT '0', `iscore` tinyint(3) NOT NULL DEFAULT '0', `client_id` tinyint(3) NOT NULL DEFAULT '0', `checked_out` int(11) unsigned NOT NULL DEFAULT '0', `checked_out_time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `params` text NOT NULL, PRIMARY KEY (`id`), KEY `idx_folder` (`published`,`client_id`,`access`,`folder`) ) ENGINE=MyISAM AUTO_INCREMENT=20 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `netspot_mambots` -- LOCK TABLES `netspot_mambots` WRITE; /*!40000 ALTER TABLE `netspot_mambots` DISABLE KEYS */; INSERT INTO `netspot_mambots` VALUES (1,'MOS Image','mosimage','content',0,-10000,1,1,0,0,'0000-00-00 00:00:00',''),(2,'MOS Pagination','mospaging','content',0,10000,1,1,0,0,'0000-00-00 00:00:00',''),(3,'Legacy Mambot Includer','legacybots','content',0,1,0,1,0,0,'0000-00-00 00:00:00',''),(4,'SEF','mossef','content',0,3,1,0,0,0,'0000-00-00 00:00:00',''),(5,'MOS Rating','mosvote','content',0,4,1,1,0,0,'0000-00-00 00:00:00',''),(6,'Search Content','content.searchbot','search',0,1,1,1,0,0,'0000-00-00 00:00:00',''),(7,'Search Weblinks','weblinks.searchbot','search',0,2,1,1,0,0,'0000-00-00 00:00:00',''),(8,'Code support','moscode','content',0,2,0,0,0,0,'0000-00-00 00:00:00',''),(9,'No WYSIWYG Editor','none','editors',0,0,0,1,0,0,'0000-00-00 00:00:00',''),(10,'TinyMCE WYSIWYG Editor','tinymce','editors',0,0,1,1,0,0,'0000-00-00 00:00:00','theme=advanced'),(11,'MOS Image Editor Button','mosimage.btn','editors-xtd',0,0,1,0,0,0,'0000-00-00 00:00:00',''),(12,'MOS Pagebreak Editor Button','mospage.btn','editors-xtd',0,0,1,0,0,0,'0000-00-00 00:00:00',''),(13,'Search Contacts','contacts.searchbot','search',0,3,1,1,0,0,'0000-00-00 00:00:00',''),(14,'Search Categories','categories.searchbot','search',0,4,1,0,0,0,'0000-00-00 00:00:00',''),(15,'Search Sections','sections.searchbot','search',0,5,1,0,0,0,'0000-00-00 00:00:00',''),(16,'Email Cloaking','mosemailcloak','content',0,5,1,0,0,0,'0000-00-00 00:00:00',''),(17,'GeSHi','geshi','content',0,5,0,0,0,0,'0000-00-00 00:00:00',''),(18,'Search Newsfeeds','newsfeeds.searchbot','search',0,6,1,0,0,0,'0000-00-00 00:00:00',''),(19,'Load Module Positions','mosloadposition','content',0,6,1,0,0,0,'0000-00-00 00:00:00',''); /*!40000 ALTER TABLE `netspot_mambots` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `netspot_menu` -- DROP TABLE IF EXISTS `netspot_menu`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `netspot_menu` ( `id` int(11) NOT NULL AUTO_INCREMENT, `menutype` varchar(25) DEFAULT NULL, `name` varchar(100) DEFAULT NULL, `link` text, `type` varchar(50) NOT NULL DEFAULT '', `published` tinyint(1) NOT NULL DEFAULT '0', `parent` int(11) unsigned NOT NULL DEFAULT '0', `componentid` int(11) unsigned NOT NULL DEFAULT '0', `sublevel` int(11) DEFAULT '0', `ordering` int(11) DEFAULT '0', `checked_out` int(11) unsigned NOT NULL DEFAULT '0', `checked_out_time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `pollid` int(11) NOT NULL DEFAULT '0', `browserNav` tinyint(4) DEFAULT '0', `access` tinyint(3) unsigned NOT NULL DEFAULT '0', `utaccess` tinyint(3) unsigned NOT NULL DEFAULT '0', `params` text NOT NULL, PRIMARY KEY (`id`), KEY `componentid` (`componentid`,`menutype`,`published`,`access`), KEY `menutype` (`menutype`) ) ENGINE=MyISAM AUTO_INCREMENT=26 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `netspot_menu` -- LOCK TABLES `netspot_menu` WRITE; /*!40000 ALTER TABLE `netspot_menu` DISABLE KEYS */; INSERT INTO `netspot_menu` VALUES (1,'mainmenu','Home','index.php?option=com_frontpage','components',1,0,10,0,1,0,'0000-00-00 00:00:00',0,0,0,3,'leading=1\r\nintro=2\r\nlink=1\r\nimage=1\r\npage_title=0\r\r\n\r\n\nheader=Welcome to the Frontpage\r\norderby_sec=front\r\nprint=0\r\npdf=0\r\nemail=0'),(2,'mainmenu','News','index.php?option=com_content&task=section&id=1','content_section',1,0,1,0,3,0,'0000-00-00 00:00:00',0,0,0,3,''),(3,'mainmenu','Contact Us','index.php?option=com_contact','components',1,0,7,0,6,0,'0000-00-00 00:00:00',0,0,0,3,''),(23,'mainmenu','Links','index.php?option=com_weblinks','components',1,0,4,0,5,0,'0000-00-00 00:00:00',0,0,0,0,'menu_image=web_links.jpg\npageclass_sfx=\nback_button=\npage_title=1\nheader=\r\n\r\n\nheadings=1\nhits=\nitem_description=1\nother_cat=1\ndescription=1\ndescription_text=\nimage=-1\nimage_align=right\nweblink_icons='),(5,'mainmenu','Search','index.php?option=com_search','components',1,0,16,0,7,0,'0000-00-00 00:00:00',0,0,0,3,''),(6,'mainmenu','Mambo License','index.php?option=com_content&task=view&id=5','content_typed',1,0,11,0,2,0,'0000-00-00 00:00:00',0,0,0,0,''),(7,'mainmenu','News Feeds','index.php?option=com_newsfeeds','components',1,0,12,0,8,0,'0000-00-00 00:00:00',0,0,0,3,'menu_image=-1\npageclass_sfx=\nback_button=\npage_title=1\nheader='),(8,'mainmenu','Wrapper','index.php?option=com_wrapper','wrapper',1,0,0,0,10,0,'0000-00-00 00:00:00',0,0,0,3,'menu_image=-1\npageclass_sfx=\nback_button=\npage_title=1\nheader=\nscrolling=auto\r\n\r\n\nwidth=100%\nheight=600\nheight_auto=1\nurl=www.mamboserver.com'),(9,'mainmenu','Blog','index.php?option=com_content&task=blogsection&id=0','content_blog_section',1,0,0,0,4,0,'0000-00-00 00:00:00',0,0,0,3,'menu_image=-1\npageclass_sfx=\nback_button=\nheader=A blog \r\n\r\nof all section with no images\npage_title=1\nleading=1\nintro=3\ncolumns=2\nlink=4\norderby_pri=\norderby_sec=\r\n\r\n\npagination=2\npagination_results=1\nimage=0\ndescription=0\ndescription_image=0\ncategory=0\ncategory_link=0\nitem_title=1\nlink_titles=\nreadmore=\nrating=\nauthor=\ncreatedate=\nmodifydate=\npdf=\nprint=\r\n\r\n\nemail=\nsectionid='),(10,'othermenu','MamboServer','http://www.mamboserver.com','url',1,0,0,0,1,0,'0000-00-00 00:00:00',0,0,0,3,''),(11,'othermenu','Administrator','administrator/','url',1,0,0,0,3,0,'0000-00-00 00:00:00',0,0,0,3,'menu_image=-1'),(12,'othermenu','MamboForge','http://mamboforge.net','url',1,0,0,0,2,0,'0000-00-00 00:00:00',0,0,0,3,''),(21,'usermenu','Your Details','index.php?option=com_user&task=UserDetails','url',1,0,0,0,1,0,'2000-00-00 00:00:00',0,0,1,3,''),(13,'usermenu','Submit News','index.php?option=com_content&task=new§ionid=1&Itemid=0','url',1,0,0,0,2,0,'2000-00-00 00:00:00',0,0,1,2,''),(14,'usermenu','Submit WebLink','index.php?option=com_weblinks&task=new','url',1,0,0,0,4,0,'2000-00-00 00:00:00',0,0,1,2,''),(15,'usermenu','Check-In My Items','index.php?option=com_user&task=CheckIn','url',1,0,0,0,5,0,'0000-00-00 00:00:00',0,0,1,2,''),(16,'usermenu','Logout','index.php?option=com_login','components',1,0,15,0,5,0,'0000-00-00 00:00:00',0,0,1,3,''),(17,'topmenu','Home','index.php','url',1,0,0,0,4,0,'0000-00-00 00:00:00',0,0,0,3,''),(18,'topmenu','Contact Us','index.php?option=com_contact&Itemid=3','url',1,0,0,0,2,0,'0000-00-00 00:00:00',0,0,0,3,''),(19,'topmenu','News','index.php?option=com_content&task=section&id=1&Itemid=2','url',1,0,0,0,3,0,'0000-00-00 00:00:00',0,0,0,3,''),(20,'topmenu','Links','index.php?option=com_weblinks&Itemid=22','url',1,0,0,0,1,0,'0000-00-00 00:00:00',0,0,0,3,'menu_image=-1'),(25,'mainmenu','FAQ\'s','index.php?option=com_content&task=category§ionid=3&id=7','content_category',1,0,7,0,9,0,'0000-00-00 00:00:00',0,0,0,0,'menu_image=-1\npage_title=1\npageclass_sfx=\r\n\r\n\nback_button=\norderby=\ndate_format=\ndate=\nauthor=\ntitle=1\nhits=\nheadings=1\nnavigation=1\norder_select=1\ndisplay=1\ndisplay_num=50\nfilter=1\nfilter_type=title\r\n\r\n\nother_cat=1\nempty_cat=0\ncat_items=1\ncat_description=1'); /*!40000 ALTER TABLE `netspot_menu` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `netspot_messages` -- DROP TABLE IF EXISTS `netspot_messages`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `netspot_messages` ( `message_id` int(10) unsigned NOT NULL AUTO_INCREMENT, `user_id_from` int(10) unsigned NOT NULL DEFAULT '0', `user_id_to` int(10) unsigned NOT NULL DEFAULT '0', `folder_id` int(10) unsigned NOT NULL DEFAULT '0', `date_time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `state` int(11) NOT NULL DEFAULT '0', `priority` int(1) unsigned NOT NULL DEFAULT '0', `subject` varchar(230) NOT NULL DEFAULT '', `message` text NOT NULL, PRIMARY KEY (`message_id`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `netspot_messages` -- LOCK TABLES `netspot_messages` WRITE; /*!40000 ALTER TABLE `netspot_messages` DISABLE KEYS */; /*!40000 ALTER TABLE `netspot_messages` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `netspot_messages_cfg` -- DROP TABLE IF EXISTS `netspot_messages_cfg`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `netspot_messages_cfg` ( `user_id` int(10) unsigned NOT NULL DEFAULT '0', `cfg_name` varchar(100) NOT NULL DEFAULT '', `cfg_value` varchar(255) NOT NULL DEFAULT '', UNIQUE KEY `idx_user_var_name` (`user_id`,`cfg_name`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `netspot_messages_cfg` -- LOCK TABLES `netspot_messages_cfg` WRITE; /*!40000 ALTER TABLE `netspot_messages_cfg` DISABLE KEYS */; /*!40000 ALTER TABLE `netspot_messages_cfg` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `netspot_modules` -- DROP TABLE IF EXISTS `netspot_modules`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `netspot_modules` ( `id` int(11) NOT NULL AUTO_INCREMENT, `title` text NOT NULL, `content` text NOT NULL, `ordering` int(11) NOT NULL DEFAULT '0', `position` varchar(10) DEFAULT NULL, `checked_out` int(11) unsigned NOT NULL DEFAULT '0', `checked_out_time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `published` tinyint(1) NOT NULL DEFAULT '0', `module` varchar(50) DEFAULT NULL, `numnews` int(11) NOT NULL DEFAULT '0', `access` tinyint(3) unsigned NOT NULL DEFAULT '0', `showtitle` tinyint(3) unsigned NOT NULL DEFAULT '1', `params` text NOT NULL, `iscore` tinyint(4) NOT NULL DEFAULT '0', `client_id` tinyint(4) NOT NULL DEFAULT '0', PRIMARY KEY (`id`), KEY `published` (`published`,`access`), KEY `newsfeeds` (`module`,`published`) ) ENGINE=MyISAM AUTO_INCREMENT=34 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `netspot_modules` -- LOCK TABLES `netspot_modules` WRITE; /*!40000 ALTER TABLE `netspot_modules` DISABLE KEYS */; INSERT INTO `netspot_modules` VALUES (1,'Polls','',1,'right',0,'0000-00-00 00:00:00',1,'mod_poll',0,0,1,'',0,0),(2,'User Menu','',2,'left',0,'0000-00-00 00:00:00',1,'mod_mainmenu',0,1,1,'menutype=usermenu',1,0),(3,'Main Menu','',1,'left',0,'0000-00-00 00:00:00',1,'mod_mainmenu',0,0,1,'menutype=mainmenu',1,0),(4,'Login Form','',3,'left',0,'0000-00-00 00:00:00',1,'mod_login',0,0,1,'',1,0),(5,'Syndicate','',4,'left',0,'0000-00-00 00:00:00',1,'mod_rssfeed',0,0,1,'',1,0),(6,'Latest News','',4,'user1',0,'0000-00-00 00:00:00',1,'mod_latestnews',0,0,1,'',1,0),(7,'Statistics','',4,'left',0,'0000-00-00 00:00:00',0,'mod_stats',0,0,1,'serverinfo=1\nsiteinfo=1\ncounter=1\nincrease=0\nmoduleclass_sfx=',0,0),(8,'Who\'s Online','',1,'right',0,'0000-00-00 00:00:00',1,'mod_whosonline',0,0,1,'online=1\nusers=1\nmoduleclass_sfx=',0,0),(9,'Popular','',6,'user2',0,'0000-00-00 00:00:00',1,'mod_mostread',0,0,1,'',0,0),(10,'Template Chooser','',6,'left',0,'0000-00-00 00:00:00',0,'mod_templatechooser',0,0,1,'show_preview=1',0,0),(11,'Archive','',7,'left',0,'0000-00-00 00:00:00',0,'mod_archive',0,0,1,'',1,0),(12,'Sections','',8,'left',0,'0000-00-00 00:00:00',0,'mod_sections',0,0,1,'',1,0),(13,'Newsflash','',1,'top',0,'0000-00-00 00:00:00',1,'mod_newsflash',0,0,1,'catid=3\r\nstyle=random\r\nitems=\r\nmoduleclass_sfx=',0,0),(14,'Related Items','',9,'left',0,'0000-00-00 00:00:00',0,'mod_related_items',0,0,1,'',0,0),(15,'Search','',1,'user4',0,'0000-00-00 00:00:00',1,'mod_search',0,0,0,'',0,0),(16,'Random Image','',9,'right',0,'0000-00-00 00:00:00',1,'mod_random_image',0,0,1,'',0,0),(17,'Top Menu','',1,'user3',0,'0000-00-00 00:00:00',1,'mod_mainmenu',0,0,0,'menutype=topmenu\nmenu_style=list_flat\nmenu_images=n\nmenu_images_align=left\nexpand_menu=n\nclass_sfx=-nav\r\n\r\n\nmoduleclass_sfx=\nindent_image1=0\nindent_image2=0\nindent_image3=0\nindent_image4=0\nindent_image5=0\nindent_image6=0',1,0),(18,'Banners','',1,'banner',0,'0000-00-00 00:00:00',1,'mod_banners',0,0,0,'banner_cids=\nmoduleclass_sfx=\n',1,0),(19,'Components','',2,'cpanel',0,'0000-00-00 00:00:00',1,'mod_components',0,99,1,'',1,1),(20,'Popular','',3,'cpanel',0,'0000-00-00 00:00:00',1,'mod_popular',0,99,1,'',0,1),(21,'Latest Items','',4,'cpanel',0,'0000-00-00 00:00:00',1,'mod_latest',0,99,1,'',0,1),(22,'Menu Stats','',5,'cpanel',0,'0000-00-00 00:00:00',1,'mod_stats',0,99,1,'',0,1),(23,'Unread Messages','',1,'header',0,'0000-00-00 00:00:00',1,'mod_unread',0,99,1,'',1,1),(24,'Online Users','',2,'header',0,'0000-00-00 00:00:00',1,'mod_online',0,99,1,'',1,1),(25,'Full Menu','',1,'top',0,'0000-00-00 00:00:00',1,'mod_fullmenu',0,99,1,'',1,1),(26,'Pathway','',1,'pathway',0,'0000-00-00 00:00:00',1,'mod_pathway',0,99,1,'',1,1),(27,'Toolbar','',1,'toolbar',0,'0000-00-00 00:00:00',1,'mod_toolbar',0,99,1,'',1,1),(28,'System Message','',1,'inset',0,'0000-00-00 00:00:00',1,'mod_mosmsg',0,99,1,'',1,1),(29,'Quick Icons','',1,'icon',0,'0000-00-00 00:00:00',1,'mod_quickicon',0,99,1,'',1,1),(30,'Mamboforge','',1,'cpanel',0,'0000-00-00 00:00:00',0,'',0,99,1,'rssurl=http://mamboforge.net/export/rss_sfnews.php\nrssitems=5\nrssdesc=1\ncache=0\nmoduleclass_sfx=',0,1),(31,'Other Menu','',2,'left',0,'0000-00-00 00:00:00',1,'mod_mainmenu',0,0,0,'menutype=othermenu\nmenu_style=vert_indent\ncache=0\nmenu_images=0\nmenu_images_align=0\nexpand_menu=0\nclass_sfx=\r\n\r\n\nmoduleclass_sfx=\nindent_image=0\nindent_image1=\nindent_image2=\nindent_image3=\nindent_image4=\nindent_image5=\nindent_image6=',0,0),(32,'Wrapper','',10,'left',0,'0000-00-00 00:00:00',1,'mod_wrapper',0,0,1,'',0,0),(33,'Logged','',0,'cpanel',0,'0000-00-00 00:00:00',1,'mod_logged',0,99,1,'',0,1); /*!40000 ALTER TABLE `netspot_modules` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `netspot_modules_menu` -- DROP TABLE IF EXISTS `netspot_modules_menu`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `netspot_modules_menu` ( `moduleid` int(11) NOT NULL DEFAULT '0', `menuid` int(11) NOT NULL DEFAULT '0', PRIMARY KEY (`moduleid`,`menuid`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `netspot_modules_menu` -- LOCK TABLES `netspot_modules_menu` WRITE; /*!40000 ALTER TABLE `netspot_modules_menu` DISABLE KEYS */; INSERT INTO `netspot_modules_menu` VALUES (1,1),(2,0),(3,0),(4,1),(5,1),(6,1),(6,2),(6,4),(6,27),(6,36),(8,1),(9,1),(9,2),(9,4),(9,27),(9,36),(10,1),(13,0),(15,0),(17,0),(18,0),(31,0); /*!40000 ALTER TABLE `netspot_modules_menu` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `netspot_newsfeeds` -- DROP TABLE IF EXISTS `netspot_newsfeeds`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `netspot_newsfeeds` ( `catid` int(11) NOT NULL DEFAULT '0', `id` int(11) NOT NULL AUTO_INCREMENT, `name` text NOT NULL, `link` text NOT NULL, `filename` varchar(200) DEFAULT NULL, `published` tinyint(1) NOT NULL DEFAULT '0', `numarticles` int(11) unsigned NOT NULL DEFAULT '1', `cache_time` int(11) unsigned NOT NULL DEFAULT '3600', `checked_out` tinyint(3) unsigned NOT NULL DEFAULT '0', `checked_out_time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `ordering` int(11) NOT NULL DEFAULT '0', PRIMARY KEY (`id`), KEY `published` (`published`) ) ENGINE=MyISAM AUTO_INCREMENT=11 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `netspot_newsfeeds` -- LOCK TABLES `netspot_newsfeeds` WRITE; /*!40000 ALTER TABLE `netspot_newsfeeds` DISABLE KEYS */; INSERT INTO `netspot_newsfeeds` VALUES (4,1,'Mamboforge.net','http://mamboforge.net/export/rss_sfnews.php','',1,5,3600,0,'0000-00-00 00:00:00',8),(4,2,'Mamboportal','http://www.mamboportal.com/index2.php?option=com_rss&no_html=1','',1,5,3600,0,'0000-00-00 00:00:00',9),(4,3,'Mambohut','http://www.mambohut.com/index2.php?option=com_rss&no_html=1','',1,5,3600,0,'0000-00-00 00:00:00',10),(10,4,'Linux Today','http://linuxtoday.com/backend/my-netscape.rdf','',1,3,3600,0,'0000-00-00 00:00:00',1),(5,5,'Business News','http://headlines.internet.com/internetnews/bus-news/news.rss','',1,3,3600,0,'0000-00-00 00:00:00',2),(11,6,'Web Developer News','http://headlines.internet.com/internetnews/wd-news/news.rss','',1,3,3600,0,'0000-00-00 00:00:00',3),(10,7,'Linux Central:New Products','http://linuxcentral.com/backend/lcnew.rdf','',1,3,3600,0,'0000-00-00 00:00:00',4),(10,8,'Linux Central:Best Selling','http://linuxcentral.com/backend/lcbestns.rdf','',1,3,3600,0,'0000-00-00 00:00:00',5),(10,9,'Linux Central:Daily Specials','http://linuxcentral.com/backend/lcspecialns.rdf','',1,3,3600,0,'0000-00-00 00:00:00',6),(9,10,'Internet:Finance News','http://headlines.internet.com/internetnews/fina-news/news.rss','',1,3,3600,0,'0000-00-00 00:00:00',7); /*!40000 ALTER TABLE `netspot_newsfeeds` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `netspot_poll_data` -- DROP TABLE IF EXISTS `netspot_poll_data`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `netspot_poll_data` ( `id` int(11) NOT NULL AUTO_INCREMENT, `pollid` int(4) NOT NULL DEFAULT '0', `text` text NOT NULL, `hits` int(11) NOT NULL DEFAULT '0', PRIMARY KEY (`id`), KEY `pollid` (`pollid`,`text`(1)) ) ENGINE=MyISAM AUTO_INCREMENT=13 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `netspot_poll_data` -- LOCK TABLES `netspot_poll_data` WRITE; /*!40000 ALTER TABLE `netspot_poll_data` DISABLE KEYS */; INSERT INTO `netspot_poll_data` VALUES (1,14,'Absolutely simple',1),(2,14,'Reasonably easy',0),(3,14,'Not straight-forward but I worked it out',0),(4,14,'I had to install extra server stuff',0),(5,14,'I had no idea and got my friend to do it',0),(6,14,'My dog ran away with the README ...',0),(7,14,'',0),(8,14,'',0),(9,14,'',0),(10,14,'',0),(11,14,'',0),(12,14,'',0); /*!40000 ALTER TABLE `netspot_poll_data` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `netspot_poll_date` -- DROP TABLE IF EXISTS `netspot_poll_date`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `netspot_poll_date` ( `id` bigint(20) NOT NULL AUTO_INCREMENT, `date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `vote_id` int(11) NOT NULL DEFAULT '0', `poll_id` int(11) NOT NULL DEFAULT '0', PRIMARY KEY (`id`), KEY `poll_id` (`poll_id`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `netspot_poll_date` -- LOCK TABLES `netspot_poll_date` WRITE; /*!40000 ALTER TABLE `netspot_poll_date` DISABLE KEYS */; /*!40000 ALTER TABLE `netspot_poll_date` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `netspot_poll_menu` -- DROP TABLE IF EXISTS `netspot_poll_menu`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `netspot_poll_menu` ( `pollid` int(11) NOT NULL DEFAULT '0', `menuid` int(11) NOT NULL DEFAULT '0', PRIMARY KEY (`pollid`,`menuid`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `netspot_poll_menu` -- LOCK TABLES `netspot_poll_menu` WRITE; /*!40000 ALTER TABLE `netspot_poll_menu` DISABLE KEYS */; INSERT INTO `netspot_poll_menu` VALUES (14,1); /*!40000 ALTER TABLE `netspot_poll_menu` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `netspot_polls` -- DROP TABLE IF EXISTS `netspot_polls`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `netspot_polls` ( `id` int(11) unsigned NOT NULL AUTO_INCREMENT, `title` varchar(100) NOT NULL DEFAULT '', `voters` int(9) NOT NULL DEFAULT '0', `checked_out` int(11) NOT NULL DEFAULT '0', `checked_out_time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `published` tinyint(1) NOT NULL DEFAULT '0', `access` int(11) NOT NULL DEFAULT '0', `lag` int(11) NOT NULL DEFAULT '0', PRIMARY KEY (`id`) ) ENGINE=MyISAM AUTO_INCREMENT=15 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `netspot_polls` -- LOCK TABLES `netspot_polls` WRITE; /*!40000 ALTER TABLE `netspot_polls` DISABLE KEYS */; INSERT INTO `netspot_polls` VALUES (14,'This Mambo installation was ....',0,0,'2000-00-00 00:00:00',1,0,86400); /*!40000 ALTER TABLE `netspot_polls` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `netspot_sections` -- DROP TABLE IF EXISTS `netspot_sections`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `netspot_sections` ( `id` int(11) NOT NULL AUTO_INCREMENT, `title` varchar(50) NOT NULL DEFAULT '', `name` varchar(255) NOT NULL DEFAULT '', `image` varchar(100) NOT NULL DEFAULT '', `scope` varchar(50) NOT NULL DEFAULT '', `image_position` varchar(10) NOT NULL DEFAULT '', `description` text NOT NULL, `published` tinyint(1) NOT NULL DEFAULT '0', `checked_out` int(11) unsigned NOT NULL DEFAULT '0', `checked_out_time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `ordering` int(11) NOT NULL DEFAULT '0', `access` tinyint(3) unsigned NOT NULL DEFAULT '0', `count` int(11) NOT NULL DEFAULT '0', `params` text NOT NULL, PRIMARY KEY (`id`), KEY `idx_scope` (`scope`) ) ENGINE=MyISAM AUTO_INCREMENT=4 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `netspot_sections` -- LOCK TABLES `netspot_sections` WRITE; /*!40000 ALTER TABLE `netspot_sections` DISABLE KEYS */; INSERT INTO `netspot_sections` VALUES (1,'News','The News','articles.jpg','content','right','Select a news topic from the list below, then select a news article to read.',1,0,'0000-00-00 00:00:00',1,0,1,''),(2,'Newsflashes','Newsflashes','','content','left','',1,0,'0000-00-00 00:00:00',2,0,1,''),(3,'FAQs','Frequently Asked Questions','pastarchives.jpg','content','left','From the list below choose one of our FAQs topics, then select an FAQ to read. If you have a question which is not in this section, \r\n\r\nplease contact us.',1,0,'0000-00-00 00:00:00',2,0,1,''); /*!40000 ALTER TABLE `netspot_sections` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `netspot_session` -- DROP TABLE IF EXISTS `netspot_session`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `netspot_session` ( `username` varchar(50) DEFAULT '', `time` varchar(14) DEFAULT '', `session_id` varchar(200) NOT NULL DEFAULT '0', `guest` tinyint(4) DEFAULT '1', `userid` int(11) DEFAULT '0', `usertype` varchar(50) DEFAULT '', `gid` tinyint(3) unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`session_id`), KEY `whosonline` (`guest`,`usertype`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `netspot_session` -- LOCK TABLES `netspot_session` WRITE; /*!40000 ALTER TABLE `netspot_session` DISABLE KEYS */; INSERT INTO `netspot_session` VALUES ('','1415896963','7a7ca1815f593a1757763a1fe8e285c2',1,0,'',0),('','1415896963','03983b986ccc3ebd9f126dc5fa510d31',1,0,'',0); /*!40000 ALTER TABLE `netspot_session` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `netspot_stats_agents` -- DROP TABLE IF EXISTS `netspot_stats_agents`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `netspot_stats_agents` ( `agent` varchar(255) NOT NULL DEFAULT '', `type` tinyint(1) unsigned NOT NULL DEFAULT '0', `hits` int(11) unsigned NOT NULL DEFAULT '1' ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `netspot_stats_agents` -- LOCK TABLES `netspot_stats_agents` WRITE; /*!40000 ALTER TABLE `netspot_stats_agents` DISABLE KEYS */; /*!40000 ALTER TABLE `netspot_stats_agents` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `netspot_template_positions` -- DROP TABLE IF EXISTS `netspot_template_positions`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `netspot_template_positions` ( `id` int(11) NOT NULL AUTO_INCREMENT, `position` varchar(10) NOT NULL DEFAULT '', `description` varchar(255) NOT NULL DEFAULT '', PRIMARY KEY (`id`) ) ENGINE=MyISAM AUTO_INCREMENT=28 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `netspot_template_positions` -- LOCK TABLES `netspot_template_positions` WRITE; /*!40000 ALTER TABLE `netspot_template_positions` DISABLE KEYS */; INSERT INTO `netspot_template_positions` VALUES (1,'left',''),(2,'right',''),(3,'top',''),(4,'bottom',''),(5,'inset',''),(6,'banner',''),(7,'header',''),(8,'footer',''),(9,'newsflash',''),(10,'legals',''),(11,'pathway',''),(12,'toolbar',''),(13,'cpanel',''),(14,'user1',''),(15,'user2',''),(16,'user3',''),(17,'user4',''),(18,'user5',''),(19,'user6',''),(20,'user7',''),(21,'user8',''),(22,'user9',''),(23,'advert1',''),(24,'advert2',''),(25,'advert3',''),(26,'icon',''),(27,'debug',''); /*!40000 ALTER TABLE `netspot_template_positions` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `netspot_templates_menu` -- DROP TABLE IF EXISTS `netspot_templates_menu`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `netspot_templates_menu` ( `template` varchar(50) NOT NULL DEFAULT '', `menuid` int(11) NOT NULL DEFAULT '0', `client_id` tinyint(4) NOT NULL DEFAULT '0', PRIMARY KEY (`template`,`menuid`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `netspot_templates_menu` -- LOCK TABLES `netspot_templates_menu` WRITE; /*!40000 ALTER TABLE `netspot_templates_menu` DISABLE KEYS */; INSERT INTO `netspot_templates_menu` VALUES ('visualtech',0,0),('mambo_admin_blue',0,1); /*!40000 ALTER TABLE `netspot_templates_menu` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `netspot_users` -- DROP TABLE IF EXISTS `netspot_users`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `netspot_users` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(50) NOT NULL DEFAULT '', `username` varchar(25) NOT NULL DEFAULT '', `email` varchar(100) NOT NULL DEFAULT '', `password` varchar(100) NOT NULL DEFAULT '', `usertype` varchar(25) NOT NULL DEFAULT '', `block` tinyint(4) NOT NULL DEFAULT '0', `sendEmail` tinyint(4) DEFAULT '0', `gid` tinyint(3) unsigned NOT NULL DEFAULT '1', `registerDate` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `lastvisitDate` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `activation` varchar(100) NOT NULL DEFAULT '', `params` text NOT NULL, PRIMARY KEY (`id`), KEY `usertype` (`usertype`), KEY `idx_name` (`name`) ) ENGINE=MyISAM AUTO_INCREMENT=63 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `netspot_users` -- LOCK TABLES `netspot_users` WRITE; /*!40000 ALTER TABLE `netspot_users` DISABLE KEYS */; INSERT INTO `netspot_users` VALUES (62,'Administrator','admin','mam@heimam.at','5a9361b28ee51795f1e82d9054919034','Super Administrator',0,1,25,'2006-06-05 11:01:21','2006-10-26 21:39:29','',''); /*!40000 ALTER TABLE `netspot_users` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `netspot_usertypes` -- DROP TABLE IF EXISTS `netspot_usertypes`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `netspot_usertypes` ( `id` tinyint(3) unsigned NOT NULL DEFAULT '0', `name` varchar(50) NOT NULL DEFAULT '', `mask` varchar(11) NOT NULL DEFAULT '', PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `netspot_usertypes` -- LOCK TABLES `netspot_usertypes` WRITE; /*!40000 ALTER TABLE `netspot_usertypes` DISABLE KEYS */; INSERT INTO `netspot_usertypes` VALUES (0,'superadministrator',''),(1,'administrator',''),(2,'editor',''),(3,'user',''),(4,'author',''),(5,'publisher',''),(6,'manager',''); /*!40000 ALTER TABLE `netspot_usertypes` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `netspot_weblinks` -- DROP TABLE IF EXISTS `netspot_weblinks`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `netspot_weblinks` ( `id` int(11) unsigned NOT NULL AUTO_INCREMENT, `catid` int(11) NOT NULL DEFAULT '0', `sid` int(11) NOT NULL DEFAULT '0', `title` varchar(250) NOT NULL DEFAULT '', `url` varchar(250) NOT NULL DEFAULT '', `description` varchar(250) NOT NULL DEFAULT '', `date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `hits` int(11) NOT NULL DEFAULT '0', `published` tinyint(1) NOT NULL DEFAULT '0', `checked_out` int(11) NOT NULL DEFAULT '0', `checked_out_time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `ordering` int(11) NOT NULL DEFAULT '0', `archived` tinyint(1) NOT NULL DEFAULT '0', `approved` tinyint(1) NOT NULL DEFAULT '1', `params` text NOT NULL, PRIMARY KEY (`id`), KEY `catid` (`catid`,`published`,`archived`) ) ENGINE=MyISAM AUTO_INCREMENT=6 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `netspot_weblinks` -- LOCK TABLES `netspot_weblinks` WRITE; /*!40000 ALTER TABLE `netspot_weblinks` DISABLE KEYS */; INSERT INTO `netspot_weblinks` VALUES (1,2,0,'Mambo','http://www.mamboserver.com','Home of Mambo','2005-02-14 15:19:02',2,1,0,'0000-00-00 00:00:00',1,0,1,'target=0'),(2,2,0,'MamboForge','http://mamboforge.net','Get your Mambo add-ons here!','2004-07-07 10:18:31',0,1,0,'0000-00-00 00:00:00',4,0,1,''),(3,2,0,'Miro International Pty Ltd','http://www.miro.com.au','Where Mambo was born','2004-07-07 11:32:45',1,1,0,'0000-00-00 00:00:00',2,0,1,''),(4,2,0,'php.net','http://www.php.net','The language that Mambo is developed in','2004-07-07 11:33:24',0,1,0,'0000-00-00 00:00:00',3,0,1,''),(5,2,0,'MySQL','http://www.mysql.com','The database that Mambo uses','2004-07-07 10:18:31',0,1,0,'0000-00-00 00:00:00',5,0,1,''); /*!40000 ALTER TABLE `netspot_weblinks` ENABLE KEYS */; UNLOCK TABLES; -- -- Current Database: `mysql` -- CREATE DATABASE /*!32312 IF NOT EXISTS*/ `mysql` /*!40100 DEFAULT CHARACTER SET latin1 */; USE `mysql`; -- -- Table structure for table `columns_priv` -- DROP TABLE IF EXISTS `columns_priv`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `columns_priv` ( `Host` char(60) COLLATE utf8_bin NOT NULL DEFAULT '', `Db` char(64) COLLATE utf8_bin NOT NULL DEFAULT '', `User` char(16) COLLATE utf8_bin NOT NULL DEFAULT '', `Table_name` char(64) COLLATE utf8_bin NOT NULL DEFAULT '', `Column_name` char(64) COLLATE utf8_bin NOT NULL DEFAULT '', `Timestamp` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, `Column_priv` set('Select','Insert','Update','References') CHARACTER SET utf8 NOT NULL DEFAULT '', PRIMARY KEY (`Host`,`Db`,`User`,`Table_name`,`Column_name`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_bin COMMENT='Column privileges'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `columns_priv` -- LOCK TABLES `columns_priv` WRITE; /*!40000 ALTER TABLE `columns_priv` DISABLE KEYS */; /*!40000 ALTER TABLE `columns_priv` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `db` -- DROP TABLE IF EXISTS `db`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `db` ( `Host` char(60) COLLATE utf8_bin NOT NULL DEFAULT '', `Db` char(64) COLLATE utf8_bin NOT NULL DEFAULT '', `User` char(16) COLLATE utf8_bin NOT NULL DEFAULT '', `Select_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N', `Insert_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N', `Update_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N', `Delete_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N', `Create_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N', `Drop_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N', `Grant_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N', `References_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N', `Index_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N', `Alter_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N', `Create_tmp_table_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N', `Lock_tables_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N', `Create_view_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N', `Show_view_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N', `Create_routine_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N', `Alter_routine_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N', `Execute_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N', `Event_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N', `Trigger_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N', PRIMARY KEY (`Host`,`Db`,`User`), KEY `User` (`User`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_bin COMMENT='Database privileges'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `db` -- LOCK TABLES `db` WRITE; /*!40000 ALTER TABLE `db` DISABLE KEYS */; INSERT INTO `db` VALUES ('%','test','','Y','Y','Y','Y','Y','Y','N','Y','Y','Y','Y','Y','Y','Y','Y','N','N','Y','Y'),('%','test\\_%','','Y','Y','Y','Y','Y','Y','N','Y','Y','Y','Y','Y','Y','Y','Y','N','N','Y','Y'),('localhost','horde','horde','Y','Y','Y','Y','Y','Y','N','Y','Y','Y','Y','Y','N','N','N','N','N','N','N'),('localhost','atmail','atmail','Y','Y','Y','Y','Y','Y','N','Y','Y','Y','Y','Y','N','N','N','N','N','N','N'),('localhost','sitebuilder5','sitebuilder','Y','Y','Y','Y','Y','Y','N','Y','Y','Y','Y','Y','N','N','N','N','N','N','N'); /*!40000 ALTER TABLE `db` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `event` -- DROP TABLE IF EXISTS `event`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `event` ( `db` char(64) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL DEFAULT '', `name` char(64) NOT NULL DEFAULT '', `body` longblob NOT NULL, `definer` char(77) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL DEFAULT '', `execute_at` datetime DEFAULT NULL, `interval_value` int(11) DEFAULT NULL, `interval_field` enum('YEAR','QUARTER','MONTH','DAY','HOUR','MINUTE','WEEK','SECOND','MICROSECOND','YEAR_MONTH','DAY_HOUR','DAY_MINUTE','DAY_SECOND','HOUR_MINUTE','HOUR_SECOND','MINUTE_SECOND','DAY_MICROSECOND','HOUR_MICROSECOND','MINUTE_MICROSECOND','SECOND_MICROSECOND') DEFAULT NULL, `created` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, `modified` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00', `last_executed` datetime DEFAULT NULL, `starts` datetime DEFAULT NULL, `ends` datetime DEFAULT NULL, `status` enum('ENABLED','DISABLED','SLAVESIDE_DISABLED') NOT NULL DEFAULT 'ENABLED', `on_completion` enum('DROP','PRESERVE') NOT NULL DEFAULT 'DROP', `sql_mode` set('REAL_AS_FLOAT','PIPES_AS_CONCAT','ANSI_QUOTES','IGNORE_SPACE','NOT_USED','ONLY_FULL_GROUP_BY','NO_UNSIGNED_SUBTRACTION','NO_DIR_IN_CREATE','POSTGRESQL','ORACLE','MSSQL','DB2','MAXDB','NO_KEY_OPTIONS','NO_TABLE_OPTIONS','NO_FIELD_OPTIONS','MYSQL323','MYSQL40','ANSI','NO_AUTO_VALUE_ON_ZERO','NO_BACKSLASH_ESCAPES','STRICT_TRANS_TABLES','STRICT_ALL_TABLES','NO_ZERO_IN_DATE','NO_ZERO_DATE','INVALID_DATES','ERROR_FOR_DIVISION_BY_ZERO','TRADITIONAL','NO_AUTO_CREATE_USER','HIGH_NOT_PRECEDENCE','NO_ENGINE_SUBSTITUTION','PAD_CHAR_TO_FULL_LENGTH') NOT NULL DEFAULT '', `comment` char(64) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL DEFAULT '', `originator` int(10) unsigned NOT NULL, `time_zone` char(64) CHARACTER SET latin1 NOT NULL DEFAULT 'SYSTEM', `character_set_client` char(32) CHARACTER SET utf8 COLLATE utf8_bin DEFAULT NULL, `collation_connection` char(32) CHARACTER SET utf8 COLLATE utf8_bin DEFAULT NULL, `db_collation` char(32) CHARACTER SET utf8 COLLATE utf8_bin DEFAULT NULL, `body_utf8` longblob, PRIMARY KEY (`db`,`name`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Events'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `func` -- DROP TABLE IF EXISTS `func`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `func` ( `name` char(64) COLLATE utf8_bin NOT NULL DEFAULT '', `ret` tinyint(1) NOT NULL DEFAULT '0', `dl` char(128) COLLATE utf8_bin NOT NULL DEFAULT '', `type` enum('function','aggregate') CHARACTER SET utf8 NOT NULL, PRIMARY KEY (`name`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_bin COMMENT='User defined functions'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `func` -- LOCK TABLES `func` WRITE; /*!40000 ALTER TABLE `func` DISABLE KEYS */; /*!40000 ALTER TABLE `func` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `help_category` -- DROP TABLE IF EXISTS `help_category`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `help_category` ( `help_category_id` smallint(5) unsigned NOT NULL, `name` char(64) NOT NULL, `parent_category_id` smallint(5) unsigned DEFAULT NULL, `url` char(128) NOT NULL, PRIMARY KEY (`help_category_id`), UNIQUE KEY `name` (`name`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='help categories'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `help_category` -- LOCK TABLES `help_category` WRITE; /*!40000 ALTER TABLE `help_category` DISABLE KEYS */; INSERT INTO `help_category` VALUES (1,'Geographic',0,''),(2,'Polygon properties',33,''),(3,'WKT',33,''),(4,'Numeric Functions',37,''),(5,'Plugins',34,''),(6,'MBR',33,''),(7,'Control flow functions',37,''),(8,'Transactions',34,''),(9,'Help Metadata',34,''),(10,'Account Management',34,''),(11,'Point properties',33,''),(12,'Encryption Functions',37,''),(13,'LineString properties',33,''),(14,'Logical operators',37,''),(15,'Miscellaneous Functions',37,''),(16,'Functions and Modifiers for Use with GROUP BY',34,''),(17,'Information Functions',37,''),(18,'Comparison operators',37,''),(19,'Bit Functions',37,''),(20,'Table Maintenance',34,''),(21,'User-Defined Functions',34,''),(22,'Data Types',34,''),(23,'Compound Statements',34,''),(24,'Geometry constructors',33,''),(25,'GeometryCollection properties',1,''),(26,'Administration',34,''),(27,'Data Manipulation',34,''),(28,'Utility',34,''),(29,'Language Structure',34,''),(30,'Geometry relations',33,''),(31,'Date and Time Functions',37,''),(32,'WKB',33,''),(33,'Geographic Features',34,''),(34,'Contents',0,''),(35,'Geometry properties',33,''),(36,'String Functions',37,''),(37,'Functions',34,''),(38,'Data Definition',34,''); /*!40000 ALTER TABLE `help_category` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `help_keyword` -- DROP TABLE IF EXISTS `help_keyword`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `help_keyword` ( `help_keyword_id` int(10) unsigned NOT NULL, `name` char(64) NOT NULL, PRIMARY KEY (`help_keyword_id`), UNIQUE KEY `name` (`name`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='help keywords'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `help_keyword` -- LOCK TABLES `help_keyword` WRITE; /*!40000 ALTER TABLE `help_keyword` DISABLE KEYS */; INSERT INTO `help_keyword` VALUES (0,'JOIN'),(1,'HOST'),(2,'REPEAT'),(3,'SERIALIZABLE'),(4,'REPLACE'),(5,'AT'),(6,'SCHEDULE'),(7,'RETURNS'),(8,'STARTS'),(9,'MASTER_SSL_CA'),(10,'NCHAR'),(11,'COLUMNS'),(12,'COMPLETION'),(13,'WORK'),(14,'DATETIME'),(15,'MODE'),(16,'OPEN'),(17,'INTEGER'),(18,'ESCAPE'),(19,'VALUE'),(20,'MASTER_SSL_VERIFY_SERVER_CERT'),(21,'SQL_BIG_RESULT'),(22,'DROP'),(23,'GEOMETRYCOLLECTIONFROMWKB'),(24,'EVENTS'),(25,'MONTH'),(26,'INFO'),(27,'PROFILES'),(28,'DUPLICATE'),(29,'REPLICATION'),(30,'UNLOCK'),(31,'INNODB'),(32,'YEAR_MONTH'),(33,'SUBJECT'),(34,'PREPARE'),(35,'LOCK'),(36,'NDB'),(37,'CHECK'),(38,'FULL'),(39,'INT4'),(40,'BY'),(41,'NO'),(42,'MINUTE'),(43,'PARTITION'),(44,'DATA'),(45,'DAY'),(46,'SHARE'),(47,'REAL'),(48,'SEPARATOR'),(49,'MASTER_HEARTBEAT_PERIOD'),(50,'DELETE'),(51,'ON'),(52,'CONNECTION'),(53,'CLOSE'),(54,'X509'),(55,'USE'),(56,'WHERE'),(57,'PRIVILEGES'),(58,'SPATIAL'),(59,'EVENT'),(60,'SUPER'),(61,'SQL_BUFFER_RESULT'),(62,'IGNORE'),(63,'QUICK'),(64,'SIGNED'),(65,'OFFLINE'),(66,'SECURITY'),(67,'AUTOEXTEND_SIZE'),(68,'NDBCLUSTER'),(69,'POLYGONFROMWKB'),(70,'FALSE'),(71,'LEVEL'),(72,'FORCE'),(73,'BINARY'),(74,'TO'),(75,'CHANGE'),(76,'CURRENT_USER'),(77,'HOUR_MINUTE'),(78,'UPDATE'),(79,'PRESERVE'),(80,'INTO'),(81,'FEDERATED'),(82,'VARYING'),(83,'MAX_SIZE'),(84,'HOUR_SECOND'),(85,'VARIABLE'),(86,'ROLLBACK'),(87,'RTREE'),(88,'PROCEDURE'),(89,'TIMESTAMP'),(90,'IMPORT'),(91,'AGAINST'),(92,'CHECKSUM'),(93,'COUNT'),(94,'LONGBINARY'),(95,'THEN'),(96,'INSERT'),(97,'ENGINES'),(98,'HANDLER'),(99,'PORT'),(100,'DAY_SECOND'),(101,'EXISTS'),(102,'MUTEX'),(103,'HELP_DATE'),(104,'RELEASE'),(105,'BOOLEAN'),(106,'MOD'),(107,'DEFAULT'),(108,'TYPE'),(109,'NO_WRITE_TO_BINLOG'),(110,'OPTIMIZE'),(111,'RESET'),(112,'ITERATE'),(113,'INSTALL'),(114,'DO'),(115,'BIGINT'),(116,'SET'),(117,'ISSUER'),(118,'DATE'),(119,'STATUS'),(120,'FULLTEXT'),(121,'COMMENT'),(122,'MASTER_CONNECT_RETRY'),(123,'INNER'),(124,'STOP'),(125,'MASTER_LOG_FILE'),(126,'MRG_MYISAM'),(127,'PRECISION'),(128,'REQUIRE'),(129,'TRAILING'),(130,'PARTITIONS'),(131,'LONG'),(132,'OPTION'),(133,'REORGANIZE'),(134,'ELSE'),(135,'DEALLOCATE'),(136,'IO_THREAD'),(137,'CASE'),(138,'CIPHER'),(139,'CONTINUE'),(140,'FROM'),(141,'READ'),(142,'LEFT'),(143,'ELSEIF'),(144,'MINUTE_SECOND'),(145,'COMPACT'),(146,'RESTORE'),(147,'DEC'),(148,'FOR'),(149,'WARNINGS'),(150,'MIN_ROWS'),(151,'CONDITION'),(152,'STRING'),(153,'ENCLOSED'),(154,'FUNCTION'),(155,'AGGREGATE'),(156,'FIELDS'),(157,'INT3'),(158,'ARCHIVE'),(159,'AVG_ROW_LENGTH'),(160,'ADD'),(161,'KILL'),(162,'FLOAT4'),(163,'TABLESPACE'),(164,'VIEW'),(165,'REPEATABLE'),(166,'INFILE'),(167,'HELP_VERSION'),(168,'ORDER'),(169,'USING'),(170,'MIDDLEINT'),(171,'GRANT'),(172,'UNSIGNED'),(173,'DECIMAL'),(174,'GEOMETRYFROMTEXT'),(175,'INDEXES'),(176,'FOREIGN'),(177,'CACHE'),(178,'HOSTS'),(179,'COMMIT'),(180,'SCHEMAS'),(181,'LEADING'),(182,'SNAPSHOT'),(183,'DECLARE'),(184,'LOAD'),(185,'SQL_CACHE'),(186,'CONVERT'),(187,'DYNAMIC'),(188,'COLLATE'),(189,'POLYGONFROMTEXT'),(190,'BYTE'),(191,'GLOBAL'),(192,'LINESTRINGFROMWKB'),(193,'WHEN'),(194,'COLUMN_FORMAT'),(195,'HAVING'),(196,'AS'),(197,'STARTING'),(198,'RELOAD'),(199,'AUTOCOMMIT'),(200,'REVOKE'),(201,'GRANTS'),(202,'OUTER'),(203,'FLOOR'),(204,'EXPLAIN'),(205,'WITH'),(206,'AFTER'),(207,'STD'),(208,'CSV'),(209,'DISABLE'),(210,'UNINSTALL'),(211,'OUTFILE'),(212,'LOW_PRIORITY'),(213,'FILE'),(214,'NODEGROUP'),(215,'SCHEMA'),(216,'SONAME'),(217,'POW'),(218,'DUAL'),(219,'MULTIPOINTFROMWKB'),(220,'INDEX'),(221,'BACKUP'),(222,'MULTIPOINTFROMTEXT'),(223,'DEFINER'),(224,'MASTER_BIND'),(225,'REMOVE'),(226,'EXTENDED'),(227,'MULTILINESTRINGFROMWKB'),(228,'CROSS'),(229,'CONTRIBUTORS'),(230,'NATIONAL'),(231,'GROUP'),(232,'SHA'),(233,'ONLINE'),(234,'UNDO'),(235,'ZEROFILL'),(236,'CLIENT'),(237,'MASTER_PASSWORD'),(238,'OWNER'),(239,'RELAY_LOG_FILE'),(240,'TRUE'),(241,'CHARACTER'),(242,'MASTER_USER'),(243,'TABLE'),(244,'ENGINE'),(245,'INSERT_METHOD'),(246,'CASCADE'),(247,'RELAY_LOG_POS'),(248,'SQL_CALC_FOUND_ROWS'),(249,'UNION'),(250,'MYISAM'),(251,'LEAVE'),(252,'MODIFY'),(253,'MATCH'),(254,'MASTER_LOG_POS'),(255,'DISTINCTROW'),(256,'DESC'),(257,'TIME'),(258,'NUMERIC'),(259,'EXPANSION'),(260,'CURSOR'),(261,'CODE'),(262,'GEOMETRYCOLLECTIONFROMTEXT'),(263,'CHAIN'),(264,'LOGFILE'),(265,'FLUSH'),(266,'CREATE'),(267,'DESCRIBE'),(268,'EXTENT_SIZE'),(269,'MAX_UPDATES_PER_HOUR'),(270,'INT2'),(271,'PROCESSLIST'),(272,'ENDS'),(273,'LOGS'),(274,'DISCARD'),(275,'HEAP'),(276,'SOUNDS'),(277,'BETWEEN'),(278,'MULTILINESTRINGFROMTEXT'),(279,'REPAIR'),(280,'PACK_KEYS'),(281,'FAST'),(282,'VALUES'),(283,'CALL'),(284,'LOOP'),(285,'VARCHARACTER'),(286,'BEFORE'),(287,'TRUNCATE'),(288,'SHOW'),(289,'ALL'),(290,'REDUNDANT'),(291,'USER_RESOURCES'),(292,'PARTIAL'),(293,'BINLOG'),(294,'END'),(295,'SECOND'),(296,'AND'),(297,'FLOAT8'),(298,'PREV'),(299,'HOUR'),(300,'SELECT'),(301,'DATABASES'),(302,'OR'),(303,'IDENTIFIED'),(304,'WRAPPER'),(305,'MASTER_SSL_CIPHER'),(306,'SQL_SLAVE_SKIP_COUNTER'),(307,'BOTH'),(308,'BOOL'),(309,'YEAR'),(310,'MASTER_PORT'),(311,'CONCURRENT'),(312,'HELP'),(313,'UNIQUE'),(314,'TRIGGERS'),(315,'PROCESS'),(316,'OPTIONS'),(317,'CONSISTENT'),(318,'MASTER_SSL'),(319,'DATE_ADD'),(320,'MAX_CONNECTIONS_PER_HOUR'),(321,'LIKE'),(322,'PLUGIN'),(323,'FETCH'),(324,'IN'),(325,'COLUMN'),(326,'DUMPFILE'),(327,'USAGE'),(328,'EXECUTE'),(329,'MEMORY'),(330,'CEIL'),(331,'QUERY'),(332,'MASTER_HOST'),(333,'LINES'),(334,'SQL_THREAD'),(335,'SERVER'),(336,'MAX_QUERIES_PER_HOUR'),(337,'MASTER_SSL_CERT'),(338,'MULTIPOLYGONFROMWKB'),(339,'TRANSACTION'),(340,'DAY_MINUTE'),(341,'STDDEV'),(342,'DATE_SUB'),(343,'REBUILD'),(344,'GEOMETRYFROMWKB'),(345,'INT1'),(346,'RENAME'),(347,'PARSER'),(348,'RIGHT'),(349,'ALTER'),(350,'MAX_ROWS'),(351,'SOCKET'),(352,'STRAIGHT_JOIN'),(353,'NATURAL'),(354,'VARIABLES'),(355,'ESCAPED'),(356,'SHA1'),(357,'KEY_BLOCK_SIZE'),(358,'PASSWORD'),(359,'OFFSET'),(360,'CHAR'),(361,'NEXT'),(362,'SQL_LOG_BIN'),(363,'ERRORS'),(364,'TEMPORARY'),(365,'COMMITTED'),(366,'SQL_SMALL_RESULT'),(367,'UPGRADE'),(368,'BEGIN'),(369,'DELAY_KEY_WRITE'),(370,'PROFILE'),(371,'MEDIUM'),(372,'INTERVAL'),(373,'SSL'),(374,'DAY_HOUR'),(375,'NAME'),(376,'REFERENCES'),(377,'AES_ENCRYPT'),(378,'STORAGE'),(379,'ISOLATION'),(380,'CEILING'),(381,'EVERY'),(382,'INT8'),(383,'AUTHORS'),(384,'RESTRICT'),(385,'UNCOMMITTED'),(386,'LINESTRINGFROMTEXT'),(387,'IS'),(388,'NOT'),(389,'ANALYSE'),(390,'DATAFILE'),(391,'DES_KEY_FILE'),(392,'COMPRESSED'),(393,'START'),(394,'PLUGINS'),(395,'SAVEPOINT'),(396,'IF'),(397,'PRIMARY'),(398,'PURGE'),(399,'LAST'),(400,'USER'),(401,'INNOBASE'),(402,'EXIT'),(403,'KEYS'),(404,'LIMIT'),(405,'KEY'),(406,'MERGE'),(407,'UNTIL'),(408,'SQL_NO_CACHE'),(409,'DELAYED'),(410,'ANALYZE'),(411,'CONSTRAINT'),(412,'SERIAL'),(413,'ACTION'),(414,'WRITE'),(415,'INITIAL_SIZE'),(416,'SESSION'),(417,'DATABASE'),(418,'NULL'),(419,'POWER'),(420,'USE_FRM'),(421,'TERMINATED'),(422,'SLAVE'),(423,'NVARCHAR'),(424,'ASC'),(425,'RETURN'),(426,'OPTIONALLY'),(427,'ENABLE'),(428,'DIRECTORY'),(429,'WHILE'),(430,'MAX_USER_CONNECTIONS'),(431,'LOCAL'),(432,'DISTINCT'),(433,'AES_DECRYPT'),(434,'MASTER_SSL_KEY'),(435,'NONE'),(436,'TABLES'),(437,'<>'),(438,'RLIKE'),(439,'TRIGGER'),(440,'COLLATION'),(441,'SHUTDOWN'),(442,'HIGH_PRIORITY'),(443,'BTREE'),(444,'FIRST'),(445,'COALESCE'),(446,'WAIT'),(447,'TYPES'),(448,'MASTER'),(449,'FIXED'),(450,'MULTIPOLYGONFROMTEXT'),(451,'ROW_FORMAT'); /*!40000 ALTER TABLE `help_keyword` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `help_relation` -- DROP TABLE IF EXISTS `help_relation`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `help_relation` ( `help_topic_id` int(10) unsigned NOT NULL, `help_keyword_id` int(10) unsigned NOT NULL, PRIMARY KEY (`help_keyword_id`,`help_topic_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='keyword-topic relation'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `help_relation` -- LOCK TABLES `help_relation` WRITE; /*!40000 ALTER TABLE `help_relation` DISABLE KEYS */; INSERT INTO `help_relation` VALUES (1,0),(355,0),(471,1),(230,2),(447,3),(3,4),(422,4),(87,5),(87,6),(407,6),(95,7),(87,8),(185,9),(430,10),(21,11),(346,11),(422,11),(461,11),(87,12),(407,12),(144,13),(228,14),(86,15),(355,15),(16,16),(104,16),(131,16),(346,16),(95,17),(498,17),(380,18),(3,19),(102,19),(241,19),(185,20),(355,21),(9,22),(30,22),(34,22),(85,22),(186,22),(235,22),(262,22),(275,22),(299,22),(330,22),(406,22),(416,22),(417,22),(461,22),(476,22),(106,23),(121,24),(168,24),(376,25),(258,26),(80,27),(102,28),(199,29),(36,30),(346,31),(401,31),(466,31),(376,32),(199,33),(35,34),(235,34),(36,35),(355,35),(466,36),(418,37),(461,37),(466,37),(21,38),(293,38),(346,38),(451,38),(466,38),(498,39),(48,40),(75,40),(81,40),(199,40),(355,40),(362,40),(422,40),(461,40),(466,40),(466,41),(470,41),(376,42),(461,43),(466,43),(117,44),(211,44),(422,44),(466,44),(471,44),(376,45),(355,46),(95,47),(313,47),(362,48),(185,49),(48,50),(466,50),(470,50),(1,51),(87,51),(407,51),(470,51),(174,52),(466,52),(51,53),(104,53),(199,54),(1,55),(55,55),(193,55),(48,56),(81,56),(104,56),(192,57),(199,57),(247,57),(209,58),(461,58),(87,59),(299,59),(357,59),(407,59),(199,60),(355,61),(1,62),(81,62),(102,62),(355,62),(422,62),(461,62),(48,63),(418,63),(464,63),(228,64),(85,65),(209,65),(461,65),(199,66),(193,67),(466,68),(89,69),(480,69),(385,70),(447,71),(1,72),(39,73),(228,73),(268,73),(185,74),(268,74),(459,74),(185,75),(461,75),(87,76),(407,76),(376,77),(81,78),(102,78),(355,78),(470,78),(87,79),(407,79),(3,80),(102,80),(303,80),(355,80),(466,81),(255,82),(193,83),(376,84),(128,85),(144,86),(459,86),(209,87),(18,88),(184,88),(301,88),(327,88),(346,88),(355,88),(417,88),(439,88),(486,88),(97,89),(188,89),(422,90),(461,90),(86,91),(402,92),(466,92),(67,93),(329,93),(433,93),(284,94),(28,95),(57,95),(83,95),(102,96),(194,96),(300,96),(484,96),(281,97),(346,97),(104,98),(312,98),(471,99),(376,100),(9,101),(30,101),(87,101),(153,101),(186,101),(275,101),(299,101),(346,102),(366,102),(107,103),(144,104),(459,104),(24,105),(86,105),(111,106),(173,106),(3,107),(102,107),(153,107),(198,107),(211,107),(241,107),(461,107),(466,107),(461,108),(113,109),(326,109),(464,109),(468,109),(113,110),(461,110),(38,111),(118,111),(149,111),(263,111),(123,112),(420,113),(87,114),(124,114),(407,114),(494,114),(220,115),(3,116),(81,116),(102,116),(128,116),(137,116),(144,116),(153,116),(181,116),(211,116),(332,116),(346,116),(355,116),(422,116),(461,116),(466,116),(470,116),(475,116),(492,116),(199,117),(130,118),(228,118),(261,118),(376,118),(58,119),(134,119),(214,119),(222,119),(327,119),(335,119),(346,119),(366,119),(401,119),(209,120),(461,120),(466,120),(87,121),(193,121),(407,121),(466,121),(185,122),(1,123),(52,124),(185,125),(466,126),(313,127),(199,128),(455,129),(253,130),(284,131),(199,132),(247,132),(461,133),(57,134),(83,134),(235,135),(52,136),(323,136),(57,137),(83,137),(199,138),(312,139),(48,140),(117,140),(121,140),(346,140),(355,140),(360,140),(455,140),(36,141),(104,141),(447,141),(1,142),(28,143),(376,144),(466,145),(178,146),(208,147),(179,148),(312,148),(346,148),(355,148),(421,148),(329,149),(346,149),(466,150),(179,151),(95,152),(422,153),(34,154),(66,154),(95,154),(210,154),(231,154),(301,154),(335,154),(346,154),(393,154),(406,154),(417,154),(95,155),(346,156),(422,156),(250,157),(466,158),(461,159),(466,159),(60,160),(193,160),(461,160),(476,160),(174,161),(166,162),(193,163),(416,163),(461,163),(476,163),(30,164),(157,164),(454,164),(447,165),(422,166),(189,167),(48,168),(81,168),(355,168),(362,168),(461,168),(1,169),(48,169),(84,169),(250,170),(199,171),(247,171),(24,172),(127,172),(166,172),(208,172),(228,172),(313,172),(498,172),(95,173),(154,173),(228,173),(412,174),(346,175),(461,176),(466,176),(470,176),(471,176),(99,177),(149,177),(303,177),(143,178),(346,178),(144,179),(158,180),(346,180),(455,181),(144,182),(179,183),(198,183),(312,183),(421,183),(117,184),(303,184),(360,184),(422,184),(355,185),(228,186),(377,186),(466,187),(153,188),(211,188),(466,188),(395,189),(463,190),(128,191),(134,191),(181,191),(348,191),(447,191),(452,192),(57,193),(83,193),(466,194),(355,195),(1,196),(36,196),(355,196),(422,197),(199,198),(144,199),(247,200),(191,201),(346,201),(1,202),(220,203),(253,204),(86,205),(199,205),(209,205),(461,205),(466,205),(461,206),(259,207),(422,208),(466,208),(87,209),(407,209),(461,209),(290,210),(355,211),(3,212),(36,212),(48,212),(81,212),(102,212),(422,212),(199,213),(193,214),(153,215),(186,215),(211,215),(308,215),(346,215),(95,216),(276,217),(278,218),(462,219),(1,220),(60,220),(85,220),(99,220),(209,220),(303,220),(307,220),(346,220),(461,220),(466,220),(358,221),(425,222),(87,223),(407,223),(185,224),(461,225),(253,226),(464,226),(271,227),(1,228),(7,229),(346,229),(255,230),(430,230),(193,231),(225,231),(355,231),(427,232),(85,233),(209,233),(461,233),(312,234),(24,235),(127,235),(166,235),(208,235),(313,235),(498,235),(199,236),(185,237),(471,238),(185,239),(385,240),(153,241),(211,241),(255,241),(332,241),(346,241),(355,241),(422,241),(430,241),(466,241),(185,242),(60,243),(108,243),(113,243),(178,243),(214,243),(275,243),(277,243),(320,243),(346,243),(358,243),(360,243),(402,243),(418,243),(461,243),(464,243),(466,243),(468,243),(193,244),(346,244),(366,244),(416,244),(461,244),(466,244),(476,244),(466,245),(30,246),(275,246),(466,246),(470,246),(185,247),(355,248),(304,249),(466,250),(309,251),(461,252),(86,253),(185,254),(355,255),(328,256),(355,256),(362,256),(228,257),(314,257),(375,257),(208,258),(86,259),(421,260),(66,261),(486,261),(244,262),(144,263),(193,264),(225,264),(149,265),(326,265),(18,266),(22,266),(60,266),(75,266),(87,266),(95,266),(153,266),(193,266),(209,266),(210,266),(277,266),(301,266),(308,266),(346,266),(357,266),(393,266),(454,266),(466,266),(471,266),(328,267),(193,268),(199,269),(232,270),(346,271),(451,271),(87,272),(39,273),(268,273),(346,273),(461,274),(466,275),(378,276),(145,277),(105,278),(461,279),(464,279),(466,280),(418,281),(3,282),(102,282),(338,283),(343,284),(255,285),(268,286),(320,287),(7,288),(10,288),(18,288),(21,288),(25,288),(33,288),(39,288),(58,288),(66,288),(67,288),(80,288),(121,288),(131,288),(134,288),(143,288),(158,288),(168,288),(191,288),(192,288),(214,288),(222,288),(277,288),(281,288),(293,288),(307,288),(308,288),(327,288),(329,288),(332,288),(335,288),(346,288),(348,288),(357,288),(366,288),(393,288),(401,288),(451,288),(485,288),(486,288),(490,288),(199,289),(247,289),(304,289),(355,289),(466,290),(326,291),(466,292),(121,293),(349,293),(28,294),(57,294),(83,294),(230,294),(325,294),(343,294),(494,294),(376,295),(145,296),(315,296),(313,297),(104,298),(376,299),(3,300),(102,300),(253,300),(258,300),(300,300),(355,300),(158,301),(346,301),(139,302),(75,303),(199,303),(471,304),(185,305),(181,306),(455,307),(24,308),(109,308),(376,309),(185,310),(422,311),(116,312),(390,312),(461,313),(25,314),(346,314),(199,315),(374,316),(471,316),(144,317),(185,318),(376,319),(199,320),(346,321),(378,321),(290,322),(346,322),(420,322),(383,323),(86,324),(121,324),(355,324),(461,325),(355,326),(199,327),(84,328),(199,328),(355,329),(397,330),(86,331),(149,331),(174,331),(185,332),(422,333),(52,334),(323,334),(9,335),(374,335),(471,335),(199,336),(185,337),(122,338),(144,339),(447,339),(376,340),(408,341),(376,342),(461,343),(142,344),(24,345),(108,346),(221,346),(407,346),(461,346),(209,347),(461,347),(466,347),(1,348),(60,349),(157,349),(199,349),(211,349),(225,349),(231,349),(374,349),(407,349),(439,349),(461,349),(476,349),(466,350),(471,351),(1,352),(355,352),(1,353),(346,354),(348,354),(422,355),(427,356),(466,357),(75,358),(199,358),(471,358),(475,358),(355,359),(228,360),(463,360),(104,361),(492,362),(67,363),(346,363),(275,364),(447,365),(355,366),(211,367),(418,367),(144,368),(325,368),(466,369),(485,370),(418,371),(87,372),(376,372),(199,373),(376,374),(211,375),(199,376),(466,376),(470,376),(443,377),(281,378),(447,379),(448,380),(87,381),(127,382),(10,383),(346,383),(30,384),(275,384),(470,384),(447,385),(56,386),(82,387),(205,387),(369,387),(456,387),(82,388),(87,388),(153,388),(205,388),(311,388),(184,389),(193,390),(476,390),(326,391),(466,392),(144,393),(323,393),(33,394),(459,395),(9,396),(28,396),(30,396),(87,396),(153,396),(186,396),(275,396),(299,396),(477,396),(461,397),(268,398),(104,399),(75,400),(221,400),(330,400),(471,400),(466,401),(312,402),(307,403),(346,403),(461,403),(48,404),(81,404),(104,404),(121,404),(355,404),(60,405),(102,405),(461,405),(466,405),(470,405),(466,406),(230,407),(355,408),(3,409),(102,409),(484,409),(461,410),(468,410),(461,411),(466,411),(241,412),(466,412),(466,413),(470,413),(36,414),(193,415),(476,415),(128,416),(134,416),(348,416),(447,416),(153,417),(186,417),(211,417),(308,417),(346,417),(471,417),(82,418),(369,418),(470,418),(481,419),(464,420),(422,421),(38,422),(52,422),(87,422),(143,422),(222,422),(323,422),(407,422),(255,423),(355,424),(362,424),(489,425),(422,426),(87,427),(407,427),(461,427),(211,428),(466,428),(494,429),(199,430),(36,431),(113,431),(326,431),(422,431),(464,431),(468,431),(0,432),(94,432),(287,432),(304,432),(355,432),(362,432),(384,432),(433,432),(495,433),(185,434),(199,435),(36,436),(131,436),(293,436),(346,436),(493,437),(27,438),(22,439),(262,439),(346,439),(346,440),(490,440),(199,441),(102,442),(355,442),(209,443),(104,444),(461,444),(466,444),(461,445),(193,446),(476,446),(346,447),(39,448),(58,448),(117,448),(185,448),(263,448),(268,448),(360,448),(208,449),(466,449),(200,450),(466,451); /*!40000 ALTER TABLE `help_relation` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `help_topic` -- DROP TABLE IF EXISTS `help_topic`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `help_topic` ( `help_topic_id` int(10) unsigned NOT NULL, `name` char(64) NOT NULL, `help_category_id` smallint(5) unsigned NOT NULL, `description` text NOT NULL, `example` text NOT NULL, `url` char(128) NOT NULL, PRIMARY KEY (`help_topic_id`), UNIQUE KEY `name` (`name`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='help topics'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `help_topic` -- LOCK TABLES `help_topic` WRITE; /*!40000 ALTER TABLE `help_topic` DISABLE KEYS */; INSERT INTO `help_topic` VALUES (0,'MIN',16,'Syntax:\nMIN([DISTINCT] expr)\n\nReturns the minimum value of expr. MIN() may take a string argument; in\nsuch cases, it returns the minimum string value. See\nhttp://dev.mysql.com/doc/refman/5.1/en/mysql-indexes.html. The DISTINCT\nkeyword can be used to find the minimum of the distinct values of expr,\nhowever, this produces the same result as omitting DISTINCT.\n\nMIN() returns NULL if there were no matching rows.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/group-by-functions.html\n\n','mysql> SELECT student_name, MIN(test_score), MAX(test_score)\n -> FROM student\n -> GROUP BY student_name;\n','http://dev.mysql.com/doc/refman/5.1/en/group-by-functions.html'),(1,'JOIN',27,'MySQL supports the following JOIN syntaxes for the table_references\npart of SELECT statements and multiple-table DELETE and UPDATE\nstatements:\n\ntable_references:\n table_reference [, table_reference] ...\n\ntable_reference:\n table_factor\n | join_table\n\ntable_factor:\n tbl_name [[AS] alias] [index_hint_list]\n | table_subquery [AS] alias\n | ( table_references )\n | { OJ table_reference LEFT OUTER JOIN table_reference\n ON conditional_expr }\n\njoin_table:\n table_reference [INNER | CROSS] JOIN table_factor [join_condition]\n | table_reference STRAIGHT_JOIN table_factor\n | table_reference STRAIGHT_JOIN table_factor ON conditional_expr\n | table_reference {LEFT|RIGHT} [OUTER] JOIN table_reference join_condition\n | table_reference NATURAL [{LEFT|RIGHT} [OUTER]] JOIN table_factor\n\njoin_condition:\n ON conditional_expr\n | USING (column_list)\n\nindex_hint_list:\n index_hint [, index_hint] ...\n\nindex_hint:\n USE {INDEX|KEY}\n [{FOR {JOIN|ORDER BY|GROUP BY}] ([index_list])\n | IGNORE {INDEX|KEY}\n [{FOR {JOIN|ORDER BY|GROUP BY}] (index_list)\n | FORCE {INDEX|KEY}\n [{FOR {JOIN|ORDER BY|GROUP BY}] (index_list)\n\nindex_list:\n index_name [, index_name] ...\n\nA table reference is also known as a join expression.\n\nThe syntax of table_factor is extended in comparison with the SQL\nStandard. The latter accepts only table_reference, not a list of them\ninside a pair of parentheses.\n\nThis is a conservative extension if we consider each comma in a list of\ntable_reference items as equivalent to an inner join. For example:\n\nSELECT * FROM t1 LEFT JOIN (t2, t3, t4)\n ON (t2.a=t1.a AND t3.b=t1.b AND t4.c=t1.c)\n\nis equivalent to:\n\nSELECT * FROM t1 LEFT JOIN (t2 CROSS JOIN t3 CROSS JOIN t4)\n ON (t2.a=t1.a AND t3.b=t1.b AND t4.c=t1.c)\n\nIn MySQL, CROSS JOIN is a syntactic equivalent to INNER JOIN (they can\nreplace each other). In standard SQL, they are not equivalent. INNER\nJOIN is used with an ON clause, CROSS JOIN is used otherwise.\n\nIn general, parentheses can be ignored in join expressions containing\nonly inner join operations. MySQL also supports nested joins (see\nhttp://dev.mysql.com/doc/refman/5.1/en/nested-join-optimization.html).\n\nIndex hints can be specified to affect how the MySQL optimizer makes\nuse of indexes. For more information, see\nhttp://dev.mysql.com/doc/refman/5.1/en/index-hints.html.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/join.html\n\n','SELECT left_tbl.*\n FROM left_tbl LEFT JOIN right_tbl ON left_tbl.id = right_tbl.id\n WHERE right_tbl.id IS NULL;\n','http://dev.mysql.com/doc/refman/5.1/en/join.html'),(2,'HEX',36,'Syntax:\nHEX(N_or_S)\n\nIf N_or_S is a number, returns a string representation of the\nhexadecimal value of N, where N is a longlong (BIGINT) number. This is\nequivalent to CONV(N,10,16).\n\nIf N_or_S is a string, returns a hexadecimal string representation of\nN_or_S where each character in N_or_S is converted to two hexadecimal\ndigits. The inverse of this operation is performed by the UNHEX()\nfunction.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/string-functions.html\n\n','mysql> SELECT HEX(255);\n -> \'FF\'\nmysql> SELECT 0x616263;\n -> \'abc\'\nmysql> SELECT HEX(\'abc\');\n -> 616263\n','http://dev.mysql.com/doc/refman/5.1/en/string-functions.html'),(3,'REPLACE',27,'Syntax:\nREPLACE [LOW_PRIORITY | DELAYED]\n [INTO] tbl_name [(col_name,...)]\n {VALUES | VALUE} ({expr | DEFAULT},...),(...),...\n\nOr:\n\nREPLACE [LOW_PRIORITY | DELAYED]\n [INTO] tbl_name\n SET col_name={expr | DEFAULT}, ...\n\nOr:\n\nREPLACE [LOW_PRIORITY | DELAYED]\n [INTO] tbl_name [(col_name,...)]\n SELECT ...\n\nREPLACE works exactly like INSERT, except that if an old row in the\ntable has the same value as a new row for a PRIMARY KEY or a UNIQUE\nindex, the old row is deleted before the new row is inserted. See [HELP\nINSERT].\n\nREPLACE is a MySQL extension to the SQL standard. It either inserts, or\ndeletes and inserts. For another MySQL extension to standard SQL---that\neither inserts or updates---see\nhttp://dev.mysql.com/doc/refman/5.1/en/insert-on-duplicate.html.\n\nNote that unless the table has a PRIMARY KEY or UNIQUE index, using a\nREPLACE statement makes no sense. It becomes equivalent to INSERT,\nbecause there is no index to be used to determine whether a new row\nduplicates another.\n\nValues for all columns are taken from the values specified in the\nREPLACE statement. Any missing columns are set to their default values,\njust as happens for INSERT. You cannot refer to values from the current\nrow and use them in the new row. If you use an assignment such as SET\ncol_name = col_name + 1, the reference to the column name on the right\nhand side is treated as DEFAULT(col_name), so the assignment is\nequivalent to SET col_name = DEFAULT(col_name) + 1.\n\nTo use REPLACE, you must have both the INSERT and DELETE privileges for\nthe table.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/replace.html\n\n','','http://dev.mysql.com/doc/refman/5.1/en/replace.html'),(4,'CONTAINS',30,'Contains(g1,g2)\n\nReturns 1 or 0 to indicate whether g1 completely contains g2. This\ntests the opposite relationship as Within().\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/functions-that-test-spatial-relationships-between-geometries.html\n\n','','http://dev.mysql.com/doc/refman/5.1/en/functions-that-test-spatial-relationships-between-geometries.html'),(5,'SRID',35,'SRID(g)\n\nReturns an integer indicating the Spatial Reference System ID for the\ngeometry value g.\n\nIn MySQL, the SRID value is just an integer associated with the\ngeometry value. All calculations are done assuming Euclidean (planar)\ngeometry.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/geometry-property-functions.html#general-geometry-property-functions\n\n','mysql> SELECT SRID(GeomFromText(\'LineString(1 1,2 2)\',101));\n+-----------------------------------------------+\n| SRID(GeomFromText(\'LineString(1 1,2 2)\',101)) |\n+-----------------------------------------------+\n| 101 |\n+-----------------------------------------------+\n','http://dev.mysql.com/doc/refman/5.1/en/geometry-property-functions.html#general-geometry-property-functions'),(6,'CURRENT_TIMESTAMP',31,'Syntax:\nCURRENT_TIMESTAMP, CURRENT_TIMESTAMP()\n\nCURRENT_TIMESTAMP and CURRENT_TIMESTAMP() are synonyms for NOW().\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/date-and-time-functions.html\n\n','','http://dev.mysql.com/doc/refman/5.1/en/date-and-time-functions.html'),(7,'SHOW CONTRIBUTORS',26,'Syntax:\nSHOW CONTRIBUTORS\n\nThe SHOW CONTRIBUTORS statement displays information about the people\nwho contribute to MySQL source or to causes that we support. For each\ncontributor, it displays Name, Location, and Comment values.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/show-contributors.html\n\n','','http://dev.mysql.com/doc/refman/5.1/en/show-contributors.html'),(8,'VARIANCE',16,'Syntax:\nVARIANCE(expr)\n\nReturns the population standard variance of expr. This is an extension\nto standard SQL. The standard SQL function VAR_POP() can be used\ninstead.\n\nVARIANCE() returns NULL if there were no matching rows.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/group-by-functions.html\n\n','','http://dev.mysql.com/doc/refman/5.1/en/group-by-functions.html'),(9,'DROP SERVER',38,'Syntax:\nDROP SERVER [ IF EXISTS ] server_name\n\nDrops the server definition for the server named server_name. The\ncorresponding row within the mysql.servers table will be deleted. This\nstatement requires the SUPER privilege.\n\nDropping a server for a table does not affect any FEDERATED tables that\nused this connection information when they were created. See [HELP\nCREATE SERVER].\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/drop-server.html\n\n','','http://dev.mysql.com/doc/refman/5.1/en/drop-server.html'),(10,'SHOW AUTHORS',26,'Syntax:\nSHOW AUTHORS\n\nThe SHOW AUTHORS statement displays information about the people who\nwork on MySQL. For each author, it displays Name, Location, and Comment\nvalues.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/show-authors.html\n\n','','http://dev.mysql.com/doc/refman/5.1/en/show-authors.html'),(11,'VAR_SAMP',16,'Syntax:\nVAR_SAMP(expr)\n\nReturns the sample variance of expr. That is, the denominator is the\nnumber of rows minus one.\n\nVAR_SAMP() returns NULL if there were no matching rows.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/group-by-functions.html\n\n','','http://dev.mysql.com/doc/refman/5.1/en/group-by-functions.html'),(12,'CONCAT',36,'Syntax:\nCONCAT(str1,str2,...)\n\nReturns the string that results from concatenating the arguments. May\nhave one or more arguments. If all arguments are nonbinary strings, the\nresult is a nonbinary string. If the arguments include any binary\nstrings, the result is a binary string. A numeric argument is converted\nto its equivalent binary string form; if you want to avoid that, you\ncan use an explicit type cast, as in this example:\n\nSELECT CONCAT(CAST(int_col AS CHAR), char_col);\n\nCONCAT() returns NULL if any argument is NULL.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/string-functions.html\n\n','mysql> SELECT CONCAT(\'My\', \'S\', \'QL\');\n -> \'MySQL\'\nmysql> SELECT CONCAT(\'My\', NULL, \'QL\');\n -> NULL\nmysql> SELECT CONCAT(14.3);\n -> \'14.3\'\n','http://dev.mysql.com/doc/refman/5.1/en/string-functions.html'),(13,'GEOMETRY HIERARCHY',33,'Geometry is the base class. It is an abstract class. The instantiable\nsubclasses of Geometry are restricted to zero-, one-, and\ntwo-dimensional geometric objects that exist in two-dimensional\ncoordinate space. All instantiable geometry classes are defined so that\nvalid instances of a geometry class are topologically closed (that is,\nall defined geometries include their boundary).\n\nThe base Geometry class has subclasses for Point, Curve, Surface, and\nGeometryCollection:\n\no Point represents zero-dimensional objects.\n\no Curve represents one-dimensional objects, and has subclass\n LineString, with sub-subclasses Line and LinearRing.\n\no Surface is designed for two-dimensional objects and has subclass\n Polygon.\n\no GeometryCollection has specialized zero-, one-, and two-dimensional\n collection classes named MultiPoint, MultiLineString, and\n MultiPolygon for modeling geometries corresponding to collections of\n Points, LineStrings, and Polygons, respectively. MultiCurve and\n MultiSurface are introduced as abstract superclasses that generalize\n the collection interfaces to handle Curves and Surfaces.\n\nGeometry, Curve, Surface, MultiCurve, and MultiSurface are defined as\nnoninstantiable classes. They define a common set of methods for their\nsubclasses and are included for extensibility.\n\nPoint, LineString, Polygon, GeometryCollection, MultiPoint,\nMultiLineString, and MultiPolygon are instantiable classes.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/gis-geometry-class-hierarchy.html\n\n','','http://dev.mysql.com/doc/refman/5.1/en/gis-geometry-class-hierarchy.html'),(14,'CHAR FUNCTION',36,'Syntax:\nCHAR(N,... [USING charset_name])\n\nCHAR() interprets each argument N as an integer and returns a string\nconsisting of the characters given by the code values of those\nintegers. NULL values are skipped.\nBy default, CHAR() returns a binary string. To produce a string in a\ngiven character set, use the optional USING clause:\n\nmysql> SELECT CHARSET(CHAR(0x65)), CHARSET(CHAR(0x65 USING utf8));\n+---------------------+--------------------------------+\n| CHARSET(CHAR(0x65)) | CHARSET(CHAR(0x65 USING utf8)) |\n+---------------------+--------------------------------+\n| binary | utf8 |\n+---------------------+--------------------------------+\n\nIf USING is given and the result string is illegal for the given\ncharacter set, a warning is issued. Also, if strict SQL mode is\nenabled, the result from CHAR() becomes NULL.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/string-functions.html\n\n','mysql> SELECT CHAR(77,121,83,81,\'76\');\n -> \'MySQL\'\nmysql> SELECT CHAR(77,77.3,\'77.3\');\n -> \'MMM\'\n','http://dev.mysql.com/doc/refman/5.1/en/string-functions.html'),(15,'DATETIME',22,'DATETIME\n\nA date and time combination. The supported range is \'1000-01-01\n00:00:00\' to \'9999-12-31 23:59:59\'. MySQL displays DATETIME values in\n\'YYYY-MM-DD HH:MM:SS\' format, but allows assignment of values to\nDATETIME columns using either strings or numbers.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/date-and-time-type-overview.html\n\n','','http://dev.mysql.com/doc/refman/5.1/en/date-and-time-type-overview.html'),(16,'OPEN',23,'Syntax:\nOPEN cursor_name\n\nThis statement opens a previously declared cursor.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/open.html\n\n','','http://dev.mysql.com/doc/refman/5.1/en/open.html'),(17,'SHOW CREATE TRIGGER',26,'Syntax:\nSHOW CREATE TRIGGER trigger_name\n\nThis statement shows a CREATE TRIGGER statement that creates the given\ntrigger.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/show-create-trigger.html\n\n','','http://dev.mysql.com/doc/refman/5.1/en/show-create-trigger.html'),(18,'SHOW CREATE PROCEDURE',26,'Syntax:\nSHOW CREATE PROCEDURE proc_name\n\nThis statement is a MySQL extension. It returns the exact string that\ncan be used to re-create the named stored procedure. A similar\nstatement, SHOW CREATE FUNCTION, displays information about stored\nfunctions (see [HELP SHOW CREATE FUNCTION]).\n\nBoth statements require that you be the owner of the routine or have\nSELECT access to the mysql.proc table. If you do not have privileges\nfor the routine itself, the value displayed for the Create Procedure or\nCreate Function field will be NULL.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/show-create-procedure.html\n\n','mysql> SHOW CREATE PROCEDURE test.simpleproc\\G\n*************************** 1. row ***************************\n Procedure: simpleproc\n sql_mode:\n Create Procedure: CREATE PROCEDURE `simpleproc`(OUT param1 INT)\n BEGIN\n SELECT COUNT(*) INTO param1 FROM t;\n END\ncharacter_set_client: latin1\ncollation_connection: latin1_swedish_ci\n Database Collation: latin1_swedish_ci\n\nmysql> SHOW CREATE FUNCTION test.hello\\G\n*************************** 1. row ***************************\n Function: hello\n sql_mode:\n Create Function: CREATE FUNCTION `hello`(s CHAR(20))\n RETURNS CHAR(50)\n RETURN CONCAT(\'Hello, \',s,\'!\')\ncharacter_set_client: latin1\ncollation_connection: latin1_swedish_ci\n Database Collation: latin1_swedish_ci\n','http://dev.mysql.com/doc/refman/5.1/en/show-create-procedure.html'),(19,'INTEGER',22,'INTEGER[(M)] [UNSIGNED] [ZEROFILL]\n\nThis type is a synonym for INT.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/numeric-type-overview.html\n\n','','http://dev.mysql.com/doc/refman/5.1/en/numeric-type-overview.html'),(20,'LOWER',36,'Syntax:\nLOWER(str)\n\nReturns the string str with all characters changed to lowercase\naccording to the current character set mapping. The default is latin1\n(cp1252 West European).\n\nmysql> SELECT LOWER(\'QUADRATICALLY\');\n -> \'quadratically\'\n\nLOWER() (and UPPER()) are ineffective when applied to binary strings\n(BINARY, VARBINARY, BLOB). To perform lettercase conversion, convert\nthe string to a nonbinary string:\n\nmysql> SET @str = BINARY \'New York\';\nmysql> SELECT LOWER(@str), LOWER(CONVERT(@str USING latin1));\n+-------------+-----------------------------------+\n| LOWER(@str) | LOWER(CONVERT(@str USING latin1)) |\n+-------------+-----------------------------------+\n| New York | new york |\n+-------------+-----------------------------------+\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/string-functions.html\n\n','','http://dev.mysql.com/doc/refman/5.1/en/string-functions.html'),(21,'SHOW COLUMNS',26,'Syntax:\nSHOW [FULL] COLUMNS {FROM | IN} tbl_name [{FROM | IN} db_name]\n [LIKE \'pattern\' | WHERE expr]\n\nSHOW COLUMNS displays information about the columns in a given table.\nIt also works for views. The LIKE clause, if present, indicates which\ncolumn names to match. The WHERE clause can be given to select rows\nusing more general conditions, as discussed in\nhttp://dev.mysql.com/doc/refman/5.1/en/extended-show.html.\n\nmysql> SHOW COLUMNS FROM City;\n+------------+----------+------+-----+---------+----------------+\n| Field | Type | Null | Key | Default | Extra |\n+------------+----------+------+-----+---------+----------------+\n| Id | int(11) | NO | PRI | NULL | auto_increment |\n| Name | char(35) | NO | | | |\n| Country | char(3) | NO | UNI | | |\n| District | char(20) | YES | MUL | | |\n| Population | int(11) | NO | | 0 | |\n+------------+----------+------+-----+---------+----------------+\n5 rows in set (0.00 sec)\n\nIf the data types differ from what you expect them to be based on a\nCREATE TABLE statement, note that MySQL sometimes changes data types\nwhen you create or alter a table. The conditions under which this\noccurs are described in\nhttp://dev.mysql.com/doc/refman/5.1/en/silent-column-changes.html.\n\nThe FULL keyword causes the output to include the column collation and\ncomments, as well as the privileges you have for each column.\n\nYou can use db_name.tbl_name as an alternative to the tbl_name FROM\ndb_name syntax. In other words, these two statements are equivalent:\n\nmysql> SHOW COLUMNS FROM mytable FROM mydb;\nmysql> SHOW COLUMNS FROM mydb.mytable;\n\nSHOW COLUMNS displays the following values for each table column:\n\nField indicates the column name.\n\nType indicates the column data type.\n\nCollation indicates the collation for nonbinary string columns, or NULL\nfor other columns. This value is displayed only if you use the FULL\nkeyword.\n\nThe Null field contains YES if NULL values can be stored in the column,\nNO if not.\n\nThe Key field indicates whether the column is indexed:\n\no If Key is empty, the column either is not indexed or is indexed only\n as a secondary column in a multiple-column, nonunique index.\n\no If Key is PRI, the column is a PRIMARY KEY or is one of the columns\n in a multiple-column PRIMARY KEY.\n\no If Key is UNI, the column is the first column of a UNIQUE index. (A\n UNIQUE index allows multiple NULL values, but you can tell whether\n the column allows NULL by checking the Null field.)\n\no If Key is MUL, the column is the first column of a nonunique index in\n which multiple occurrences of a given value are allowed within the\n column.\n\nIf more than one of the Key values applies to a given column of a\ntable, Key displays the one with the highest priority, in the order\nPRI, UNI, MUL.\n\nA UNIQUE index may be displayed as PRI if it cannot contain NULL values\nand there is no PRIMARY KEY in the table. A UNIQUE index may display as\nMUL if several columns form a composite UNIQUE index; although the\ncombination of the columns is unique, each column can still hold\nmultiple occurrences of a given value.\n\nThe Default field indicates the default value that is assigned to the\ncolumn.\n\nThe Extra field contains any additional information that is available\nabout a given column. The value is nonempty in these cases:\nauto_increment for columns that have the AUTO_INCREMENT attribute; as\nof MySQL 5.1.23, on update CURRENT_TIMESTAMP for TIMESTAMP columns that\nhave the ON UPDATE CURRENT_TIMESTAMP attribute.\n\nPrivileges indicates the privileges you have for the column. This value\nis displayed only if you use the FULL keyword.\n\nComment indicates any comment the column has. This value is displayed\nonly if you use the FULL keyword.\n\nSHOW FIELDS is a synonym for SHOW COLUMNS. You can also list a table\'s\ncolumns with the mysqlshow db_name tbl_name command.\n\nThe DESCRIBE statement provides information similar to SHOW COLUMNS.\nSee [HELP DESCRIBE].\n\nThe SHOW CREATE TABLE, SHOW TABLE STATUS, and SHOW INDEX statements\nalso provide information about tables. See [HELP SHOW].\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/show-columns.html\n\n','','http://dev.mysql.com/doc/refman/5.1/en/show-columns.html'),(22,'CREATE TRIGGER',38,'Syntax:\nCREATE\n [DEFINER = { user | CURRENT_USER }]\n TRIGGER trigger_name trigger_time trigger_event\n ON tbl_name FOR EACH ROW trigger_body\n\nThis statement creates a new trigger. A trigger is a named database\nobject that is associated with a table, and that activates when a\nparticular event occurs for the table. The trigger becomes associated\nwith the table named tbl_name, which must refer to a permanent table.\nYou cannot associate a trigger with a TEMPORARY table or a view.\n\nCREATE TRIGGER requires the TRIGGER privilege for the table associated\nwith the trigger. The statement might also require the SUPER privilege,\ndepending on the DEFINER value, as described later in this section. If\nbinary logging is enabled, CREATE TRIGGER might require the SUPER\nprivilege, as described in\nhttp://dev.mysql.com/doc/refman/5.1/en/stored-programs-logging.html.\n(Before MySQL 5.1.6, there is no TRIGGER privilege and this statement\nrequires the SUPER privilege in all cases.)\n\nThe DEFINER clause determines the security context to be used when\nchecking access privileges at trigger activation time. See later in\nthis section for more information.\n\ntrigger_time is the trigger action time. It can be BEFORE or AFTER to\nindicate that the trigger activates before or after each row to be\nmodified.\n\ntrigger_event indicates the kind of statement that activates the\ntrigger. The trigger_event can be one of the following:\n\no INSERT: The trigger is activated whenever a new row is inserted into\n the table; for example, through INSERT, LOAD DATA, and REPLACE\n statements.\n\no UPDATE: The trigger is activated whenever a row is modified; for\n example, through UPDATE statements.\n\no DELETE: The trigger is activated whenever a row is deleted from the\n table; for example, through DELETE and REPLACE statements. However,\n DROP TABLE and TRUNCATE TABLE statements on the table do not activate\n this trigger, because they do not use DELETE. Dropping a partition\n does not activate DELETE triggers, either. See [HELP TRUNCATE TABLE].\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/create-trigger.html\n\n','','http://dev.mysql.com/doc/refman/5.1/en/create-trigger.html'),(23,'MONTH',31,'Syntax:\nMONTH(date)\n\nReturns the month for date, in the range 1 to 12 for January to\nDecember, or 0 for dates such as \'0000-00-00\' or \'2008-00-00\' that have\na zero month part.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/date-and-time-functions.html\n\n','mysql> SELECT MONTH(\'2008-02-03\');\n -> 2\n','http://dev.mysql.com/doc/refman/5.1/en/date-and-time-functions.html'),(24,'TINYINT',22,'TINYINT[(M)] [UNSIGNED] [ZEROFILL]\n\nA very small integer. The signed range is -128 to 127. The unsigned\nrange is 0 to 255.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/numeric-type-overview.html\n\n','','http://dev.mysql.com/doc/refman/5.1/en/numeric-type-overview.html'),(25,'SHOW TRIGGERS',26,'Syntax:\nSHOW TRIGGERS [{FROM | IN} db_name]\n [LIKE \'pattern\' | WHERE expr]\n\nSHOW TRIGGERS lists the triggers currently defined for tables in a\ndatabase (the default database unless a FROM clause is given). This\nstatement requires the TRIGGER privilege (prior to MySQL 5.1.22, it\nrequires the SUPER privilege). The LIKE clause, if present, indicates\nwhich table names to match and causes the statement to display triggers\nfor those tables. The WHERE clause can be given to select rows using\nmore general conditions, as discussed in\nhttp://dev.mysql.com/doc/refman/5.1/en/extended-show.html.\n\nFor the trigger ins_sum as defined in\nhttp://dev.mysql.com/doc/refman/5.1/en/triggers.html, the output of\nthis statement is as shown here:\n\nmysql> SHOW TRIGGERS LIKE \'acc%\'\\G\n*************************** 1. row ***************************\n Trigger: ins_sum\n Event: INSERT\n Table: account\n Statement: SET @sum = @sum + NEW.amount\n Timing: BEFORE\n Created: NULL\n sql_mode:\n Definer: myname@localhost\ncharacter_set_client: latin1\ncollation_connection: latin1_swedish_ci\n Database Collation: latin1_swedish_ci\n\ncharacter_set_client is the session value of the character_set_client\nsystem variable when the trigger was created. collation_connection is\nthe session value of the collation_connection system variable when the\ntrigger was created. Database Collation is the collation of the\ndatabase with which the trigger is associated. These columns were added\nin MySQL 5.1.21.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/show-triggers.html\n\n','','http://dev.mysql.com/doc/refman/5.1/en/show-triggers.html'),(26,'MASTER_POS_WAIT',15,'Syntax:\nMASTER_POS_WAIT(log_name,log_pos[,timeout])\n\nThis function is useful for control of master/slave synchronization. It\nblocks until the slave has read and applied all updates up to the\nspecified position in the master log. The return value is the number of\nlog events the slave had to wait for to advance to the specified\nposition. The function returns NULL if the slave SQL thread is not\nstarted, the slave\'s master information is not initialized, the\narguments are incorrect, or an error occurs. It returns -1 if the\ntimeout has been exceeded. If the slave SQL thread stops while\nMASTER_POS_WAIT() is waiting, the function returns NULL. If the slave\nis past the specified position, the function returns immediately.\n\nIf a timeout value is specified, MASTER_POS_WAIT() stops waiting when\ntimeout seconds have elapsed. timeout must be greater than 0; a zero or\nnegative timeout means no timeout.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/miscellaneous-functions.html\n\n','','http://dev.mysql.com/doc/refman/5.1/en/miscellaneous-functions.html'),(27,'REGEXP',36,'Syntax:\nexpr REGEXP pat, expr RLIKE pat\n\nPerforms a pattern match of a string expression expr against a pattern\npat. The pattern can be an extended regular expression. The syntax for\nregular expressions is discussed in\nhttp://dev.mysql.com/doc/refman/5.1/en/regexp.html. Returns 1 if expr\nmatches pat; otherwise it returns 0. If either expr or pat is NULL, the\nresult is NULL. RLIKE is a synonym for REGEXP, provided for mSQL\ncompatibility.\n\nThe pattern need not be a literal string. For example, it can be\nspecified as a string expression or table column.\n\n*Note*: Because MySQL uses the C escape syntax in strings (for example,\n\"\\n\" to represent the newline character), you must double any \"\\\" that\nyou use in your REGEXP strings.\n\nREGEXP is not case sensitive, except when used with binary strings.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/regexp.html\n\n','mysql> SELECT \'Monty!\' REGEXP \'.*\';\n -> 1\nmysql> SELECT \'new*\\n*line\' REGEXP \'new\\\\*.\\\\*line\';\n -> 1\nmysql> SELECT \'a\' REGEXP \'A\', \'a\' REGEXP BINARY \'A\';\n -> 1 0\nmysql> SELECT \'a\' REGEXP \'^[a-d]\';\n -> 1\n','http://dev.mysql.com/doc/refman/5.1/en/regexp.html'),(28,'IF STATEMENT',23,'Syntax:\nIF search_condition THEN statement_list\n [ELSEIF search_condition THEN statement_list] ...\n [ELSE statement_list]\nEND IF\n\nIF implements a basic conditional construct. If the search_condition\nevaluates to true, the corresponding SQL statement list is executed. If\nno search_condition matches, the statement list in the ELSE clause is\nexecuted. Each statement_list consists of one or more statements.\n\n*Note*: There is also an IF() function, which differs from the IF\nstatement described here. See\nhttp://dev.mysql.com/doc/refman/5.1/en/control-flow-functions.html.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/if-statement.html\n\n','','http://dev.mysql.com/doc/refman/5.1/en/if-statement.html'),(29,'^',19,'Syntax:\n^\n\nBitwise XOR:\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/bit-functions.html\n\n','mysql> SELECT 1 ^ 1;\n -> 0\nmysql> SELECT 1 ^ 0;\n -> 1\nmysql> SELECT 11 ^ 3;\n -> 8\n','http://dev.mysql.com/doc/refman/5.1/en/bit-functions.html'),(30,'DROP VIEW',38,'Syntax:\nDROP VIEW [IF EXISTS]\n view_name [, view_name] ...\n [RESTRICT | CASCADE]\n\nDROP VIEW removes one or more views. You must have the DROP privilege\nfor each view. If any of the views named in the argument list do not\nexist, MySQL returns an error indicating by name which nonexisting\nviews it was unable to drop, but it also drops all of the views in the\nlist that do exist.\n\nThe IF EXISTS clause prevents an error from occurring for views that\ndon\'t exist. When this clause is given, a NOTE is generated for each\nnonexistent view. See [HELP SHOW WARNINGS].\n\nRESTRICT and CASCADE, if given, are parsed and ignored.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/drop-view.html\n\n','','http://dev.mysql.com/doc/refman/5.1/en/drop-view.html'),(31,'WITHIN',30,'Within(g1,g2)\n\nReturns 1 or 0 to indicate whether g1 is spatially within g2. This\ntests the opposite relationship as Contains().\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/functions-that-test-spatial-relationships-between-geometries.html\n\n','','http://dev.mysql.com/doc/refman/5.1/en/functions-that-test-spatial-relationships-between-geometries.html'),(32,'WEEK',31,'Syntax:\nWEEK(date[,mode])\n\nThis function returns the week number for date. The two-argument form\nof WEEK() allows you to specify whether the week starts on Sunday or\nMonday and whether the return value should be in the range from 0 to 53\nor from 1 to 53. If the mode argument is omitted, the value of the\ndefault_week_format system variable is used. See\nhttp://dev.mysql.com/doc/refman/5.1/en/server-system-variables.html.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/date-and-time-functions.html\n\n','mysql> SELECT WEEK(\'2008-02-20\');\n -> 7\nmysql> SELECT WEEK(\'2008-02-20\',0);\n -> 7\nmysql> SELECT WEEK(\'2008-02-20\',1);\n -> 8\nmysql> SELECT WEEK(\'2008-12-31\',1);\n -> 53\n','http://dev.mysql.com/doc/refman/5.1/en/date-and-time-functions.html'),(33,'SHOW PLUGINS',26,'Syntax:\nSHOW PLUGINS\n\nSHOW PLUGINS displays information about server plugins.\n\nmysql> SHOW PLUGINS\\G\n*************************** 1. row ***************************\n Name: binlog\n Status: ACTIVE\n Type: STORAGE ENGINE\nLibrary: NULL\nLicense: GPL\n*************************** 2. row ***************************\n Name: CSV\n Status: ACTIVE\n Type: STORAGE ENGINE\nLibrary: NULL\nLicense: GPL\n*************************** 3. row ***************************\n Name: MEMORY\n Status: ACTIVE\n Type: STORAGE ENGINE\nLibrary: NULL\nLicense: GPL\n*************************** 4. row ***************************\n Name: MyISAM\n Status: ACTIVE\n Type: STORAGE ENGINE\nLibrary: NULL\nLicense: GPL\n...\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/show-plugins.html\n\n','','http://dev.mysql.com/doc/refman/5.1/en/show-plugins.html'),(34,'DROP FUNCTION UDF',21,'Syntax:\nDROP FUNCTION function_name\n\nThis statement drops the user-defined function (UDF) named\nfunction_name.\n\nTo drop a function, you must have the DELETE privilege for the mysql\ndatabase. This is because DROP FUNCTION removes a row from the\nmysql.func system table that records the function\'s name, type, and\nshared library name.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/drop-function-udf.html\n\n','','http://dev.mysql.com/doc/refman/5.1/en/drop-function-udf.html'),(35,'PREPARE',26,'Syntax:\nPREPARE stmt_name FROM preparable_stmt\n\nThe PREPARE statement prepares a statement and assigns it a name,\nstmt_name, by which to refer to the statement later. Statement names\nare not case sensitive. preparable_stmt is either a string literal or a\nuser variable that contains the text of the statement. The text must\nrepresent a single SQL statement, not multiple statements. Within the\nstatement, \"?\" characters can be used as parameter markers to indicate\nwhere data values are to be bound to the query later when you execute\nit. The \"?\" characters should not be enclosed within quotation marks,\neven if you intend to bind them to string values. Parameter markers can\nbe used only where data values should appear, not for SQL keywords,\nidentifiers, and so forth.\n\nIf a prepared statement with the given name already exists, it is\ndeallocated implicitly before the new statement is prepared. This means\nthat if the new statement contains an error and cannot be prepared, an\nerror is returned and no statement with the given name exists.\n\nA prepared statement is executed with EXECUTE and released with\nDEALLOCATE PREPARE.\n\nThe scope of a prepared statement is the session within which it is\ncreated. Other sessions cannot see it.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/prepare.html\n\n','','http://dev.mysql.com/doc/refman/5.1/en/prepare.html'),(36,'LOCK',8,'Syntax:\nLOCK TABLES\n tbl_name [[AS] alias] lock_type\n [, tbl_name [[AS] alias] lock_type] ...\n\nlock_type:\n READ [LOCAL]\n | [LOW_PRIORITY] WRITE\n\nUNLOCK TABLES\n\nMySQL enables client sessions to acquire table locks explicitly for the\npurpose of cooperating with other sessions for access to tables, or to\nprevent other sessions from modifying tables during periods when a\nsession requires exclusive access to them. A session can acquire or\nrelease locks only for itself. One session cannot acquire locks for\nanother session or release locks held by another session.\n\nLocks may be used to emulate transactions or to get more speed when\nupdating tables. This is explained in more detail later in this\nsection.\n\nLOCK TABLES explicitly acquires table locks for the current client\nsession. Table locks can be acquired for base tables or views. You must\nhave the LOCK TABLES privilege, and the SELECT privilege for each\nobject to be locked.\n\nFor view locking, LOCK TABLES adds all base tables used in the view to\nthe set of tables to be locked and locks them automatically. If you\nlock a table explicitly with LOCK TABLES, any tables used in triggers\nare also locked implicitly, as described in\nhttp://dev.mysql.com/doc/refman/5.1/en/lock-tables-and-triggers.html.\n\nUNLOCK TABLES explicitly releases any table locks held by the current\nsession.\n\nAnother use for UNLOCK TABLES is to release the global read lock\nacquired with the FLUSH TABLES WITH READ LOCK statement, which enables\nyou to lock all tables in all databases. See [HELP FLUSH]. (This is a\nvery convenient way to get backups if you have a file system such as\nVeritas that can take snapshots in time.)\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/lock-tables.html\n\n','','http://dev.mysql.com/doc/refman/5.1/en/lock-tables.html'),(37,'UPDATEXML',36,'Syntax:\nUpdateXML(xml_target, xpath_expr, new_xml)\n\nThis function replaces a single portion of a given fragment of XML\nmarkup xml_target with a new XML fragment new_xml, and then returns the\nchanged XML. The portion of xml_target that is replaced matches an\nXPath expression xpath_expr supplied by the user. If no expression\nmatching xpath_expr is found, or if multiple matches are found, the\nfunction returns the original xml_target XML fragment. All three\narguments should be strings.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/xml-functions.html\n\n','mysql> SELECT\n -> UpdateXML(\'ccc\', \'/a\', \'fff\') AS val1,\n -> UpdateXML(\'ccc\', \'/b\', \'fff\') AS val2,\n -> UpdateXML(\'ccc\', \'//b\', \'fff\') AS val3,\n -> UpdateXML(\'ccc\', \'/a/d\', \'fff\') AS val4,\n -> UpdateXML(\'ccc\', \'/a/d\', \'fff\') AS val5\n -> \\G\n\n*************************** 1. row ***************************\nval1: fff\nval2: ccc\nval3: fff\nval4: cccfff\nval5: ccc\n','http://dev.mysql.com/doc/refman/5.1/en/xml-functions.html'),(38,'RESET SLAVE',26,'Syntax:\nRESET SLAVE\n\nRESET SLAVE makes the slave forget its replication position in the\nmaster\'s binary log. This statement is meant to be used for a clean\nstart: It deletes the master.info and relay-log.info files, all the\nrelay log files, and starts a new relay log file. To use RESET SLAVE,\nthe slave replication threads must be stopped (use STOP SLAVE if\nnecessary).\n\n*Note*: All relay log files are deleted, even if they have not been\ncompletely executed by the slave SQL thread. (This is a condition\nlikely to exist on a replication slave if you have issued a STOP SLAVE\nstatement or if the slave is highly loaded.)\n\nConnection information stored in the master.info file is immediately\nreset using any values specified in the corresponding startup options.\nThis information includes values such as master host, master port,\nmaster user, and master password. If the slave SQL thread was in the\nmiddle of replicating temporary tables when it was stopped, and RESET\nSLAVE is issued, these replicated temporary tables are deleted on the\nslave.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/reset-slave.html\n\n','','http://dev.mysql.com/doc/refman/5.1/en/reset-slave.html'),(39,'SHOW BINARY LOGS',26,'Syntax:\nSHOW BINARY LOGS\nSHOW MASTER LOGS\n\nLists the binary log files on the server. This statement is used as\npart of the procedure described in [HELP PURGE BINARY LOGS], that shows\nhow to determine which logs can be purged.\n\nmysql> SHOW BINARY LOGS;\n+---------------+-----------+\n| Log_name | File_size |\n+---------------+-----------+\n| binlog.000015 | 724935 |\n| binlog.000016 | 733481 |\n+---------------+-----------+\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/show-binary-logs.html\n\n','','http://dev.mysql.com/doc/refman/5.1/en/show-binary-logs.html'),(40,'POLYGON',24,'Polygon(ls1,ls2,...)\n\nConstructs a Polygon value from a number of LineString or WKB\nLineString arguments. If any argument does not represent a LinearRing\n(that is, not a closed and simple LineString), the return value is\nNULL.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/creating-spatial-values.html#gis-mysql-specific-functions\n\n','','http://dev.mysql.com/doc/refman/5.1/en/creating-spatial-values.html#gis-mysql-specific-functions'),(41,'MINUTE',31,'Syntax:\nMINUTE(time)\n\nReturns the minute for time, in the range 0 to 59.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/date-and-time-functions.html\n\n','mysql> SELECT MINUTE(\'2008-02-03 10:05:03\');\n -> 5\n','http://dev.mysql.com/doc/refman/5.1/en/date-and-time-functions.html'),(42,'DAY',31,'Syntax:\nDAY(date)\n\nDAY() is a synonym for DAYOFMONTH().\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/date-and-time-functions.html\n\n','','http://dev.mysql.com/doc/refman/5.1/en/date-and-time-functions.html'),(43,'MID',36,'Syntax:\nMID(str,pos,len)\n\nMID(str,pos,len) is a synonym for SUBSTRING(str,pos,len).\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/string-functions.html\n\n','','http://dev.mysql.com/doc/refman/5.1/en/string-functions.html'),(44,'UUID',15,'Syntax:\nUUID()\n\nReturns a Universal Unique Identifier (UUID) generated according to\n\"DCE 1.1: Remote Procedure Call\" (Appendix A) CAE (Common Applications\nEnvironment) Specifications published by The Open Group in October 1997\n(Document Number C706,\nhttp://www.opengroup.org/public/pubs/catalog/c706.htm).\n\nA UUID is designed as a number that is globally unique in space and\ntime. Two calls to UUID() are expected to generate two different\nvalues, even if these calls are performed on two separate computers\nthat are not connected to each other.\n\nA UUID is a 128-bit number represented by a utf8 string of five\nhexadecimal numbers in aaaaaaaa-bbbb-cccc-dddd-eeeeeeeeeeee format:\n\no The first three numbers are generated from a timestamp.\n\no The fourth number preserves temporal uniqueness in case the timestamp\n value loses monotonicity (for example, due to daylight saving time).\n\no The fifth number is an IEEE 802 node number that provides spatial\n uniqueness. A random number is substituted if the latter is not\n available (for example, because the host computer has no Ethernet\n card, or we do not know how to find the hardware address of an\n interface on your operating system). In this case, spatial uniqueness\n cannot be guaranteed. Nevertheless, a collision should have very low\n probability.\n\n Currently, the MAC address of an interface is taken into account only\n on FreeBSD and Linux. On other operating systems, MySQL uses a\n randomly generated 48-bit number.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/miscellaneous-functions.html\n\n','mysql> SELECT UUID();\n -> \'6ccd780c-baba-1026-9564-0040f4311e29\'\n','http://dev.mysql.com/doc/refman/5.1/en/miscellaneous-functions.html'),(45,'LINESTRING',24,'LineString(pt1,pt2,...)\n\nConstructs a LineString value from a number of Point or WKB Point\narguments. If the number of arguments is less than two, the return\nvalue is NULL.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/creating-spatial-values.html#gis-mysql-specific-functions\n\n','','http://dev.mysql.com/doc/refman/5.1/en/creating-spatial-values.html#gis-mysql-specific-functions'),(46,'SLEEP',15,'Syntax:\nSLEEP(duration)\n\nSleeps (pauses) for the number of seconds given by the duration\nargument, then returns 0. If SLEEP() is interrupted, it returns 1. The\nduration may have a fractional part given in microseconds.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/miscellaneous-functions.html\n\n','','http://dev.mysql.com/doc/refman/5.1/en/miscellaneous-functions.html'),(47,'CONNECTION_ID',17,'Syntax:\nCONNECTION_ID()\n\nReturns the connection ID (thread ID) for the connection. Every\nconnection has an ID that is unique among the set of currently\nconnected clients.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/information-functions.html\n\n','mysql> SELECT CONNECTION_ID();\n -> 23786\n','http://dev.mysql.com/doc/refman/5.1/en/information-functions.html'),(48,'DELETE',27,'Syntax:\nSingle-table syntax:\n\nDELETE [LOW_PRIORITY] [QUICK] [IGNORE] FROM tbl_name\n [WHERE where_condition]\n [ORDER BY ...]\n [LIMIT row_count]\n\nMultiple-table syntax:\n\nDELETE [LOW_PRIORITY] [QUICK] [IGNORE]\n tbl_name[.*] [, tbl_name[.*]] ...\n FROM table_references\n [WHERE where_condition]\n\nOr:\n\nDELETE [LOW_PRIORITY] [QUICK] [IGNORE]\n FROM tbl_name[.*] [, tbl_name[.*]] ...\n USING table_references\n [WHERE where_condition]\n\nFor the single-table syntax, the DELETE statement deletes rows from\ntbl_name and returns a count of the number of deleted rows. This count\ncan be obtained by calling the ROW_COUNT() function (see\nhttp://dev.mysql.com/doc/refman/5.1/en/information-functions.html). The\nWHERE clause, if given, specifies the conditions that identify which\nrows to delete. With no WHERE clause, all rows are deleted. If the\nORDER BY clause is specified, the rows are deleted in the order that is\nspecified. The LIMIT clause places a limit on the number of rows that\ncan be deleted.\n\nFor the multiple-table syntax, DELETE deletes from each tbl_name the\nrows that satisfy the conditions. In this case, ORDER BY and LIMIT\ncannot be used.\n\nwhere_condition is an expression that evaluates to true for each row to\nbe deleted. It is specified as described in\nhttp://dev.mysql.com/doc/refman/5.1/en/select.html.\n\nCurrently, you cannot delete from a table and select from the same\ntable in a subquery.\n\nYou need the DELETE privilege on a table to delete rows from it. You\nneed only the SELECT privilege for any columns that are only read, such\nas those named in the WHERE clause.\n\nAs stated, a DELETE statement with no WHERE clause deletes all rows. A\nfaster way to do this, when you do not need to know the number of\ndeleted rows, is to use TRUNCATE TABLE. However, within a transaction\nor if you have a lock on the table, TRUNCATE TABLE cannot be used\nwhereas DELETE can. See [HELP TRUNCATE TABLE], and [HELP LOCK].\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/delete.html\n\n','','http://dev.mysql.com/doc/refman/5.1/en/delete.html'),(49,'ROUND',4,'Syntax:\nROUND(X), ROUND(X,D)\n\nRounds the argument X to D decimal places. The rounding algorithm\ndepends on the data type of X. D defaults to 0 if not specified. D can\nbe negative to cause D digits left of the decimal point of the value X\nto become zero.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/mathematical-functions.html\n\n','mysql> SELECT ROUND(-1.23);\n -> -1\nmysql> SELECT ROUND(-1.58);\n -> -2\nmysql> SELECT ROUND(1.58);\n -> 2\nmysql> SELECT ROUND(1.298, 1);\n -> 1.3\nmysql> SELECT ROUND(1.298, 0);\n -> 1\nmysql> SELECT ROUND(23.298, -1);\n -> 20\n','http://dev.mysql.com/doc/refman/5.1/en/mathematical-functions.html'),(50,'NULLIF',7,'Syntax:\nNULLIF(expr1,expr2)\n\nReturns NULL if expr1 = expr2 is true, otherwise returns expr1. This is\nthe same as CASE WHEN expr1 = expr2 THEN NULL ELSE expr1 END.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/control-flow-functions.html\n\n','mysql> SELECT NULLIF(1,1);\n -> NULL\nmysql> SELECT NULLIF(1,2);\n -> 1\n','http://dev.mysql.com/doc/refman/5.1/en/control-flow-functions.html'),(51,'CLOSE',23,'Syntax:\nCLOSE cursor_name\n\nThis statement closes a previously opened cursor.\n\nIf not closed explicitly, a cursor is closed at the end of the compound\nstatement in which it was declared.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/close.html\n\n','','http://dev.mysql.com/doc/refman/5.1/en/close.html'),(52,'STOP SLAVE',26,'Syntax:\nSTOP SLAVE [thread_type [, thread_type] ... ]\n\nthread_type: IO_THREAD | SQL_THREAD\n\nStops the slave threads. STOP SLAVE requires the SUPER privilege.\n\nLike START SLAVE, this statement may be used with the IO_THREAD and\nSQL_THREAD options to name the thread or threads to be stopped.\n\n*Note*: The transactional behavior of STOP SLAVE changed in MySQL\n5.1.35. Previously, it took effect immediately. Beginning with MySQL\n5.1.35, it waits until any current replication event group affecting\none or more non-transactional tables has finished executing (if there\nis any such replication group), or until the user issues a KILL QUERY\nor KILL CONNECTION statement. (Bug#319\n(http://bugs.mysql.com/bug.php?id=319), Bug#38205\n(http://bugs.mysql.com/bug.php?id=38205))\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/stop-slave.html\n\n','','http://dev.mysql.com/doc/refman/5.1/en/stop-slave.html'),(53,'TIMEDIFF',31,'Syntax:\nTIMEDIFF(expr1,expr2)\n\nTIMEDIFF() returns expr1 - expr2 expressed as a time value. expr1 and\nexpr2 are time or date-and-time expressions, but both must be of the\nsame type.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/date-and-time-functions.html\n\n','mysql> SELECT TIMEDIFF(\'2000:01:01 00:00:00\',\n -> \'2000:01:01 00:00:00.000001\');\n -> \'-00:00:00.000001\'\nmysql> SELECT TIMEDIFF(\'2008-12-31 23:59:59.000001\',\n -> \'2008-12-30 01:01:01.000002\');\n -> \'46:58:57.999999\'\n','http://dev.mysql.com/doc/refman/5.1/en/date-and-time-functions.html'),(54,'REPLACE FUNCTION',36,'Syntax:\nREPLACE(str,from_str,to_str)\n\nReturns the string str with all occurrences of the string from_str\nreplaced by the string to_str. REPLACE() performs a case-sensitive\nmatch when searching for from_str.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/string-functions.html\n\n','mysql> SELECT REPLACE(\'www.mysql.com\', \'w\', \'Ww\');\n -> \'WwWwWw.mysql.com\'\n','http://dev.mysql.com/doc/refman/5.1/en/string-functions.html'),(55,'USE',28,'Syntax:\nUSE db_name\n\nThe USE db_name statement tells MySQL to use the db_name database as\nthe default (current) database for subsequent statements. The database\nremains the default until the end of the session or another USE\nstatement is issued:\n\nUSE db1;\nSELECT COUNT(*) FROM mytable; # selects from db1.mytable\nUSE db2;\nSELECT COUNT(*) FROM mytable; # selects from db2.mytable\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/use.html\n\n','','http://dev.mysql.com/doc/refman/5.1/en/use.html'),(56,'LINEFROMTEXT',3,'LineFromText(wkt[,srid]), LineStringFromText(wkt[,srid])\n\nConstructs a LINESTRING value using its WKT representation and SRID.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/creating-spatial-values.html#gis-wkt-functions\n\n','','http://dev.mysql.com/doc/refman/5.1/en/creating-spatial-values.html#gis-wkt-functions'),(57,'CASE OPERATOR',7,'Syntax:\nCASE value WHEN [compare_value] THEN result [WHEN [compare_value] THEN\nresult ...] [ELSE result] END\n\nCASE WHEN [condition] THEN result [WHEN [condition] THEN result ...]\n[ELSE result] END\n\nThe first version returns the result where value=compare_value. The\nsecond version returns the result for the first condition that is true.\nIf there was no matching result value, the result after ELSE is\nreturned, or NULL if there is no ELSE part.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/control-flow-functions.html\n\n','mysql> SELECT CASE 1 WHEN 1 THEN \'one\'\n -> WHEN 2 THEN \'two\' ELSE \'more\' END;\n -> \'one\'\nmysql> SELECT CASE WHEN 1>0 THEN \'true\' ELSE \'false\' END;\n -> \'true\'\nmysql> SELECT CASE BINARY \'B\'\n -> WHEN \'a\' THEN 1 WHEN \'b\' THEN 2 END;\n -> NULL\n','http://dev.mysql.com/doc/refman/5.1/en/control-flow-functions.html'),(58,'SHOW MASTER STATUS',26,'Syntax:\nSHOW MASTER STATUS\n\nThis statement provides status information about the binary log files\nof the master. It requires either the SUPER or REPLICATION CLIENT\nprivilege.\n\nExample:\n\nmysql> SHOW MASTER STATUS;\n+---------------+----------+--------------+------------------+\n| File | Position | Binlog_Do_DB | Binlog_Ignore_DB |\n+---------------+----------+--------------+------------------+\n| mysql-bin.003 | 73 | test | manual,mysql |\n+---------------+----------+--------------+------------------+\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/show-master-status.html\n\n','','http://dev.mysql.com/doc/refman/5.1/en/show-master-status.html'),(59,'ADDTIME',31,'Syntax:\nADDTIME(expr1,expr2)\n\nADDTIME() adds expr2 to expr1 and returns the result. expr1 is a time\nor datetime expression, and expr2 is a time expression.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/date-and-time-functions.html\n\n','mysql> SELECT ADDTIME(\'2007-12-31 23:59:59.999999\', \'1 1:1:1.000002\');\n -> \'2008-01-02 01:01:01.000001\'\nmysql> SELECT ADDTIME(\'01:00:00.999999\', \'02:00:00.999998\');\n -> \'03:00:01.999997\'\n','http://dev.mysql.com/doc/refman/5.1/en/date-and-time-functions.html'),(60,'SPATIAL',33,'MySQL can create spatial indexes using syntax similar to that for\ncreating regular indexes, but extended with the SPATIAL keyword.\nCurrently, columns in spatial indexes must be declared NOT NULL. The\nfollowing examples demonstrate how to create spatial indexes:\n\no With CREATE TABLE:\n\nCREATE TABLE geom (g GEOMETRY NOT NULL, SPATIAL INDEX(g));\n\no With ALTER TABLE:\n\nALTER TABLE geom ADD SPATIAL INDEX(g);\n\no With CREATE INDEX:\n\nCREATE SPATIAL INDEX sp_index ON geom (g);\n\nFor MyISAM tables, SPATIAL INDEX creates an R-tree index. For storage\nengines that support nonspatial indexing of spatial columns, the engine\ncreates a B-tree index. A B-tree index on spatial values will be useful\nfor exact-value lookups, but not for range scans.\n\nFor more information on indexing spatial columns, see [HELP CREATE\nINDEX].\n\nTo drop spatial indexes, use ALTER TABLE or DROP INDEX:\n\no With ALTER TABLE:\n\nALTER TABLE geom DROP INDEX g;\n\no With DROP INDEX:\n\nDROP INDEX sp_index ON geom;\n\nExample: Suppose that a table geom contains more than 32,000\ngeometries, which are stored in the column g of type GEOMETRY. The\ntable also has an AUTO_INCREMENT column fid for storing object ID\nvalues.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/creating-spatial-indexes.html\n\n','','http://dev.mysql.com/doc/refman/5.1/en/creating-spatial-indexes.html'),(61,'TIMESTAMPDIFF',31,'Syntax:\nTIMESTAMPDIFF(unit,datetime_expr1,datetime_expr2)\n\nReturns datetime_expr2 - datetime_expr1, where datetime_expr1 and\ndatetime_expr2 are date or datetime expressions. One expression may be\na date and the other a datetime; a date value is treated as a datetime\nhaving the time part \'00:00:00\' where necessary. The unit for the\nresult (an integer) is given by the unit argument. The legal values for\nunit are the same as those listed in the description of the\nTIMESTAMPADD() function.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/date-and-time-functions.html\n\n','mysql> SELECT TIMESTAMPDIFF(MONTH,\'2003-02-01\',\'2003-05-01\');\n -> 3\nmysql> SELECT TIMESTAMPDIFF(YEAR,\'2002-05-01\',\'2001-01-01\');\n -> -1\nmysql> SELECT TIMESTAMPDIFF(MINUTE,\'2003-02-01\',\'2003-05-01 12:05:55\');\n -> 128885\n','http://dev.mysql.com/doc/refman/5.1/en/date-and-time-functions.html'),(62,'UPPER',36,'Syntax:\nUPPER(str)\n\nReturns the string str with all characters changed to uppercase\naccording to the current character set mapping. The default is latin1\n(cp1252 West European).\n\nmysql> SELECT UPPER(\'Hej\');\n -> \'HEJ\'\n\nUPPER() is ineffective when applied to binary strings (BINARY,\nVARBINARY, BLOB). The description of LOWER() shows how to perform\nlettercase conversion of binary strings.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/string-functions.html\n\n','','http://dev.mysql.com/doc/refman/5.1/en/string-functions.html'),(63,'FROM_UNIXTIME',31,'Syntax:\nFROM_UNIXTIME(unix_timestamp), FROM_UNIXTIME(unix_timestamp,format)\n\nReturns a representation of the unix_timestamp argument as a value in\n\'YYYY-MM-DD HH:MM:SS\' or YYYYMMDDHHMMSS.uuuuuu format, depending on\nwhether the function is used in a string or numeric context. The value\nis expressed in the current time zone. unix_timestamp is an internal\ntimestamp value such as is produced by the UNIX_TIMESTAMP() function.\n\nIf format is given, the result is formatted according to the format\nstring, which is used the same way as listed in the entry for the\nDATE_FORMAT() function.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/date-and-time-functions.html\n\n','mysql> SELECT FROM_UNIXTIME(1196440219);\n -> \'2007-11-30 10:30:19\'\nmysql> SELECT FROM_UNIXTIME(1196440219) + 0;\n -> 20071130103019.000000\nmysql> SELECT FROM_UNIXTIME(UNIX_TIMESTAMP(),\n -> \'%Y %D %M %h:%i:%s %x\');\n -> \'2007 30th November 10:30:59 2007\'\n','http://dev.mysql.com/doc/refman/5.1/en/date-and-time-functions.html'),(64,'MEDIUMBLOB',22,'MEDIUMBLOB\n\nA BLOB column with a maximum length of 16,777,215 (224 - 1) bytes. Each\nMEDIUMBLOB value is stored using a three-byte length prefix that\nindicates the number of bytes in the value.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/string-type-overview.html\n\n','','http://dev.mysql.com/doc/refman/5.1/en/string-type-overview.html'),(65,'IFNULL',7,'Syntax:\nIFNULL(expr1,expr2)\n\nIf expr1 is not NULL, IFNULL() returns expr1; otherwise it returns\nexpr2. IFNULL() returns a numeric or string value, depending on the\ncontext in which it is used.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/control-flow-functions.html\n\n','mysql> SELECT IFNULL(1,0);\n -> 1\nmysql> SELECT IFNULL(NULL,10);\n -> 10\nmysql> SELECT IFNULL(1/0,10);\n -> 10\nmysql> SELECT IFNULL(1/0,\'yes\');\n -> \'yes\'\n','http://dev.mysql.com/doc/refman/5.1/en/control-flow-functions.html'),(66,'SHOW FUNCTION CODE',26,'Syntax:\nSHOW FUNCTION CODE func_name\n\nThis statement is similar to SHOW PROCEDURE CODE but for stored\nfunctions. See [HELP SHOW PROCEDURE CODE].\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/show-function-code.html\n\n','','http://dev.mysql.com/doc/refman/5.1/en/show-function-code.html'),(67,'SHOW ERRORS',26,'Syntax:\nSHOW ERRORS [LIMIT [offset,] row_count]\nSHOW COUNT(*) ERRORS\n\nThis statement is similar to SHOW WARNINGS, except that instead of\ndisplaying errors, warnings, and notes, it displays only errors.\n\nThe LIMIT clause has the same syntax as for the SELECT statement. See\nhttp://dev.mysql.com/doc/refman/5.1/en/select.html.\n\nThe SHOW COUNT(*) ERRORS statement displays the number of errors. You\ncan also retrieve this number from the error_count variable:\n\nSHOW COUNT(*) ERRORS;\nSELECT @@error_count;\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/show-errors.html\n\n','','http://dev.mysql.com/doc/refman/5.1/en/show-errors.html'),(68,'LEAST',18,'Syntax:\nLEAST(value1,value2,...)\n\nWith two or more arguments, returns the smallest (minimum-valued)\nargument. The arguments are compared using the following rules:\n\no If the return value is used in an INTEGER context or all arguments\n are integer-valued, they are compared as integers.\n\no If the return value is used in a REAL context or all arguments are\n real-valued, they are compared as reals.\n\no If any argument is a case-sensitive string, the arguments are\n compared as case-sensitive strings.\n\no In all other cases, the arguments are compared as case-insensitive\n strings.\n\nLEAST() returns NULL if any argument is NULL.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/comparison-operators.html\n\n','mysql> SELECT LEAST(2,0);\n -> 0\nmysql> SELECT LEAST(34.0,3.0,5.0,767.0);\n -> 3.0\nmysql> SELECT LEAST(\'B\',\'A\',\'C\');\n -> \'A\'\n','http://dev.mysql.com/doc/refman/5.1/en/comparison-operators.html'),(69,'=',18,'=\n\nEqual:\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/comparison-operators.html\n\n','mysql> SELECT 1 = 0;\n -> 0\nmysql> SELECT \'0\' = 0;\n -> 1\nmysql> SELECT \'0.0\' = 0;\n -> 1\nmysql> SELECT \'0.01\' = 0;\n -> 0\nmysql> SELECT \'.01\' = 0.01;\n -> 1\n','http://dev.mysql.com/doc/refman/5.1/en/comparison-operators.html'),(70,'REVERSE',36,'Syntax:\nREVERSE(str)\n\nReturns the string str with the order of the characters reversed.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/string-functions.html\n\n','mysql> SELECT REVERSE(\'abc\');\n -> \'cba\'\n','http://dev.mysql.com/doc/refman/5.1/en/string-functions.html'),(71,'ISNULL',18,'Syntax:\nISNULL(expr)\n\nIf expr is NULL, ISNULL() returns 1, otherwise it returns 0.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/comparison-operators.html\n\n','mysql> SELECT ISNULL(1+1);\n -> 0\nmysql> SELECT ISNULL(1/0);\n -> 1\n','http://dev.mysql.com/doc/refman/5.1/en/comparison-operators.html'),(72,'BINARY',22,'BINARY(M)\n\nThe BINARY type is similar to the CHAR type, but stores binary byte\nstrings rather than nonbinary character strings. M represents the\ncolumn length in bytes.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/string-type-overview.html\n\n','','http://dev.mysql.com/doc/refman/5.1/en/string-type-overview.html'),(73,'BLOB DATA TYPE',22,'A BLOB is a binary large object that can hold a variable amount of\ndata. The four BLOB types are TINYBLOB, BLOB, MEDIUMBLOB, and LONGBLOB.\nThese differ only in the maximum length of the values they can hold.\nThe four TEXT types are TINYTEXT, TEXT, MEDIUMTEXT, and LONGTEXT. These\ncorrespond to the four BLOB types and have the same maximum lengths and\nstorage requirements. See\nhttp://dev.mysql.com/doc/refman/5.1/en/storage-requirements.html.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/blob.html\n\n','','http://dev.mysql.com/doc/refman/5.1/en/blob.html'),(74,'BOUNDARY',35,'Boundary(g)\n\nReturns a geometry that is the closure of the combinatorial boundary of\nthe geometry value g.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/geometry-property-functions.html#general-geometry-property-functions\n\n','','http://dev.mysql.com/doc/refman/5.1/en/geometry-property-functions.html#general-geometry-property-functions'),(75,'CREATE USER',10,'Syntax:\nCREATE USER user [IDENTIFIED BY [PASSWORD] \'password\']\n [, user [IDENTIFIED BY [PASSWORD] \'password\']] ...\n\nThe CREATE USER statement creates new MySQL accounts. To use it, you\nmust have the global CREATE USER privilege or the INSERT privilege for\nthe mysql database. For each account, CREATE USER creates a new row in\nthe mysql.user table that has no privileges. An error occurs if the\naccount already exists. Each account is named using the same format as\nfor the GRANT statement; for example, \'jeffrey\'@\'localhost\'. If you\nspecify only the user name part of the account name, a host name part\nof \'%\' is used. For additional information about specifying account\nnames, see [HELP GRANT].\n\nThe account can be given a password with the optional IDENTIFIED BY\nclause. The user value and the password are given the same way as for\nthe GRANT statement. In particular, to specify the password in plain\ntext, omit the PASSWORD keyword. To specify the password as the hashed\nvalue as returned by the PASSWORD() function, include the PASSWORD\nkeyword. See [HELP GRANT].\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/create-user.html\n\n','','http://dev.mysql.com/doc/refman/5.1/en/create-user.html'),(76,'POINT',24,'Point(x,y)\n\nConstructs a Point using its coordinates.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/creating-spatial-values.html#gis-mysql-specific-functions\n\n','','http://dev.mysql.com/doc/refman/5.1/en/creating-spatial-values.html#gis-mysql-specific-functions'),(77,'CURRENT_USER',17,'Syntax:\nCURRENT_USER, CURRENT_USER()\n\nReturns the user name and host name combination for the MySQL account\nthat the server used to authenticate the current client. This account\ndetermines your access privileges. The return value is a string in the\nutf8 character set.\n\nThe value of CURRENT_USER() can differ from the value of USER().\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/information-functions.html\n\n','mysql> SELECT USER();\n -> \'davida@localhost\'\nmysql> SELECT * FROM mysql.user;\nERROR 1044: Access denied for user \'\'@\'localhost\' to\ndatabase \'mysql\'\nmysql> SELECT CURRENT_USER();\n -> \'@localhost\'\n','http://dev.mysql.com/doc/refman/5.1/en/information-functions.html'),(78,'LCASE',36,'Syntax:\nLCASE(str)\n\nLCASE() is a synonym for LOWER().\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/string-functions.html\n\n','','http://dev.mysql.com/doc/refman/5.1/en/string-functions.html'),(79,'<=',18,'Syntax:\n<=\n\nLess than or equal:\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/comparison-operators.html\n\n','mysql> SELECT 0.1 <= 2;\n -> 1\n','http://dev.mysql.com/doc/refman/5.1/en/comparison-operators.html'),(80,'SHOW PROFILES',26,'Syntax:\nSHOW PROFILE [type [, type] ... ]\n [FOR QUERY n]\n [LIMIT row_count [OFFSET offset]]\n\ntype:\n ALL\n | BLOCK IO\n | CONTEXT SWITCHES\n | CPU\n | IPC\n | MEMORY\n | PAGE FAULTS\n | SOURCE\n | SWAPS\n\nThe SHOW PROFILES and SHOW PROFILE statements display profiling\ninformation that indicates resource usage for statements executed\nduring the course of the current session.\n\nProfiling is controlled by the profiling session variable, which has a\ndefault value of 0 (OFF). Profiling is enabled by setting profiling to\n1 or ON:\n\nmysql> SET profiling = 1;\n\nSHOW PROFILES displays a list of the most recent statements sent to the\nmaster. The size of the list is controlled by the\nprofiling_history_size session variable, which has a default value of\n15. The maximum value is 100. Setting the value to 0 has the practical\neffect of disabling profiling.\n\nAll statements are profiled except SHOW PROFILES and SHOW PROFILE, so\nyou will find neither of those statements in the profile list.\nMalformed statements are profiled. For example, SHOW PROFILING is an\nillegal statement, and a syntax error occurs if you try to execute it,\nbut it will show up in the profiling list.\n\nSHOW PROFILE displays detailed information about a single statement.\nWithout the FOR QUERY n clause, the output pertains to the most\nrecently executed statement. If FOR QUERY n is included, SHOW PROFILE\ndisplays information for statement n. The values of n correspond to the\nQuery_ID values displayed by SHOW PROFILES.\n\nThe LIMIT row_count clause may be given to limit the output to\nrow_count rows. If LIMIT is given, OFFSET offset may be added to begin\nthe output offset rows into the full set of rows.\n\nBy default, SHOW PROFILE displays Status and Duration columns. The\nStatus values are like the State values displayed by SHOW PROCESSLIST,\nalthought there might be some minor differences in interpretion for the\ntwo statements for some status values (see\nhttp://dev.mysql.com/doc/refman/5.1/en/thread-information.html).\n\nOptional type values may be specified to display specific additional\ntypes of information:\n\no ALL displays all information\n\no BLOCK IO displays counts for block input and output operations\n\no CONTEXT SWITCHES displays counts for voluntary and involuntary\n context switches\n\no CPU displays user and system CPU usage times\n\no IPC displays counts for messages sent and received\n\no MEMORY is not currently implemented\n\no PAGE FAULTS displays counts for major and minor page faults\n\no SOURCE displays the names of functions from the source code, together\n with the name and line number of the file in which the function\n occurs\n\no SWAPS displays swap counts\n\nProfiling is enabled per session. When a session ends, its profiling\ninformation is lost.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/show-profiles.html\n\n','mysql> SELECT @@profiling;\n+-------------+\n| @@profiling |\n+-------------+\n| 0 |\n+-------------+\n1 row in set (0.00 sec)\n\nmysql> SET profiling = 1;\nQuery OK, 0 rows affected (0.00 sec)\n\nmysql> DROP TABLE IF EXISTS t1;\nQuery OK, 0 rows affected, 1 warning (0.00 sec)\n\nmysql> CREATE TABLE T1 (id INT);\nQuery OK, 0 rows affected (0.01 sec)\n\nmysql> SHOW PROFILES;\n+----------+----------+--------------------------+\n| Query_ID | Duration | Query |\n+----------+----------+--------------------------+\n| 0 | 0.000088 | SET PROFILING = 1 |\n| 1 | 0.000136 | DROP TABLE IF EXISTS t1 |\n| 2 | 0.011947 | CREATE TABLE t1 (id INT) |\n+----------+----------+--------------------------+\n3 rows in set (0.00 sec)\n\nmysql> SHOW PROFILE;\n+----------------------+----------+\n| Status | Duration |\n+----------------------+----------+\n| checking permissions | 0.000040 |\n| creating table | 0.000056 |\n| After create | 0.011363 |\n| query end | 0.000375 |\n| freeing items | 0.000089 |\n| logging slow query | 0.000019 |\n| cleaning up | 0.000005 |\n+----------------------+----------+\n7 rows in set (0.00 sec)\n\nmysql> SHOW PROFILE FOR QUERY 1;\n+--------------------+----------+\n| Status | Duration |\n+--------------------+----------+\n| query end | 0.000107 |\n| freeing items | 0.000008 |\n| logging slow query | 0.000015 |\n| cleaning up | 0.000006 |\n+--------------------+----------+\n4 rows in set (0.00 sec)\n\nmysql> SHOW PROFILE CPU FOR QUERY 2;\n+----------------------+----------+----------+------------+\n| Status | Duration | CPU_user | CPU_system |\n+----------------------+----------+----------+------------+\n| checking permissions | 0.000040 | 0.000038 | 0.000002 |\n| creating table | 0.000056 | 0.000028 | 0.000028 |\n| After create | 0.011363 | 0.000217 | 0.001571 |\n| query end | 0.000375 | 0.000013 | 0.000028 |\n| freeing items | 0.000089 | 0.000010 | 0.000014 |\n| logging slow query | 0.000019 | 0.000009 | 0.000010 |\n| cleaning up | 0.000005 | 0.000003 | 0.000002 |\n+----------------------+----------+----------+------------+\n7 rows in set (0.00 sec)\n','http://dev.mysql.com/doc/refman/5.1/en/show-profiles.html'),(81,'UPDATE',27,'Syntax:\nSingle-table syntax:\n\nUPDATE [LOW_PRIORITY] [IGNORE] table_reference\n SET col_name1={expr1|DEFAULT} [, col_name2={expr2|DEFAULT}] ...\n [WHERE where_condition]\n [ORDER BY ...]\n [LIMIT row_count]\n\nMultiple-table syntax:\n\nUPDATE [LOW_PRIORITY] [IGNORE] table_references\n SET col_name1={expr1|DEFAULT} [, col_name2={expr2|DEFAULT}] ...\n [WHERE where_condition]\n\nFor the single-table syntax, the UPDATE statement updates columns of\nexisting rows in the named table with new values. The SET clause\nindicates which columns to modify and the values they should be given.\nEach value can be given as an expression, or the keyword DEFAULT to set\na column explicitly to its default value. The WHERE clause, if given,\nspecifies the conditions that identify which rows to update. With no\nWHERE clause, all rows are updated. If the ORDER BY clause is\nspecified, the rows are updated in the order that is specified. The\nLIMIT clause places a limit on the number of rows that can be updated.\n\nFor the multiple-table syntax, UPDATE updates rows in each table named\nin table_references that satisfy the conditions. In this case, ORDER BY\nand LIMIT cannot be used.\n\nwhere_condition is an expression that evaluates to true for each row to\nbe updated.\n\ntable_references and where_condition are is specified as described in\nhttp://dev.mysql.com/doc/refman/5.1/en/select.html.\n\nYou need the UPDATE privilege only for columns referenced in an UPDATE\nthat are actually updated. You need only the SELECT privilege for any\ncolumns that are read but not modified.\n\nThe UPDATE statement supports the following modifiers:\n\no With the LOW_PRIORITY keyword, execution of the UPDATE is delayed\n until no other clients are reading from the table. This affects only\n storage engines that use only table-level locking (such as MyISAM,\n MEMORY, and MERGE).\n\no With the IGNORE keyword, the update statement does not abort even if\n errors occur during the update. Rows for which duplicate-key\n conflicts occur are not updated. Rows for which columns are updated\n to values that would cause data conversion errors are updated to the\n closest valid values instead.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/update.html\n\n','','http://dev.mysql.com/doc/refman/5.1/en/update.html'),(82,'IS NOT NULL',18,'Syntax:\nIS NOT NULL\n\nTests whether a value is not NULL.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/comparison-operators.html\n\n','mysql> SELECT 1 IS NOT NULL, 0 IS NOT NULL, NULL IS NOT NULL;\n -> 1, 1, 0\n','http://dev.mysql.com/doc/refman/5.1/en/comparison-operators.html'),(83,'CASE STATEMENT',23,'Syntax:\nCASE case_value\n WHEN when_value THEN statement_list\n [WHEN when_value THEN statement_list] ...\n [ELSE statement_list]\nEND CASE\n\nOr:\n\nCASE\n WHEN search_condition THEN statement_list\n [WHEN search_condition THEN statement_list] ...\n [ELSE statement_list]\nEND CASE\n\nThe CASE statement for stored programs implements a complex conditional\nconstruct. If a search_condition evaluates to true, the corresponding\nSQL statement list is executed. If no search condition matches, the\nstatement list in the ELSE clause is executed. Each statement_list\nconsists of one or more statements.\n\nIf no when_value or search_condition matches the value tested and the\nCASE statement contains no ELSE clause, a Case not found for CASE\nstatement error results.\n\nEach statement_list consists of one or more statements; an empty\nstatement_list is not allowed. To handle situations where no value is\nmatched by any WHEN clause, use an ELSE containing an empty BEGIN ...\nEND block, as shown in this example: DELIMITER | CREATE PROCEDURE p()\nBEGIN DECLARE v INT DEFAULT 1; CASE v WHEN 2 THEN SELECT v; WHEN 3 THEN\nSELECT 0; ELSE BEGIN END; END CASE; END; | (The indentation used here\nin the ELSE clause is for purposes of clarity only, and is not\notherwise significant.)\n\n*Note*: The syntax of the CASE statement used inside stored programs\ndiffers slightly from that of the SQL CASE expression described in\nhttp://dev.mysql.com/doc/refman/5.1/en/control-flow-functions.html. The\nCASE statement cannot have an ELSE NULL clause, and it is terminated\nwith END CASE instead of END.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/case-statement.html\n\n','','http://dev.mysql.com/doc/refman/5.1/en/case-statement.html'),(84,'EXECUTE STATEMENT',26,'Syntax:\nEXECUTE stmt_name\n [USING @var_name [, @var_name] ...]\n\nAfter preparing a statement with PREPARE, you execute it with an\nEXECUTE statement that refers to the prepared statement name. If the\nprepared statement contains any parameter markers, you must supply a\nUSING clause that lists user variables containing the values to be\nbound to the parameters. Parameter values can be supplied only by user\nvariables, and the USING clause must name exactly as many variables as\nthe number of parameter markers in the statement.\n\nYou can execute a given prepared statement multiple times, passing\ndifferent variables to it or setting the variables to different values\nbefore each execution.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/execute.html\n\n','','http://dev.mysql.com/doc/refman/5.1/en/execute.html'),(85,'DROP INDEX',38,'Syntax:\nDROP [ONLINE|OFFLINE] INDEX index_name ON tbl_name\n\nDROP INDEX drops the index named index_name from the table tbl_name.\nThis statement is mapped to an ALTER TABLE statement to drop the index.\nSee [HELP ALTER TABLE].\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/drop-index.html\n\n','','http://dev.mysql.com/doc/refman/5.1/en/drop-index.html'),(86,'MATCH AGAINST',36,'Syntax:\nMATCH (col1,col2,...) AGAINST (expr [search_modifier])\n\nMySQL has support for full-text indexing and searching:\n\no A full-text index in MySQL is an index of type FULLTEXT.\n\no Full-text indexes can be used only with MyISAM tables, and can be\n created only for CHAR, VARCHAR, or TEXT columns.\n\no A FULLTEXT index definition can be given in the CREATE TABLE\n statement when a table is created, or added later using ALTER TABLE\n or CREATE INDEX.\n\no For large data sets, it is much faster to load your data into a table\n that has no FULLTEXT index and then create the index after that, than\n to load data into a table that has an existing FULLTEXT index.\n\nFull-text searching is performed using MATCH() ... AGAINST syntax.\nMATCH() takes a comma-separated list that names the columns to be\nsearched. AGAINST takes a string to search for, and an optional\nmodifier that indicates what type of search to perform. The search\nstring must be a literal string, not a variable or a column name. There\nare three types of full-text searches:\n\no A boolean search interprets the search string using the rules of a\n special query language. The string contains the words to search for.\n It can also contain operators that specify requirements such that a\n word must be present or absent in matching rows, or that it should be\n weighted higher or lower than usual. Common words such as \"some\" or\n \"then\" are stopwords and do not match if present in the search\n string. The IN BOOLEAN MODE modifier specifies a boolean search. For\n more information, see\n http://dev.mysql.com/doc/refman/5.1/en/fulltext-boolean.html.\n\no A natural language search interprets the search string as a phrase in\n natural human language (a phrase in free text). There are no special\n operators. The stopword list applies. In addition, words that are\n present in 50% or more of the rows are considered common and do not\n match. Full-text searches are natural language searches if the IN\n NATURAL LANGUAGE MODE modifier is given or if no modifier is given.\n\no A query expansion search is a modification of a natural language\n search. The search string is used to perform a natural language\n search. Then words from the most relevant rows returned by the search\n are added to the search string and the search is done again. The\n query returns the rows from the second search. The IN NATURAL\n LANGUAGE MODE WITH QUERY EXPANSION or WITH QUERY EXPANSION modifier\n specifies a query expansion search. For more information, see\n http://dev.mysql.com/doc/refman/5.1/en/fulltext-query-expansion.html.\n\nThe IN NATURAL LANGUAGE MODE and IN NATURAL LANGUAGE MODE WITH QUERY\nEXPANSION modifiers were added in MySQL 5.1.7.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/fulltext-search.html\n\n','mysql> SELECT id, body, MATCH (title,body) AGAINST\n -> (\'Security implications of running MySQL as root\'\n -> IN NATURAL LANGUAGE MODE) AS score\n -> FROM articles WHERE MATCH (title,body) AGAINST\n -> (\'Security implications of running MySQL as root\'\n -> IN NATURAL LANGUAGE MODE);\n+----+-------------------------------------+-----------------+\n| id | body | score |\n+----+-------------------------------------+-----------------+\n| 4 | 1. Never run mysqld as root. 2. ... | 1.5219271183014 |\n| 6 | When configured properly, MySQL ... | 1.3114095926285 |\n+----+-------------------------------------+-----------------+\n2 rows in set (0.00 sec)\n','http://dev.mysql.com/doc/refman/5.1/en/fulltext-search.html'),(87,'CREATE EVENT',38,'Syntax:\nCREATE\n [DEFINER = { user | CURRENT_USER }]\n EVENT\n [IF NOT EXISTS]\n event_name\n ON SCHEDULE schedule\n [ON COMPLETION [NOT] PRESERVE]\n [ENABLE | DISABLE | DISABLE ON SLAVE]\n [COMMENT \'comment\']\n DO event_body;\n\nschedule:\n AT timestamp [+ INTERVAL interval] ...\n | EVERY interval\n [STARTS timestamp [+ INTERVAL interval] ...]\n [ENDS timestamp [+ INTERVAL interval] ...]\n\ninterval:\n quantity {YEAR | QUARTER | MONTH | DAY | HOUR | MINUTE |\n WEEK | SECOND | YEAR_MONTH | DAY_HOUR | DAY_MINUTE |\n DAY_SECOND | HOUR_MINUTE | HOUR_SECOND | MINUTE_SECOND}\n\nThis statement creates and schedules a new event. The event will not\nrun unless the Event Scheduler is enabled. For information about\nchecking Event Scheduler status and enabling it if necessary, see\nhttp://dev.mysql.com/doc/refman/5.1/en/events-configuration.html.\n\nCREATE EVENT requires the EVENT privilege for the schema in which the\nevent is to be created. It might also require the SUPER privilege,\ndepending on the DEFINER value, as described later in this section.\n\nThe minimum requirements for a valid CREATE EVENT statement are as\nfollows:\n\no The keywords CREATE EVENT plus an event name, which uniquely\n identifies the event within a database schema. (Prior to MySQL\n 5.1.12, the event name needed to be unique only among events created\n by the same user within a schema.)\n\no An ON SCHEDULE clause, which determines when and how often the event\n executes.\n\no A DO clause, which contains the SQL statement to be executed by an\n event.\n\nThis is an example of a minimal CREATE EVENT statement:\n\nCREATE EVENT myevent\n ON SCHEDULE AT CURRENT_TIMESTAMP + INTERVAL 1 HOUR\n DO\n UPDATE myschema.mytable SET mycol = mycol + 1;\n\nThe previous statement creates an event named myevent. This event\nexecutes once---one hour following its creation---by running an SQL\nstatement that increments the value of the myschema.mytable table\'s\nmycol column by 1.\n\nThe event_name must be a valid MySQL identifier with a maximum length\nof 64 characters. Event names are not case sensitive, so you cannot\nhave two events named myevent and MyEvent in the same schema. In\ngeneral, the rules governing event names are the same as those for\nnames of stored routines. See\nhttp://dev.mysql.com/doc/refman/5.1/en/identifiers.html.\n\nAn event is associated with a schema. If no schema is indicated as part\nof event_name, the default (current) schema is assumed. To create an\nevent in a specific schema, qualify the event name with a schema using\nschema_name.event_name syntax.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/create-event.html\n\n','','http://dev.mysql.com/doc/refman/5.1/en/create-event.html'),(88,'ABS',4,'Syntax:\nABS(X)\n\nReturns the absolute value of X.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/mathematical-functions.html\n\n','mysql> SELECT ABS(2);\n -> 2\nmysql> SELECT ABS(-32);\n -> 32\n','http://dev.mysql.com/doc/refman/5.1/en/mathematical-functions.html'),(89,'POLYFROMWKB',32,'PolyFromWKB(wkb[,srid]), PolygonFromWKB(wkb[,srid])\n\nConstructs a POLYGON value using its WKB representation and SRID.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/creating-spatial-values.html#gis-wkb-functions\n\n','','http://dev.mysql.com/doc/refman/5.1/en/creating-spatial-values.html#gis-wkb-functions'),(90,'NOT LIKE',36,'Syntax:\nexpr NOT LIKE pat [ESCAPE \'escape_char\']\n\nThis is the same as NOT (expr LIKE pat [ESCAPE \'escape_char\']).\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/string-comparison-functions.html\n\n','','http://dev.mysql.com/doc/refman/5.1/en/string-comparison-functions.html'),(91,'SPACE',36,'Syntax:\nSPACE(N)\n\nReturns a string consisting of N space characters.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/string-functions.html\n\n','mysql> SELECT SPACE(6);\n -> \' \'\n','http://dev.mysql.com/doc/refman/5.1/en/string-functions.html'),(92,'MBR DEFINITION',6,'Its MBR (Minimum Bounding Rectangle), or Envelope. This is the bounding\ngeometry, formed by the minimum and maximum (X,Y) coordinates:\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/gis-class-geometry.html\n\n','((MINX MINY, MAXX MINY, MAXX MAXY, MINX MAXY, MINX MINY))\n','http://dev.mysql.com/doc/refman/5.1/en/gis-class-geometry.html'),(93,'GEOMETRYCOLLECTION',24,'GeometryCollection(g1,g2,...)\n\nConstructs a GeometryCollection.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/creating-spatial-values.html#gis-mysql-specific-functions\n\n','','http://dev.mysql.com/doc/refman/5.1/en/creating-spatial-values.html#gis-mysql-specific-functions'),(94,'MAX',16,'Syntax:\nMAX([DISTINCT] expr)\n\nReturns the maximum value of expr. MAX() may take a string argument; in\nsuch cases, it returns the maximum string value. See\nhttp://dev.mysql.com/doc/refman/5.1/en/mysql-indexes.html. The DISTINCT\nkeyword can be used to find the maximum of the distinct values of expr,\nhowever, this produces the same result as omitting DISTINCT.\n\nMAX() returns NULL if there were no matching rows.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/group-by-functions.html\n\n','mysql> SELECT student_name, MIN(test_score), MAX(test_score)\n -> FROM student\n -> GROUP BY student_name;\n','http://dev.mysql.com/doc/refman/5.1/en/group-by-functions.html'),(95,'CREATE FUNCTION UDF',21,'Syntax:\nCREATE [AGGREGATE] FUNCTION function_name RETURNS {STRING|INTEGER|REAL|DECIMAL}\n SONAME shared_library_name\n\nA user-defined function (UDF) is a way to extend MySQL with a new\nfunction that works like a native (built-in) MySQL function such as\nABS() or CONCAT().\n\nfunction_name is the name that should be used in SQL statements to\ninvoke the function. The RETURNS clause indicates the type of the\nfunction\'s return value. DECIMAL is a legal value after RETURNS, but\ncurrently DECIMAL functions return string values and should be written\nlike STRING functions.\n\nshared_library_name is the basename of the shared object file that\ncontains the code that implements the function. The file must be\nlocated in the plugin directory. This directory is given by the value\nof the plugin_dir system variable.\n\n*Note*: This is a change in MySQL 5.1. For earlier versions of MySQL,\nthe shared object can be located in any directory that is searched by\nyour system\'s dynamic linker. For more information, see\nhttp://dev.mysql.com/doc/refman/5.1/en/udf-compiling.html.\n\nTo create a function, you must have the INSERT privilege for the mysql\ndatabase. This is necessary because CREATE FUNCTION adds a row to the\nmysql.func system table that records the function\'s name, type, and\nshared library name. If you do not have this table, you should run the\nmysql_upgrade command to create it. See\nhttp://dev.mysql.com/doc/refman/5.1/en/mysql-upgrade.html.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/create-function-udf.html\n\n','','http://dev.mysql.com/doc/refman/5.1/en/create-function-udf.html'),(96,'*',4,'Syntax:\n*\n\nMultiplication:\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/arithmetic-functions.html\n\n','mysql> SELECT 3*5;\n -> 15\nmysql> SELECT 18014398509481984*18014398509481984.0;\n -> 324518553658426726783156020576256.0\nmysql> SELECT 18014398509481984*18014398509481984;\n -> 0\n','http://dev.mysql.com/doc/refman/5.1/en/arithmetic-functions.html'),(97,'TIMESTAMP',22,'TIMESTAMP\n\nA timestamp. The range is \'1970-01-01 00:00:01\' UTC to \'2038-01-19\n03:14:07\' UTC. TIMESTAMP values are stored as the number of seconds\nsince the epoch (\'1970-01-01 00:00:00\' UTC). A TIMESTAMP cannot\nrepresent the value \'1970-01-01 00:00:00\' because that is equivalent to\n0 seconds from the epoch and the value 0 is reserved for representing\n\'0000-00-00 00:00:00\', the \"zero\" TIMESTAMP value.\n\nA TIMESTAMP column is useful for recording the date and time of an\nINSERT or UPDATE operation. By default, the first TIMESTAMP column in a\ntable is automatically set to the date and time of the most recent\noperation if you do not assign it a value yourself. You can also set\nany TIMESTAMP column to the current date and time by assigning it a\nNULL value. Variations on automatic initialization and update\nproperties are described in\nhttp://dev.mysql.com/doc/refman/5.1/en/timestamp.html.\n\nA TIMESTAMP value is returned as a string in the format \'YYYY-MM-DD\nHH:MM:SS\' with a display width fixed at 19 characters. To obtain the\nvalue as a number, you should add +0 to the timestamp column.\n\n*Note*: The TIMESTAMP format that was used prior to MySQL 4.1 is not\nsupported in MySQL 5.1; see MySQL 3.23, 4.0, 4.1 Reference Manual for\ninformation regarding the old format.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/date-and-time-type-overview.html\n\n','','http://dev.mysql.com/doc/refman/5.1/en/date-and-time-type-overview.html'),(98,'DES_DECRYPT',12,'Syntax:\nDES_DECRYPT(crypt_str[,key_str])\n\nDecrypts a string encrypted with DES_ENCRYPT(). If an error occurs,\nthis function returns NULL.\n\nThis function works only if MySQL has been configured with SSL support.\nSee http://dev.mysql.com/doc/refman/5.1/en/secure-connections.html.\n\nIf no key_str argument is given, DES_DECRYPT() examines the first byte\nof the encrypted string to determine the DES key number that was used\nto encrypt the original string, and then reads the key from the DES key\nfile to decrypt the message. For this to work, the user must have the\nSUPER privilege. The key file can be specified with the --des-key-file\nserver option.\n\nIf you pass this function a key_str argument, that string is used as\nthe key for decrypting the message.\n\nIf the crypt_str argument does not appear to be an encrypted string,\nMySQL returns the given crypt_str.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/encryption-functions.html\n\n','','http://dev.mysql.com/doc/refman/5.1/en/encryption-functions.html'),(99,'CACHE INDEX',26,'Syntax:\nCACHE INDEX\n tbl_index_list [, tbl_index_list] ...\n IN key_cache_name\n\ntbl_index_list:\n tbl_name [[INDEX|KEY] (index_name[, index_name] ...)]\n\nThe CACHE INDEX statement assigns table indexes to a specific key\ncache. It is used only for MyISAM tables.\n\nThe following statement assigns indexes from the tables t1, t2, and t3\nto the key cache named hot_cache:\n\nmysql> CACHE INDEX t1, t2, t3 IN hot_cache;\n+---------+--------------------+----------+----------+\n| Table | Op | Msg_type | Msg_text |\n+---------+--------------------+----------+----------+\n| test.t1 | assign_to_keycache | status | OK |\n| test.t2 | assign_to_keycache | status | OK |\n| test.t3 | assign_to_keycache | status | OK |\n+---------+--------------------+----------+----------+\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/cache-index.html\n\n','','http://dev.mysql.com/doc/refman/5.1/en/cache-index.html'),(100,'ENDPOINT',13,'EndPoint(ls)\n\nReturns the Point that is the endpoint of the LineString value ls.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/geometry-property-functions.html#linestring-property-functions\n\n','mysql> SET @ls = \'LineString(1 1,2 2,3 3)\';\nmysql> SELECT AsText(EndPoint(GeomFromText(@ls)));\n+-------------------------------------+\n| AsText(EndPoint(GeomFromText(@ls))) |\n+-------------------------------------+\n| POINT(3 3) |\n+-------------------------------------+\n','http://dev.mysql.com/doc/refman/5.1/en/geometry-property-functions.html#linestring-property-functions'),(101,'COMPRESS',12,'Syntax:\nCOMPRESS(string_to_compress)\n\nCompresses a string and returns the result as a binary string. This\nfunction requires MySQL to have been compiled with a compression\nlibrary such as zlib. Otherwise, the return value is always NULL. The\ncompressed string can be uncompressed with UNCOMPRESS().\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/encryption-functions.html\n\n','mysql> SELECT LENGTH(COMPRESS(REPEAT(\'a\',1000)));\n -> 21\nmysql> SELECT LENGTH(COMPRESS(\'\'));\n -> 0\nmysql> SELECT LENGTH(COMPRESS(\'a\'));\n -> 13\nmysql> SELECT LENGTH(COMPRESS(REPEAT(\'a\',16)));\n -> 15\n','http://dev.mysql.com/doc/refman/5.1/en/encryption-functions.html'),(102,'INSERT',27,'Syntax:\nINSERT [LOW_PRIORITY | DELAYED | HIGH_PRIORITY] [IGNORE]\n [INTO] tbl_name [(col_name,...)]\n {VALUES | VALUE} ({expr | DEFAULT},...),(...),...\n [ ON DUPLICATE KEY UPDATE\n col_name=expr\n [, col_name=expr] ... ]\n\nOr:\n\nINSERT [LOW_PRIORITY | DELAYED | HIGH_PRIORITY] [IGNORE]\n [INTO] tbl_name\n SET col_name={expr | DEFAULT}, ...\n [ ON DUPLICATE KEY UPDATE\n col_name=expr\n [, col_name=expr] ... ]\n\nOr:\n\nINSERT [LOW_PRIORITY | HIGH_PRIORITY] [IGNORE]\n [INTO] tbl_name [(col_name,...)]\n SELECT ...\n [ ON DUPLICATE KEY UPDATE\n col_name=expr\n [, col_name=expr] ... ]\n\nINSERT inserts new rows into an existing table. The INSERT ... VALUES\nand INSERT ... SET forms of the statement insert rows based on\nexplicitly specified values. The INSERT ... SELECT form inserts rows\nselected from another table or tables. INSERT ... SELECT is discussed\nfurther in [HELP INSERT SELECT].\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/insert.html\n\n','','http://dev.mysql.com/doc/refman/5.1/en/insert.html'),(103,'COUNT',16,'Syntax:\nCOUNT(expr)\n\nReturns a count of the number of non-NULL values of expr in the rows\nretrieved by a SELECT statement. The result is a BIGINT value.\n\nCOUNT() returns 0 if there were no matching rows.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/group-by-functions.html\n\n','mysql> SELECT student.student_name,COUNT(*)\n -> FROM student,course\n -> WHERE student.student_id=course.student_id\n -> GROUP BY student_name;\n','http://dev.mysql.com/doc/refman/5.1/en/group-by-functions.html'),(104,'HANDLER',27,'Syntax:\nHANDLER tbl_name OPEN [ [AS] alias]\n\nHANDLER tbl_name READ index_name { = | <= | >= | < | > } (value1,value2,...)\n [ WHERE where_condition ] [LIMIT ... ]\nHANDLER tbl_name READ index_name { FIRST | NEXT | PREV | LAST }\n [ WHERE where_condition ] [LIMIT ... ]\nHANDLER tbl_name READ { FIRST | NEXT }\n [ WHERE where_condition ] [LIMIT ... ]\n\nHANDLER tbl_name CLOSE\n\nThe HANDLER statement provides direct access to table storage engine\ninterfaces. It is available for MyISAM and InnoDB tables.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/handler.html\n\n','','http://dev.mysql.com/doc/refman/5.1/en/handler.html'),(105,'MLINEFROMTEXT',3,'MLineFromText(wkt[,srid]), MultiLineStringFromText(wkt[,srid])\n\nConstructs a MULTILINESTRING value using its WKT representation and\nSRID.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/creating-spatial-values.html#gis-wkt-functions\n\n','','http://dev.mysql.com/doc/refman/5.1/en/creating-spatial-values.html#gis-wkt-functions'),(106,'GEOMCOLLFROMWKB',32,'GeomCollFromWKB(wkb[,srid]), GeometryCollectionFromWKB(wkb[,srid])\n\nConstructs a GEOMETRYCOLLECTION value using its WKB representation and\nSRID.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/creating-spatial-values.html#gis-wkb-functions\n\n','','http://dev.mysql.com/doc/refman/5.1/en/creating-spatial-values.html#gis-wkb-functions'),(107,'HELP_DATE',9,'This help information was generated from the MySQL 5.1 Reference Manual\non: 2010-06-03\n','',''),(108,'RENAME TABLE',38,'Syntax:\nRENAME TABLE tbl_name TO new_tbl_name\n [, tbl_name2 TO new_tbl_name2] ...\n\nThis statement renames one or more tables.\n\nThe rename operation is done atomically, which means that no other\nsession can access any of the tables while the rename is running. For\nexample, if you have an existing table old_table, you can create\nanother table new_table that has the same structure but is empty, and\nthen replace the existing table with the empty one as follows (assuming\nthat backup_table does not already exist):\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/rename-table.html\n\n','CREATE TABLE new_table (...);\nRENAME TABLE old_table TO backup_table, new_table TO old_table;\n','http://dev.mysql.com/doc/refman/5.1/en/rename-table.html'),(109,'BOOLEAN',22,'BOOL, BOOLEAN\n\nThese types are synonyms for TINYINT(1). A value of zero is considered\nfalse. Nonzero values are considered true:\n\nmysql> SELECT IF(0, \'true\', \'false\');\n+------------------------+\n| IF(0, \'true\', \'false\') |\n+------------------------+\n| false |\n+------------------------+\n\nmysql> SELECT IF(1, \'true\', \'false\');\n+------------------------+\n| IF(1, \'true\', \'false\') |\n+------------------------+\n| true |\n+------------------------+\n\nmysql> SELECT IF(2, \'true\', \'false\');\n+------------------------+\n| IF(2, \'true\', \'false\') |\n+------------------------+\n| true |\n+------------------------+\n\nHowever, the values TRUE and FALSE are merely aliases for 1 and 0,\nrespectively, as shown here:\n\nmysql> SELECT IF(0 = FALSE, \'true\', \'false\');\n+--------------------------------+\n| IF(0 = FALSE, \'true\', \'false\') |\n+--------------------------------+\n| true |\n+--------------------------------+\n\nmysql> SELECT IF(1 = TRUE, \'true\', \'false\');\n+-------------------------------+\n| IF(1 = TRUE, \'true\', \'false\') |\n+-------------------------------+\n| true |\n+-------------------------------+\n\nmysql> SELECT IF(2 = TRUE, \'true\', \'false\');\n+-------------------------------+\n| IF(2 = TRUE, \'true\', \'false\') |\n+-------------------------------+\n| false |\n+-------------------------------+\n\nmysql> SELECT IF(2 = FALSE, \'true\', \'false\');\n+--------------------------------+\n| IF(2 = FALSE, \'true\', \'false\') |\n+--------------------------------+\n| false |\n+--------------------------------+\n\nThe last two statements display the results shown because 2 is equal to\nneither 1 nor 0.\n\nWe intend to implement full boolean type handling, in accordance with\nstandard SQL, in a future MySQL release.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/numeric-type-overview.html\n\n','','http://dev.mysql.com/doc/refman/5.1/en/numeric-type-overview.html'),(110,'DEFAULT',15,'Syntax:\nDEFAULT(col_name)\n\nReturns the default value for a table column. An error results if the\ncolumn has no default value.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/miscellaneous-functions.html\n\n','mysql> UPDATE t SET i = DEFAULT(i)+1 WHERE id < 100;\n','http://dev.mysql.com/doc/refman/5.1/en/miscellaneous-functions.html'),(111,'MOD',4,'Syntax:\nMOD(N,M), N % M, N MOD M\n\nModulo operation. Returns the remainder of N divided by M.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/mathematical-functions.html\n\n','mysql> SELECT MOD(234, 10);\n -> 4\nmysql> SELECT 253 % 7;\n -> 1\nmysql> SELECT MOD(29,9);\n -> 2\nmysql> SELECT 29 MOD 9;\n -> 2\n','http://dev.mysql.com/doc/refman/5.1/en/mathematical-functions.html'),(112,'TINYTEXT',22,'TINYTEXT [CHARACTER SET charset_name] [COLLATE collation_name]\n\nA TEXT column with a maximum length of 255 (28 - 1) characters. The\neffective maximum length is less if the value contains multi-byte\ncharacters. Each TINYTEXT value is stored using a one-byte length\nprefix that indicates the number of bytes in the value.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/string-type-overview.html\n\n','','http://dev.mysql.com/doc/refman/5.1/en/string-type-overview.html'),(113,'OPTIMIZE TABLE',20,'Syntax:\nOPTIMIZE [NO_WRITE_TO_BINLOG | LOCAL] TABLE\n tbl_name [, tbl_name] ...\n\nOPTIMIZE TABLE should be used if you have deleted a large part of a\ntable or if you have made many changes to a table with variable-length\nrows (tables that have VARCHAR, VARBINARY, BLOB, or TEXT columns).\nDeleted rows are maintained in a linked list and subsequent INSERT\noperations reuse old row positions. You can use OPTIMIZE TABLE to\nreclaim the unused space and to defragment the data file.\n\nThis statement requires SELECT and INSERT privileges for the table.\n\nBeginning with MySQL 5.1.27, OPTIMIZE TABLE is also supported for\npartitioned tables. Also beginning with MySQL 5.1.27, you can use ALTER\nTABLE ... OPTIMIZE PARTITION to optimize one or more partitions; for\nmore information, see [HELP ALTER TABLE], and\nhttp://dev.mysql.com/doc/refman/5.1/en/partitioning-maintenance.html.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/optimize-table.html\n\n','','http://dev.mysql.com/doc/refman/5.1/en/optimize-table.html'),(114,'DECODE',12,'Syntax:\nDECODE(crypt_str,pass_str)\n\nDecrypts the encrypted string crypt_str using pass_str as the password.\ncrypt_str should be a string returned from ENCODE().\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/encryption-functions.html\n\n','','http://dev.mysql.com/doc/refman/5.1/en/encryption-functions.html'),(115,'<=>',18,'Syntax:\n<=>\n\nNULL-safe equal. This operator performs an equality comparison like the\n= operator, but returns 1 rather than NULL if both operands are NULL,\nand 0 rather than NULL if one operand is NULL.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/comparison-operators.html\n\n','mysql> SELECT 1 <=> 1, NULL <=> NULL, 1 <=> NULL;\n -> 1, 1, 0\nmysql> SELECT 1 = 1, NULL = NULL, 1 = NULL;\n -> 1, NULL, NULL\n','http://dev.mysql.com/doc/refman/5.1/en/comparison-operators.html'),(116,'HELP STATEMENT',28,'Syntax:\nHELP \'search_string\'\n\nThe HELP statement returns online information from the MySQL Reference\nmanual. Its proper operation requires that the help tables in the mysql\ndatabase be initialized with help topic information (see\nhttp://dev.mysql.com/doc/refman/5.1/en/server-side-help-support.html).\n\nThe HELP statement searches the help tables for the given search string\nand displays the result of the search. The search string is not case\nsensitive.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/help.html\n\n','','http://dev.mysql.com/doc/refman/5.1/en/help.html'),(117,'LOAD DATA FROM MASTER',26,'Syntax:\nLOAD DATA FROM MASTER\n\nThis feature is deprecated and should be avoided. It is subject to\nremoval in a future version of MySQL.\n\nSince the current implementation of LOAD DATA FROM MASTER and LOAD\nTABLE FROM MASTER is very limited, these statements are deprecated as\nof MySQL 4.1 and removed in MySQL 5.5.\n\nThe recommended alternative solution to using LOAD DATA FROM MASTER or\nLOAD TABLE FROM MASTER is using mysqldump or mysqlhotcopy. The latter\nrequires Perl and two Perl modules (DBI and DBD:mysql) and works for\nMyISAM and ARCHIVE tables only. With mysqldump, you can create SQL\ndumps on the master and pipe (or copy) these to a mysql client on the\nslave. This has the advantage of working for all storage engines, but\ncan be quite slow, since it works using SELECT.\n\nThis statement takes a snapshot of the master and copies it to the\nslave. It updates the values of MASTER_LOG_FILE and MASTER_LOG_POS so\nthat the slave starts replicating from the correct position. Any table\nand database exclusion rules specified with the --replicate-*-do-* and\n--replicate-*-ignore-* options are honored. --replicate-rewrite-db is\nnot taken into account because a user could use this option to set up a\nnonunique mapping such as --replicate-rewrite-db=\"db1->db3\" and\n--replicate-rewrite-db=\"db2->db3\", which would confuse the slave when\nloading tables from the master.\n\nUse of this statement is subject to the following conditions:\n\no It works only for MyISAM tables. Attempting to load a non-MyISAM\n table results in the following error:\n\nERROR 1189 (08S01): Net error reading from master\n\no It acquires a global read lock on the master while taking the\n snapshot, which prevents updates on the master during the load\n operation.\n\nIf you are loading large tables, you might have to increase the values\nof net_read_timeout and net_write_timeout on both the master and slave\nservers. See\nhttp://dev.mysql.com/doc/refman/5.1/en/server-system-variables.html.\n\nNote that LOAD DATA FROM MASTER does not copy any tables from the mysql\ndatabase. This makes it easy to have different users and privileges on\nthe master and the slave.\n\nTo use LOAD DATA FROM MASTER, the replication account that is used to\nconnect to the master must have the RELOAD and SUPER privileges on the\nmaster and the SELECT privilege for all master tables you want to load.\nAll master tables for which the user does not have the SELECT privilege\nare ignored by LOAD DATA FROM MASTER. This is because the master hides\nthem from the user: LOAD DATA FROM MASTER calls SHOW DATABASES to know\nthe master databases to load, but SHOW DATABASES returns only databases\nfor which the user has some privilege. See [HELP SHOW DATABASES]. On\nthe slave side, the user that issues LOAD DATA FROM MASTER must have\nprivileges for dropping and creating the databases and tables that are\ncopied.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/load-data-from-master.html\n\n','','http://dev.mysql.com/doc/refman/5.1/en/load-data-from-master.html'),(118,'RESET',26,'Syntax:\nRESET reset_option [, reset_option] ...\n\nThe RESET statement is used to clear the state of various server\noperations. You must have the RELOAD privilege to execute RESET.\n\nRESET acts as a stronger version of the FLUSH statement. See [HELP\nFLUSH].\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/reset.html\n\n','','http://dev.mysql.com/doc/refman/5.1/en/reset.html'),(119,'GET_LOCK',15,'Syntax:\nGET_LOCK(str,timeout)\n\nTries to obtain a lock with a name given by the string str, using a\ntimeout of timeout seconds. Returns 1 if the lock was obtained\nsuccessfully, 0 if the attempt timed out (for example, because another\nclient has previously locked the name), or NULL if an error occurred\n(such as running out of memory or the thread was killed with mysqladmin\nkill). If you have a lock obtained with GET_LOCK(), it is released when\nyou execute RELEASE_LOCK(), execute a new GET_LOCK(), or your\nconnection terminates (either normally or abnormally). Locks obtained\nwith GET_LOCK() do not interact with transactions. That is, committing\na transaction does not release any such locks obtained during the\ntransaction.\n\nThis function can be used to implement application locks or to simulate\nrecord locks. Names are locked on a server-wide basis. If a name has\nbeen locked by one client, GET_LOCK() blocks any request by another\nclient for a lock with the same name. This allows clients that agree on\na given lock name to use the name to perform cooperative advisory\nlocking. But be aware that it also allows a client that is not among\nthe set of cooperating clients to lock a name, either inadvertently or\ndeliberately, and thus prevent any of the cooperating clients from\nlocking that name. One way to reduce the likelihood of this is to use\nlock names that are database-specific or application-specific. For\nexample, use lock names of the form db_name.str or app_name.str.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/miscellaneous-functions.html\n\n','mysql> SELECT GET_LOCK(\'lock1\',10);\n -> 1\nmysql> SELECT IS_FREE_LOCK(\'lock2\');\n -> 1\nmysql> SELECT GET_LOCK(\'lock2\',10);\n -> 1\nmysql> SELECT RELEASE_LOCK(\'lock2\');\n -> 1\nmysql> SELECT RELEASE_LOCK(\'lock1\');\n -> NULL\n','http://dev.mysql.com/doc/refman/5.1/en/miscellaneous-functions.html'),(120,'UCASE',36,'Syntax:\nUCASE(str)\n\nUCASE() is a synonym for UPPER().\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/string-functions.html\n\n','','http://dev.mysql.com/doc/refman/5.1/en/string-functions.html'),(121,'SHOW BINLOG EVENTS',26,'Syntax:\nSHOW BINLOG EVENTS\n [IN \'log_name\'] [FROM pos] [LIMIT [offset,] row_count]\n\nShows the events in the binary log. If you do not specify \'log_name\',\nthe first binary log is displayed.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/show-binlog-events.html\n\n','','http://dev.mysql.com/doc/refman/5.1/en/show-binlog-events.html'),(122,'MPOLYFROMWKB',32,'MPolyFromWKB(wkb[,srid]), MultiPolygonFromWKB(wkb[,srid])\n\nConstructs a MULTIPOLYGON value using its WKB representation and SRID.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/creating-spatial-values.html#gis-wkb-functions\n\n','','http://dev.mysql.com/doc/refman/5.1/en/creating-spatial-values.html#gis-wkb-functions'),(123,'ITERATE',23,'Syntax:\nITERATE label\n\nITERATE can appear only within LOOP, REPEAT, and WHILE statements.\nITERATE means \"do the loop again.\"\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/iterate-statement.html\n\n','CREATE PROCEDURE doiterate(p1 INT)\nBEGIN\n label1: LOOP\n SET p1 = p1 + 1;\n IF p1 < 10 THEN ITERATE label1; END IF;\n LEAVE label1;\n END LOOP label1;\n SET @x = p1;\nEND\n','http://dev.mysql.com/doc/refman/5.1/en/iterate-statement.html'),(124,'DO',27,'Syntax:\nDO expr [, expr] ...\n\nDO executes the expressions but does not return any results. In most\nrespects, DO is shorthand for SELECT expr, ..., but has the advantage\nthat it is slightly faster when you do not care about the result.\n\nDO is useful primarily with functions that have side effects, such as\nRELEASE_LOCK().\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/do.html\n\n','','http://dev.mysql.com/doc/refman/5.1/en/do.html'),(125,'CURTIME',31,'Syntax:\nCURTIME()\n\nReturns the current time as a value in \'HH:MM:SS\' or HHMMSS.uuuuuu\nformat, depending on whether the function is used in a string or\nnumeric context. The value is expressed in the current time zone.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/date-and-time-functions.html\n\n','mysql> SELECT CURTIME();\n -> \'23:50:26\'\nmysql> SELECT CURTIME() + 0;\n -> 235026.000000\n','http://dev.mysql.com/doc/refman/5.1/en/date-and-time-functions.html'),(126,'CHAR_LENGTH',36,'Syntax:\nCHAR_LENGTH(str)\n\nReturns the length of the string str, measured in characters. A\nmulti-byte character counts as a single character. This means that for\na string containing five two-byte characters, LENGTH() returns 10,\nwhereas CHAR_LENGTH() returns 5.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/string-functions.html\n\n','','http://dev.mysql.com/doc/refman/5.1/en/string-functions.html'),(127,'BIGINT',22,'BIGINT[(M)] [UNSIGNED] [ZEROFILL]\n\nA large integer. The signed range is -9223372036854775808 to\n9223372036854775807. The unsigned range is 0 to 18446744073709551615.\n\nSERIAL is an alias for BIGINT UNSIGNED NOT NULL AUTO_INCREMENT UNIQUE.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/numeric-type-overview.html\n\n','','http://dev.mysql.com/doc/refman/5.1/en/numeric-type-overview.html'),(128,'SET',26,'Syntax:\nSET variable_assignment [, variable_assignment] ...\n\nvariable_assignment:\n user_var_name = expr\n | [GLOBAL | SESSION] system_var_name = expr\n | [@@global. | @@session. | @@]system_var_name = expr\n\nThe SET statement assigns values to different types of variables that\naffect the operation of the server or your client. Older versions of\nMySQL employed SET OPTION, but this syntax is deprecated in favor of\nSET without OPTION.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/set-option.html\n\n','','http://dev.mysql.com/doc/refman/5.1/en/set-option.html'),(129,'CONV',4,'Syntax:\nCONV(N,from_base,to_base)\n\nConverts numbers between different number bases. Returns a string\nrepresentation of the number N, converted from base from_base to base\nto_base. Returns NULL if any argument is NULL. The argument N is\ninterpreted as an integer, but may be specified as an integer or a\nstring. The minimum base is 2 and the maximum base is 36. If to_base is\na negative number, N is regarded as a signed number. Otherwise, N is\ntreated as unsigned. CONV() works with 64-bit precision.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/mathematical-functions.html\n\n','mysql> SELECT CONV(\'a\',16,2);\n -> \'1010\'\nmysql> SELECT CONV(\'6E\',18,8);\n -> \'172\'\nmysql> SELECT CONV(-17,10,-18);\n -> \'-H\'\nmysql> SELECT CONV(10+\'10\'+\'10\'+0xa,10,10);\n -> \'40\'\n','http://dev.mysql.com/doc/refman/5.1/en/mathematical-functions.html'),(130,'DATE',22,'DATE\n\nA date. The supported range is \'1000-01-01\' to \'9999-12-31\'. MySQL\ndisplays DATE values in \'YYYY-MM-DD\' format, but allows assignment of\nvalues to DATE columns using either strings or numbers.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/date-and-time-type-overview.html\n\n','','http://dev.mysql.com/doc/refman/5.1/en/date-and-time-type-overview.html'),(131,'SHOW OPEN TABLES',26,'Syntax:\nSHOW OPEN TABLES [{FROM | IN} db_name]\n [LIKE \'pattern\' | WHERE expr]\n\nSHOW OPEN TABLES lists the non-TEMPORARY tables that are currently open\nin the table cache. See\nhttp://dev.mysql.com/doc/refman/5.1/en/table-cache.html. The WHERE\nclause can be given to select rows using more general conditions, as\ndiscussed in http://dev.mysql.com/doc/refman/5.1/en/extended-show.html.\n\nThe FROM and LIKE clauses may be used beginning with MySQL 5.1.24. The\nLIKE clause, if present, indicates which table names to match. The FROM\nclause, if present, restricts the tables shown to those present in the\ndb_name database.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/show-open-tables.html\n\n','','http://dev.mysql.com/doc/refman/5.1/en/show-open-tables.html'),(132,'EXTRACT',31,'Syntax:\nEXTRACT(unit FROM date)\n\nThe EXTRACT() function uses the same kinds of unit specifiers as\nDATE_ADD() or DATE_SUB(), but extracts parts from the date rather than\nperforming date arithmetic.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/date-and-time-functions.html\n\n','mysql> SELECT EXTRACT(YEAR FROM \'2009-07-02\');\n -> 2009\nmysql> SELECT EXTRACT(YEAR_MONTH FROM \'2009-07-02 01:02:03\');\n -> 200907\nmysql> SELECT EXTRACT(DAY_MINUTE FROM \'2009-07-02 01:02:03\');\n -> 20102\nmysql> SELECT EXTRACT(MICROSECOND\n -> FROM \'2003-01-02 10:30:00.000123\');\n -> 123\n','http://dev.mysql.com/doc/refman/5.1/en/date-and-time-functions.html'),(133,'ENCRYPT',12,'Syntax:\nENCRYPT(str[,salt])\n\nEncrypts str using the Unix crypt() system call and returns a binary\nstring. The salt argument should be a string with at least two\ncharacters. If no salt argument is given, a random value is used.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/encryption-functions.html\n\n','mysql> SELECT ENCRYPT(\'hello\');\n -> \'VxuFAJXVARROc\'\n','http://dev.mysql.com/doc/refman/5.1/en/encryption-functions.html'),(134,'SHOW STATUS',26,'Syntax:\nSHOW [GLOBAL | SESSION] STATUS\n [LIKE \'pattern\' | WHERE expr]\n\nSHOW STATUS provides server status information. This information also\ncan be obtained using the mysqladmin extended-status command. The LIKE\nclause, if present, indicates which variable names to match. The WHERE\nclause can be given to select rows using more general conditions, as\ndiscussed in http://dev.mysql.com/doc/refman/5.1/en/extended-show.html.\nThis statement does not require any privilege. It requires only the\nability to connect to the server.\nWith a LIKE clause, the statement displays only rows for those\nvariables with names that match the pattern:\n\nmysql> SHOW STATUS LIKE \'Key%\';\n+--------------------+----------+\n| Variable_name | Value |\n+--------------------+----------+\n| Key_blocks_used | 14955 |\n| Key_read_requests | 96854827 |\n| Key_reads | 162040 |\n| Key_write_requests | 7589728 |\n| Key_writes | 3813196 |\n+--------------------+----------+\n\nWith the GLOBAL modifier, SHOW STATUS displays the status values for\nall connections to MySQL. With SESSION, it displays the status values\nfor the current connection. If no modifier is present, the default is\nSESSION. LOCAL is a synonym for SESSION.\n\nSome status variables have only a global value. For these, you get the\nsame value for both GLOBAL and SESSION. The scope for each status\nvariable is listed at\nhttp://dev.mysql.com/doc/refman/5.1/en/server-status-variables.html.\n\nEach invocation of the SHOW STATUS statement uses an internal temporary\ntable and increments the global Created_tmp_tables value.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/show-status.html\n\n','','http://dev.mysql.com/doc/refman/5.1/en/show-status.html'),(135,'EXTRACTVALUE',36,'Syntax:\nExtractValue(xml_frag, xpath_expr)\n\nExtractValue() takes two string arguments, a fragment of XML markup\nxml_frag and an XPath expression xpath_expr (also known as a locator);\nit returns the text (CDATA) of the first text node which is a child of\nthe element(s) matched by the XPath expression. It is the equivalent of\nperforming a match using the xpath_expr after appending /text(). In\nother words, ExtractValue(\'Sakila\', \'/a/b\') and\nExtractValue(\'Sakila\', \'/a/b/text()\') produce the same\nresult.\n\nIf multiple matches are found, then the content of the first child text\nnode of each matching element is returned (in the order matched) as a\nsingle, space-delimited string.\n\nIf no matching text node is found for the expression (including the\nimplicit /text())---for whatever reason, as long as xpath_expr is\nvalid, and xml_frag consists of elements which are properly nested and\nclosed---an empty string is returned. No distinction is made between a\nmatch on an empty element and no match at all. This is by design.\n\nIf you need to determine whether no matching element was found in\nxml_frag or such an element was found but contained no child text\nnodes, you should test the result of an expression that uses the XPath\ncount() function. For example, both of these statements return an empty\nstring, as shown here:\n\nmysql> SELECT ExtractValue(\'\', \'/a/b\');\n+-------------------------------------+\n| ExtractValue(\'\', \'/a/b\') |\n+-------------------------------------+\n| |\n+-------------------------------------+\n1 row in set (0.00 sec)\n\nmysql> SELECT ExtractValue(\'\', \'/a/b\');\n+-------------------------------------+\n| ExtractValue(\'\', \'/a/b\') |\n+-------------------------------------+\n| |\n+-------------------------------------+\n1 row in set (0.00 sec)\n\nHowever, you can determine whether there was actually a matching\nelement using the following:\n\nmysql> SELECT ExtractValue(\'\', \'count(/a/b)\');\n+-------------------------------------+\n| ExtractValue(\'\', \'count(/a/b)\') |\n+-------------------------------------+\n| 1 |\n+-------------------------------------+\n1 row in set (0.00 sec)\n\nmysql> SELECT ExtractValue(\'\', \'count(/a/b)\');\n+-------------------------------------+\n| ExtractValue(\'\', \'count(/a/b)\') |\n+-------------------------------------+\n| 0 |\n+-------------------------------------+\n1 row in set (0.01 sec)\n\n*Important*: ExtractValue() returns only CDATA, and does not return any\ntags that might be contained within a matching tag, nor any of their\ncontent (see the result returned as val1 in the following example).\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/xml-functions.html\n\n','mysql> SELECT\n -> ExtractValue(\'cccddd\', \'/a\') AS val1,\n -> ExtractValue(\'cccddd\', \'/a/b\') AS val2,\n -> ExtractValue(\'cccddd\', \'//b\') AS val3,\n -> ExtractValue(\'cccddd\', \'/b\') AS val4,\n -> ExtractValue(\'cccdddeee\', \'//b\') AS val5;\n\n+------+------+------+------+---------+\n| val1 | val2 | val3 | val4 | val5 |\n+------+------+------+------+---------+\n| ccc | ddd | ddd | | ddd eee |\n+------+------+------+------+---------+\n','http://dev.mysql.com/doc/refman/5.1/en/xml-functions.html'),(136,'OLD_PASSWORD',12,'Syntax:\nOLD_PASSWORD(str)\n\nOLD_PASSWORD() was added to MySQL when the implementation of PASSWORD()\nwas changed to improve security. OLD_PASSWORD() returns the value of\nthe old (pre-4.1) implementation of PASSWORD() as a binary string, and\nis intended to permit you to reset passwords for any pre-4.1 clients\nthat need to connect to your version 5.1 MySQL server without locking\nthem out. See\nhttp://dev.mysql.com/doc/refman/5.1/en/password-hashing.html.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/encryption-functions.html\n\n','','http://dev.mysql.com/doc/refman/5.1/en/encryption-functions.html'),(137,'SET VARIABLE',23,'Syntax:\nSET var_name = expr [, var_name = expr] ...\n\nThe SET statement in stored programs is an extended version of the\ngeneral SET statement (see [HELP SET]). Each var_name may refer to a\nlocal variable declared inside a stored program, a system variable, or\na user-defined variable.\n\nThe SET statement in stored programs is implemented as part of the\npre-existing SET syntax. This allows an extended syntax of SET a=x,\nb=y, ... where different variable types (locally declared variables,\nglobal and session system variables, user-defined variables) can be\nmixed. This also allows combinations of local variables and some\noptions that make sense only for system variables; in that case, the\noptions are recognized but ignored.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/set-statement.html\n\n','','http://dev.mysql.com/doc/refman/5.1/en/set-statement.html'),(138,'FORMAT',36,'Syntax:\nFORMAT(X,D)\n\nFormats the number X to a format like \'#,###,###.##\', rounded to D\ndecimal places, and returns the result as a string. If D is 0, the\nresult has no decimal point or fractional part.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/string-functions.html\n\n','mysql> SELECT FORMAT(12332.123456, 4);\n -> \'12,332.1235\'\nmysql> SELECT FORMAT(12332.1,4);\n -> \'12,332.1000\'\nmysql> SELECT FORMAT(12332.2,0);\n -> \'12,332\'\n','http://dev.mysql.com/doc/refman/5.1/en/string-functions.html'),(139,'||',14,'Syntax:\nOR, ||\n\nLogical OR. When both operands are non-NULL, the result is 1 if any\noperand is nonzero, and 0 otherwise. With a NULL operand, the result is\n1 if the other operand is nonzero, and NULL otherwise. If both operands\nare NULL, the result is NULL.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/logical-operators.html\n\n','mysql> SELECT 1 || 1;\n -> 1\nmysql> SELECT 1 || 0;\n -> 1\nmysql> SELECT 0 || 0;\n -> 0\nmysql> SELECT 0 || NULL;\n -> NULL\nmysql> SELECT 1 || NULL;\n -> 1\n','http://dev.mysql.com/doc/refman/5.1/en/logical-operators.html'),(140,'BIT_LENGTH',36,'Syntax:\nBIT_LENGTH(str)\n\nReturns the length of the string str in bits.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/string-functions.html\n\n','mysql> SELECT BIT_LENGTH(\'text\');\n -> 32\n','http://dev.mysql.com/doc/refman/5.1/en/string-functions.html'),(141,'EXTERIORRING',2,'ExteriorRing(poly)\n\nReturns the exterior ring of the Polygon value poly as a LineString.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/geometry-property-functions.html#polygon-property-functions\n\n','mysql> SET @poly =\n -> \'Polygon((0 0,0 3,3 3,3 0,0 0),(1 1,1 2,2 2,2 1,1 1))\';\nmysql> SELECT AsText(ExteriorRing(GeomFromText(@poly)));\n+-------------------------------------------+\n| AsText(ExteriorRing(GeomFromText(@poly))) |\n+-------------------------------------------+\n| LINESTRING(0 0,0 3,3 3,3 0,0 0) |\n+-------------------------------------------+\n','http://dev.mysql.com/doc/refman/5.1/en/geometry-property-functions.html#polygon-property-functions'),(142,'GEOMFROMWKB',32,'GeomFromWKB(wkb[,srid]), GeometryFromWKB(wkb[,srid])\n\nConstructs a geometry value of any type using its WKB representation\nand SRID.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/creating-spatial-values.html#gis-wkb-functions\n\n','','http://dev.mysql.com/doc/refman/5.1/en/creating-spatial-values.html#gis-wkb-functions'),(143,'SHOW SLAVE HOSTS',26,'Syntax:\nSHOW SLAVE HOSTS\n\nDisplays a list of replication slaves currently registered with the\nmaster. Only slaves started with the --report-host=host_name option are\nvisible in this list.\n\nThe list is displayed on any server (not just the master server). The\noutput looks like this:\n\nmysql> SHOW SLAVE HOSTS;\n+------------+-----------+------+-----------+\n| Server_id | Host | Port | Master_id |\n+------------+-----------+------+-----------+\n| 192168010 | iconnect2 | 3306 | 192168011 |\n| 1921680101 | athena | 3306 | 192168011 |\n+------------+-----------+------+-----------+\n\no Server_id: The unique server ID of the slave server, as configured in\n the server\'s option file, or on the command line with\n --server-id=value.\n\no Host: The host name of the slave server, as configured in the\n server\'s option file, or on the command line with\n --report-host=host_name. Note that this can differ from the machine\n name as configured in the operating system.\n\no Port: The port the slave server is listening on.\n\no Master_id: The unique server ID of the master server that the slave\n server is replicating from.\n\nSome MySQL versions report another variable, Rpl_recovery_rank. This\nvariable was never used, and was eventually removed. (Bug#13963\n(http://bugs.mysql.com/bug.php?id=13963))\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/show-slave-hosts.html\n\n','','http://dev.mysql.com/doc/refman/5.1/en/show-slave-hosts.html'),(144,'START TRANSACTION',8,'Syntax:\nSTART TRANSACTION [WITH CONSISTENT SNAPSHOT] | BEGIN [WORK]\nCOMMIT [WORK] [AND [NO] CHAIN] [[NO] RELEASE]\nROLLBACK [WORK] [AND [NO] CHAIN] [[NO] RELEASE]\nSET autocommit = {0 | 1}\n\nThe START TRANSACTION or BEGIN statement begins a new transaction.\nCOMMIT commits the current transaction, making its changes permanent.\nROLLBACK rolls back the current transaction, canceling its changes. The\nSET autocommit statement disables or enables the default autocommit\nmode for the current session.\n\nThe optional WORK keyword is supported for COMMIT and ROLLBACK, as are\nthe CHAIN and RELEASE clauses. CHAIN and RELEASE can be used for\nadditional control over transaction completion. The value of the\ncompletion_type system variable determines the default completion\nbehavior. See\nhttp://dev.mysql.com/doc/refman/5.1/en/server-system-variables.html.\n\n*Note*: Within all stored programs (stored procedures and functions,\ntriggers, and events), the parser treats BEGIN [WORK] as the beginning\nof a BEGIN ... END block. Begin a transaction in this context with\nSTART TRANSACTION instead.\n\nThe AND CHAIN clause causes a new transaction to begin as soon as the\ncurrent one ends, and the new transaction has the same isolation level\nas the just-terminated transaction. The RELEASE clause causes the\nserver to disconnect the current client session after terminating the\ncurrent transaction. Including the NO keyword suppresses CHAIN or\nRELEASE completion, which can be useful if the completion_type system\nvariable is set to cause chaining or release completion by default.\n\nBy default, MySQL runs with autocommit mode enabled. This means that as\nsoon as you execute a statement that updates (modifies) a table, MySQL\nstores the update on disk to make it permanent. To disable autocommit\nmode, use the following statement:\n\nSET autocommit=0;\n\nAfter disabling autocommit mode by setting the autocommit variable to\nzero, changes to transaction-safe tables (such as those for InnoDB or\nNDBCLUSTER) are not made permanent immediately. You must use COMMIT to\nstore your changes to disk or ROLLBACK to ignore the changes.\n\nTo disable autocommit mode for a single series of statements, use the\nSTART TRANSACTION statement:\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/commit.html\n\n','START TRANSACTION;\nSELECT @A:=SUM(salary) FROM table1 WHERE type=1;\nUPDATE table2 SET summary=@A WHERE type=1;\nCOMMIT;\n','http://dev.mysql.com/doc/refman/5.1/en/commit.html'),(145,'BETWEEN AND',18,'Syntax:\nexpr BETWEEN min AND max\n\nIf expr is greater than or equal to min and expr is less than or equal\nto max, BETWEEN returns 1, otherwise it returns 0. This is equivalent\nto the expression (min <= expr AND expr <= max) if all the arguments\nare of the same type. Otherwise type conversion takes place according\nto the rules described in\nhttp://dev.mysql.com/doc/refman/5.1/en/type-conversion.html, but\napplied to all the three arguments.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/comparison-operators.html\n\n','mysql> SELECT 2 BETWEEN 1 AND 3, 2 BETWEEN 3 and 1;\n -> 1, 0\nmysql> SELECT 1 BETWEEN 2 AND 3;\n -> 0\nmysql> SELECT \'b\' BETWEEN \'a\' AND \'c\';\n -> 1\nmysql> SELECT 2 BETWEEN 2 AND \'3\';\n -> 1\nmysql> SELECT 2 BETWEEN 2 AND \'x-3\';\n -> 0\n','http://dev.mysql.com/doc/refman/5.1/en/comparison-operators.html'),(146,'MULTIPOLYGON',24,'MultiPolygon(poly1,poly2,...)\n\nConstructs a MultiPolygon value from a set of Polygon or WKB Polygon\narguments.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/creating-spatial-values.html#gis-mysql-specific-functions\n\n','','http://dev.mysql.com/doc/refman/5.1/en/creating-spatial-values.html#gis-mysql-specific-functions'),(147,'TIME_FORMAT',31,'Syntax:\nTIME_FORMAT(time,format)\n\nThis is used like the DATE_FORMAT() function, but the format string may\ncontain format specifiers only for hours, minutes, seconds, and\nmicroseconds. Other specifiers produce a NULL value or 0.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/date-and-time-functions.html\n\n','mysql> SELECT TIME_FORMAT(\'100:00:00\', \'%H %k %h %I %l\');\n -> \'100 100 04 04 4\'\n','http://dev.mysql.com/doc/refman/5.1/en/date-and-time-functions.html'),(148,'LEFT',36,'Syntax:\nLEFT(str,len)\n\nReturns the leftmost len characters from the string str, or NULL if any\nargument is NULL.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/string-functions.html\n\n','mysql> SELECT LEFT(\'foobarbar\', 5);\n -> \'fooba\'\n','http://dev.mysql.com/doc/refman/5.1/en/string-functions.html'),(149,'FLUSH QUERY CACHE',26,'You can defragment the query cache to better utilize its memory with\nthe FLUSH QUERY CACHE statement. The statement does not remove any\nqueries from the cache.\n\nThe RESET QUERY CACHE statement removes all query results from the\nquery cache. The FLUSH TABLES statement also does this.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/query-cache-status-and-maintenance.html\n\n','','http://dev.mysql.com/doc/refman/5.1/en/query-cache-status-and-maintenance.html'),(150,'SET DATA TYPE',22,'SET(\'value1\',\'value2\',...) [CHARACTER SET charset_name] [COLLATE\ncollation_name]\n\nA set. A string object that can have zero or more values, each of which\nmust be chosen from the list of values \'value1\', \'value2\', ... A SET\ncolumn can have a maximum of 64 members. SET values are represented\ninternally as integers.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/string-type-overview.html\n\n','','http://dev.mysql.com/doc/refman/5.1/en/string-type-overview.html'),(151,'RAND',4,'Syntax:\nRAND(), RAND(N)\n\nReturns a random floating-point value v in the range 0 <= v < 1.0. If a\nconstant integer argument N is specified, it is used as the seed value,\nwhich produces a repeatable sequence of column values. In the following\nexample, note that the sequences of values produced by RAND(3) is the\nsame both places where it occurs.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/mathematical-functions.html\n\n','mysql> CREATE TABLE t (i INT);\nQuery OK, 0 rows affected (0.42 sec)\n\nmysql> INSERT INTO t VALUES(1),(2),(3);\nQuery OK, 3 rows affected (0.00 sec)\nRecords: 3 Duplicates: 0 Warnings: 0\n\nmysql> SELECT i, RAND() FROM t;\n+------+------------------+\n| i | RAND() |\n+------+------------------+\n| 1 | 0.61914388706828 |\n| 2 | 0.93845168309142 |\n| 3 | 0.83482678498591 |\n+------+------------------+\n3 rows in set (0.00 sec)\n\nmysql> SELECT i, RAND(3) FROM t;\n+------+------------------+\n| i | RAND(3) |\n+------+------------------+\n| 1 | 0.90576975597606 |\n| 2 | 0.37307905813035 |\n| 3 | 0.14808605345719 |\n+------+------------------+\n3 rows in set (0.00 sec)\n\nmysql> SELECT i, RAND() FROM t;\n+------+------------------+\n| i | RAND() |\n+------+------------------+\n| 1 | 0.35877890638893 |\n| 2 | 0.28941420772058 |\n| 3 | 0.37073435016976 |\n+------+------------------+\n3 rows in set (0.00 sec)\n\nmysql> SELECT i, RAND(3) FROM t;\n+------+------------------+\n| i | RAND(3) |\n+------+------------------+\n| 1 | 0.90576975597606 |\n| 2 | 0.37307905813035 |\n| 3 | 0.14808605345719 |\n+------+------------------+\n3 rows in set (0.01 sec)\n','http://dev.mysql.com/doc/refman/5.1/en/mathematical-functions.html'),(152,'RPAD',36,'Syntax:\nRPAD(str,len,padstr)\n\nReturns the string str, right-padded with the string padstr to a length\nof len characters. If str is longer than len, the return value is\nshortened to len characters.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/string-functions.html\n\n','mysql> SELECT RPAD(\'hi\',5,\'?\');\n -> \'hi???\'\nmysql> SELECT RPAD(\'hi\',1,\'?\');\n -> \'h\'\n','http://dev.mysql.com/doc/refman/5.1/en/string-functions.html'),(153,'CREATE DATABASE',38,'Syntax:\nCREATE {DATABASE | SCHEMA} [IF NOT EXISTS] db_name\n [create_specification] ...\n\ncreate_specification:\n [DEFAULT] CHARACTER SET [=] charset_name\n | [DEFAULT] COLLATE [=] collation_name\n\nCREATE DATABASE creates a database with the given name. To use this\nstatement, you need the CREATE privilege for the database. CREATE\nSCHEMA is a synonym for CREATE DATABASE.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/create-database.html\n\n','','http://dev.mysql.com/doc/refman/5.1/en/create-database.html'),(154,'DEC',22,'DEC[(M[,D])] [UNSIGNED] [ZEROFILL], NUMERIC[(M[,D])] [UNSIGNED]\n[ZEROFILL], FIXED[(M[,D])] [UNSIGNED] [ZEROFILL]\n\nThese types are synonyms for DECIMAL. The FIXED synonym is available\nfor compatibility with other database systems.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/numeric-type-overview.html\n\n','','http://dev.mysql.com/doc/refman/5.1/en/numeric-type-overview.html'),(155,'VAR_POP',16,'Syntax:\nVAR_POP(expr)\n\nReturns the population standard variance of expr. It considers rows as\nthe whole population, not as a sample, so it has the number of rows as\nthe denominator. You can also use VARIANCE(), which is equivalent but\nis not standard SQL.\n\nVAR_POP() returns NULL if there were no matching rows.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/group-by-functions.html\n\n','','http://dev.mysql.com/doc/refman/5.1/en/group-by-functions.html'),(156,'ELT',36,'Syntax:\nELT(N,str1,str2,str3,...)\n\nReturns str1 if N = 1, str2 if N = 2, and so on. Returns NULL if N is\nless than 1 or greater than the number of arguments. ELT() is the\ncomplement of FIELD().\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/string-functions.html\n\n','mysql> SELECT ELT(1, \'ej\', \'Heja\', \'hej\', \'foo\');\n -> \'ej\'\nmysql> SELECT ELT(4, \'ej\', \'Heja\', \'hej\', \'foo\');\n -> \'foo\'\n','http://dev.mysql.com/doc/refman/5.1/en/string-functions.html'),(157,'ALTER VIEW',38,'Syntax:\nALTER\n [ALGORITHM = {UNDEFINED | MERGE | TEMPTABLE}]\n [DEFINER = { user | CURRENT_USER }]\n [SQL SECURITY { DEFINER | INVOKER }]\n VIEW view_name [(column_list)]\n AS select_statement\n [WITH [CASCADED | LOCAL] CHECK OPTION]\n\nThis statement changes the definition of a view, which must exist. The\nsyntax is similar to that for CREATE VIEW and the effect is the same as\nfor CREATE OR REPLACE VIEW. See [HELP CREATE VIEW]. This statement\nrequires the CREATE VIEW and DROP privileges for the view, and some\nprivilege for each column referred to in the SELECT statement. As of\nMySQL 5.1.23, ALTER VIEW is allowed only to the definer or users with\nthe SUPER privilege.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/alter-view.html\n\n','','http://dev.mysql.com/doc/refman/5.1/en/alter-view.html'),(158,'SHOW DATABASES',26,'Syntax:\nSHOW {DATABASES | SCHEMAS}\n [LIKE \'pattern\' | WHERE expr]\n\nSHOW DATABASES lists the databases on the MySQL server host. SHOW\nSCHEMAS is a synonym for SHOW DATABASES. The LIKE clause, if present,\nindicates which database names to match. The WHERE clause can be given\nto select rows using more general conditions, as discussed in\nhttp://dev.mysql.com/doc/refman/5.1/en/extended-show.html.\n\nYou see only those databases for which you have some kind of privilege,\nunless you have the global SHOW DATABASES privilege. You can also get\nthis list using the mysqlshow command.\n\nIf the server was started with the --skip-show-database option, you\ncannot use this statement at all unless you have the SHOW DATABASES\nprivilege.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/show-databases.html\n\n','','http://dev.mysql.com/doc/refman/5.1/en/show-databases.html'),(159,'~',19,'Syntax:\n~\n\nInvert all bits.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/bit-functions.html\n\n','mysql> SELECT 5 & ~1;\n -> 4\n','http://dev.mysql.com/doc/refman/5.1/en/bit-functions.html'),(160,'TEXT',22,'TEXT[(M)] [CHARACTER SET charset_name] [COLLATE collation_name]\n\nA TEXT column with a maximum length of 65,535 (216 - 1) characters. The\neffective maximum length is less if the value contains multi-byte\ncharacters. Each TEXT value is stored using a two-byte length prefix\nthat indicates the number of bytes in the value.\n\nAn optional length M can be given for this type. If this is done, MySQL\ncreates the column as the smallest TEXT type large enough to hold\nvalues M characters long.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/string-type-overview.html\n\n','','http://dev.mysql.com/doc/refman/5.1/en/string-type-overview.html'),(161,'CONCAT_WS',36,'Syntax:\nCONCAT_WS(separator,str1,str2,...)\n\nCONCAT_WS() stands for Concatenate With Separator and is a special form\nof CONCAT(). The first argument is the separator for the rest of the\narguments. The separator is added between the strings to be\nconcatenated. The separator can be a string, as can the rest of the\narguments. If the separator is NULL, the result is NULL.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/string-functions.html\n\n','mysql> SELECT CONCAT_WS(\',\',\'First name\',\'Second name\',\'Last Name\');\n -> \'First name,Second name,Last Name\'\nmysql> SELECT CONCAT_WS(\',\',\'First name\',NULL,\'Last Name\');\n -> \'First name,Last Name\'\n','http://dev.mysql.com/doc/refman/5.1/en/string-functions.html'),(162,'ROW_COUNT',17,'Syntax:\nROW_COUNT()\n\nROW_COUNT() returns the number of rows updated, inserted, or deleted by\nthe preceding statement. This is the same as the row count that the\nmysql client displays and the value from the mysql_affected_rows() C\nAPI function.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/information-functions.html\n\n','mysql> INSERT INTO t VALUES(1),(2),(3);\nQuery OK, 3 rows affected (0.00 sec)\nRecords: 3 Duplicates: 0 Warnings: 0\n\nmysql> SELECT ROW_COUNT();\n+-------------+\n| ROW_COUNT() |\n+-------------+\n| 3 |\n+-------------+\n1 row in set (0.00 sec)\n\nmysql> DELETE FROM t WHERE i IN(1,2);\nQuery OK, 2 rows affected (0.00 sec)\n\nmysql> SELECT ROW_COUNT();\n+-------------+\n| ROW_COUNT() |\n+-------------+\n| 2 |\n+-------------+\n1 row in set (0.00 sec)\n','http://dev.mysql.com/doc/refman/5.1/en/information-functions.html'),(163,'ASIN',4,'Syntax:\nASIN(X)\n\nReturns the arc sine of X, that is, the value whose sine is X. Returns\nNULL if X is not in the range -1 to 1.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/mathematical-functions.html\n\n','mysql> SELECT ASIN(0.2);\n -> 0.20135792079033\nmysql> SELECT ASIN(\'foo\');\n\n+-------------+\n| ASIN(\'foo\') |\n+-------------+\n| 0 |\n+-------------+\n1 row in set, 1 warning (0.00 sec)\n\nmysql> SHOW WARNINGS;\n+---------+------+-----------------------------------------+\n| Level | Code | Message |\n+---------+------+-----------------------------------------+\n| Warning | 1292 | Truncated incorrect DOUBLE value: \'foo\' |\n+---------+------+-----------------------------------------+\n','http://dev.mysql.com/doc/refman/5.1/en/mathematical-functions.html'),(164,'SIGN',4,'Syntax:\nSIGN(X)\n\nReturns the sign of the argument as -1, 0, or 1, depending on whether X\nis negative, zero, or positive.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/mathematical-functions.html\n\n','mysql> SELECT SIGN(-32);\n -> -1\nmysql> SELECT SIGN(0);\n -> 0\nmysql> SELECT SIGN(234);\n -> 1\n','http://dev.mysql.com/doc/refman/5.1/en/mathematical-functions.html'),(165,'SEC_TO_TIME',31,'Syntax:\nSEC_TO_TIME(seconds)\n\nReturns the seconds argument, converted to hours, minutes, and seconds,\nas a TIME value. The range of the result is constrained to that of the\nTIME data type. A warning occurs if the argument corresponds to a value\noutside that range.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/date-and-time-functions.html\n\n','mysql> SELECT SEC_TO_TIME(2378);\n -> \'00:39:38\'\nmysql> SELECT SEC_TO_TIME(2378) + 0;\n -> 3938\n','http://dev.mysql.com/doc/refman/5.1/en/date-and-time-functions.html'),(166,'FLOAT',22,'FLOAT[(M,D)] [UNSIGNED] [ZEROFILL]\n\nA small (single-precision) floating-point number. Allowable values are\n-3.402823466E+38 to -1.175494351E-38, 0, and 1.175494351E-38 to\n3.402823466E+38. These are the theoretical limits, based on the IEEE\nstandard. The actual range might be slightly smaller depending on your\nhardware or operating system.\n\nM is the total number of digits and D is the number of digits following\nthe decimal point. If M and D are omitted, values are stored to the\nlimits allowed by the hardware. A single-precision floating-point\nnumber is accurate to approximately 7 decimal places.\n\nUNSIGNED, if specified, disallows negative values.\n\nUsing FLOAT might give you some unexpected problems because all\ncalculations in MySQL are done with double precision. See\nhttp://dev.mysql.com/doc/refman/5.1/en/no-matching-rows.html.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/numeric-type-overview.html\n\n','','http://dev.mysql.com/doc/refman/5.1/en/numeric-type-overview.html'),(167,'LOCATE',36,'Syntax:\nLOCATE(substr,str), LOCATE(substr,str,pos)\n\nThe first syntax returns the position of the first occurrence of\nsubstring substr in string str. The second syntax returns the position\nof the first occurrence of substring substr in string str, starting at\nposition pos. Returns 0 if substr is not in str.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/string-functions.html\n\n','mysql> SELECT LOCATE(\'bar\', \'foobarbar\');\n -> 4\nmysql> SELECT LOCATE(\'xbar\', \'foobar\');\n -> 0\nmysql> SELECT LOCATE(\'bar\', \'foobarbar\', 5);\n -> 7\n','http://dev.mysql.com/doc/refman/5.1/en/string-functions.html'),(168,'SHOW EVENTS',26,'Syntax:\nSHOW EVENTS [{FROM | IN} schema_name]\n [LIKE \'pattern\' | WHERE expr]\n\nIn its simplest form, SHOW EVENTS lists all of the events in the\ncurrent schema:\n\nmysql> SELECT CURRENT_USER(), SCHEMA();\n+----------------+----------+\n| CURRENT_USER() | SCHEMA() |\n+----------------+----------+\n| jon@ghidora | myschema |\n+----------------+----------+\n1 row in set (0.00 sec)\n\nmysql> SHOW EVENTS\\G\n*************************** 1. row ***************************\n Db: myschema\n Name: e_daily\n Definer: jon@ghidora\n Time zone: SYSTEM\n Type: RECURRING\n Execute at: NULL\n Interval value: 10\n Interval field: SECOND\n Starts: 2006-02-09 10:41:23\n Ends: NULL\n Status: ENABLED\n Originator: 0\ncharacter_set_client: latin1\ncollation_connection: latin1_swedish_ci\n Database Collation: latin1_swedish_ci\n\nTo see events for a specific schema, use the FROM clause. For example,\nto see events for the test schema, use the following statement:\n\nSHOW EVENTS FROM test;\n\nThe LIKE clause, if present, indicates which event names to match. The\nWHERE clause can be given to select rows using more general conditions,\nas discussed in\nhttp://dev.mysql.com/doc/refman/5.1/en/extended-show.html.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/show-events.html\n\n','','http://dev.mysql.com/doc/refman/5.1/en/show-events.html'),(169,'CHARSET',17,'Syntax:\nCHARSET(str)\n\nReturns the character set of the string argument.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/information-functions.html\n\n','mysql> SELECT CHARSET(\'abc\');\n -> \'latin1\'\nmysql> SELECT CHARSET(CONVERT(\'abc\' USING utf8));\n -> \'utf8\'\nmysql> SELECT CHARSET(USER());\n -> \'utf8\'\n','http://dev.mysql.com/doc/refman/5.1/en/information-functions.html'),(170,'SUBDATE',31,'Syntax:\nSUBDATE(date,INTERVAL expr unit), SUBDATE(expr,days)\n\nWhen invoked with the INTERVAL form of the second argument, SUBDATE()\nis a synonym for DATE_SUB(). For information on the INTERVAL unit\nargument, see the discussion for DATE_ADD().\n\nmysql> SELECT DATE_SUB(\'2008-01-02\', INTERVAL 31 DAY);\n -> \'2007-12-02\'\nmysql> SELECT SUBDATE(\'2008-01-02\', INTERVAL 31 DAY);\n -> \'2007-12-02\'\n\nThe second form allows the use of an integer value for days. In such\ncases, it is interpreted as the number of days to be subtracted from\nthe date or datetime expression expr.\n\nmysql> SELECT SUBDATE(\'2008-01-02 12:00:00\', 31);\n -> \'2007-12-02 12:00:00\'\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/date-and-time-functions.html\n\n','','http://dev.mysql.com/doc/refman/5.1/en/date-and-time-functions.html'),(171,'DAYOFYEAR',31,'Syntax:\nDAYOFYEAR(date)\n\nReturns the day of the year for date, in the range 1 to 366.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/date-and-time-functions.html\n\n','mysql> SELECT DAYOFYEAR(\'2007-02-03\');\n -> 34\n','http://dev.mysql.com/doc/refman/5.1/en/date-and-time-functions.html'),(172,'LONGTEXT',22,'LONGTEXT [CHARACTER SET charset_name] [COLLATE collation_name]\n\nA TEXT column with a maximum length of 4,294,967,295 or 4GB (232 - 1)\ncharacters. The effective maximum length is less if the value contains\nmulti-byte characters. The effective maximum length of LONGTEXT columns\nalso depends on the configured maximum packet size in the client/server\nprotocol and available memory. Each LONGTEXT value is stored using a\nfour-byte length prefix that indicates the number of bytes in the\nvalue.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/string-type-overview.html\n\n','','http://dev.mysql.com/doc/refman/5.1/en/string-type-overview.html'),(173,'%',4,'Syntax:\nN % M\n\nModulo operation. Returns the remainder of N divided by M. For more\ninformation, see the description for the MOD() function in\nhttp://dev.mysql.com/doc/refman/5.1/en/mathematical-functions.html.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/arithmetic-functions.html\n\n','','http://dev.mysql.com/doc/refman/5.1/en/arithmetic-functions.html'),(174,'KILL',26,'Syntax:\nKILL [CONNECTION | QUERY] thread_id\n\nEach connection to mysqld runs in a separate thread. You can see which\nthreads are running with the SHOW PROCESSLIST statement and kill a\nthread with the KILL thread_id statement.\n\nKILL allows the optional CONNECTION or QUERY modifier:\n\no KILL CONNECTION is the same as KILL with no modifier: It terminates\n the connection associated with the given thread_id.\n\no KILL QUERY terminates the statement that the connection is currently\n executing, but leaves the connection itself intact.\n\nIf you have the PROCESS privilege, you can see all threads. If you have\nthe SUPER privilege, you can kill all threads and statements.\nOtherwise, you can see and kill only your own threads and statements.\n\nYou can also use the mysqladmin processlist and mysqladmin kill\ncommands to examine and kill threads.\n\n*Note*: You cannot use KILL with the Embedded MySQL Server library\nbecause the embedded server merely runs inside the threads of the host\napplication. It does not create any connection threads of its own.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/kill.html\n\n','','http://dev.mysql.com/doc/refman/5.1/en/kill.html'),(175,'DISJOINT',30,'Disjoint(g1,g2)\n\nReturns 1 or 0 to indicate whether g1 is spatially disjoint from (does\nnot intersect) g2.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/functions-that-test-spatial-relationships-between-geometries.html\n\n','','http://dev.mysql.com/doc/refman/5.1/en/functions-that-test-spatial-relationships-between-geometries.html'),(176,'ASTEXT',3,'AsText(g), AsWKT(g)\n\nConverts a value in internal geometry format to its WKT representation\nand returns the string result.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/functions-to-convert-geometries-between-formats.html\n\n','mysql> SET @g = \'LineString(1 1,2 2,3 3)\';\nmysql> SELECT AsText(GeomFromText(@g));\n+--------------------------+\n| AsText(GeomFromText(@g)) |\n+--------------------------+\n| LINESTRING(1 1,2 2,3 3) |\n+--------------------------+\n','http://dev.mysql.com/doc/refman/5.1/en/functions-to-convert-geometries-between-formats.html'),(177,'LPAD',36,'Syntax:\nLPAD(str,len,padstr)\n\nReturns the string str, left-padded with the string padstr to a length\nof len characters. If str is longer than len, the return value is\nshortened to len characters.\n\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/string-functions.html\n\n','mysql> SELECT LPAD(\'hi\',4,\'??\');\n -> \'??hi\'\nmysql> SELECT LPAD(\'hi\',1,\'??\');\n -> \'h\'\n','http://dev.mysql.com/doc/refman/5.1/en/string-functions.html'),(178,'RESTORE TABLE',20,'Syntax:\nRESTORE TABLE tbl_name [, tbl_name] ... FROM \'/path/to/backup/directory\'\n\n*Note*: This statement is deprecated and is removed in MySQL 5.5.\n\nRESTORE TABLE restores the table or tables from a backup that was made\nwith BACKUP TABLE. The directory should be specified as a full path\nname.\n\nExisting tables are not overwritten; if you try to restore over an\nexisting table, an error occurs. Just as for BACKUP TABLE, RESTORE\nTABLE currently works only for MyISAM tables. Restored tables are not\nreplicated from master to slave.\n\nThe backup for each table consists of its .frm format file and .MYD\ndata file. The restore operation restores those files, and then uses\nthem to rebuild the .MYI index file. Restoring takes longer than\nbacking up due to the need to rebuild the indexes. The more indexes the\ntable has, the longer it takes.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/restore-table.html\n\n','','http://dev.mysql.com/doc/refman/5.1/en/restore-table.html'),(179,'DECLARE CONDITION',23,'Syntax:\nDECLARE condition_name CONDITION FOR condition_value\n\ncondition_value:\n SQLSTATE [VALUE] sqlstate_value\n | mysql_error_code\n\nThe DECLARE ... CONDITION statement defines a named error condition. It\nspecifies a condition that needs specific handling and associates a\nname with that condition. The name can be referred to in a subsequent\nDECLARE ... HANDLER statement. For an example, see [HELP DECLARE\nHANDLER].\n\nA condition_value for DECLARE ... CONDITION can be an SQLSTATE value (a\n5-character string literal) or a MySQL error code (a number). You\nshould not use SQLSTATE value \'00000\' or MySQL error code 0, because\nthose indicate success rather than an error condition. For a list of\nSQLSTATE values and MySQL error codes, see\nhttp://dev.mysql.com/doc/refman/5.1/en/error-messages-server.html.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/declare-condition.html\n\n','','http://dev.mysql.com/doc/refman/5.1/en/declare-condition.html'),(180,'OVERLAPS',30,'Overlaps(g1,g2)\n\nReturns 1 or 0 to indicate whether g1 spatially overlaps g2. The term\nspatially overlaps is used if two geometries intersect and their\nintersection results in a geometry of the same dimension but not equal\nto either of the given geometries.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/functions-that-test-spatial-relationships-between-geometries.html\n\n','','http://dev.mysql.com/doc/refman/5.1/en/functions-that-test-spatial-relationships-between-geometries.html'),(181,'SET GLOBAL SQL_SLAVE_SKIP_COUNTER',26,'Syntax:\nSET GLOBAL sql_slave_skip_counter = N\n\nThis statement skips the next N events from the master. This is useful\nfor recovering from replication stops caused by a statement.\n\nThis statement is valid only when the slave threads are not running.\nOtherwise, it produces an error.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/set-global-sql-slave-skip-counter.html\n\n','','http://dev.mysql.com/doc/refman/5.1/en/set-global-sql-slave-skip-counter.html'),(182,'NUMGEOMETRIES',25,'NumGeometries(gc)\n\nReturns the number of geometries in the GeometryCollection value gc.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/geometry-property-functions.html#geometrycollection-property-functions\n\n','mysql> SET @gc = \'GeometryCollection(Point(1 1),LineString(2 2, 3 3))\';\nmysql> SELECT NumGeometries(GeomFromText(@gc));\n+----------------------------------+\n| NumGeometries(GeomFromText(@gc)) |\n+----------------------------------+\n| 2 |\n+----------------------------------+\n','http://dev.mysql.com/doc/refman/5.1/en/geometry-property-functions.html#geometrycollection-property-functions'),(183,'MONTHNAME',31,'Syntax:\nMONTHNAME(date)\n\nReturns the full name of the month for date. As of MySQL 5.1.12, the\nlanguage used for the name is controlled by the value of the\nlc_time_names system variable\n(http://dev.mysql.com/doc/refman/5.1/en/locale-support.html).\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/date-and-time-functions.html\n\n','mysql> SELECT MONTHNAME(\'2008-02-03\');\n -> \'February\'\n','http://dev.mysql.com/doc/refman/5.1/en/date-and-time-functions.html'),(184,'PROCEDURE ANALYSE',37,'Syntax:\nANALYSE([max_elements[,max_memory]])\n\nANALYSE() is defined in the sql/sql_analyse.cc source file, which\nserves as an example of how to create a procedure for use with the\nPROCEDURE clause of SELECT statements. ANALYSE() is built in and is\navailable by default; other procedures can be created using the format\ndemonstrated in the source file.\n\nANALYSE() examines the result from a query and returns an analysis of\nthe results that suggests optimal data types for each column that may\nhelp reduce table sizes. To obtain this analysis, append PROCEDURE\nANALYSE to the end of a SELECT statement:\n\nSELECT ... FROM ... WHERE ... PROCEDURE ANALYSE([max_elements,[max_memory]])\n\nFor example:\n\nSELECT col1, col2 FROM table1 PROCEDURE ANALYSE(10, 2000);\n\nThe results show some statistics for the values returned by the query,\nand propose an optimal data type for the columns. This can be helpful\nfor checking your existing tables, or after importing new data. You may\nneed to try different settings for the arguments so that PROCEDURE\nANALYSE() does not suggest the ENUM data type when it is not\nappropriate.\n\nThe arguments are optional and are used as follows:\n\no max_elements (default 256) is the maximum number of distinct values\n that ANALYSE() notices per column. This is used by ANALYSE() to check\n whether the optimal data type should be of type ENUM; if there are\n more than max_elements distinct values, then ENUM is not a suggested\n type.\n\no max_memory (default 8192) is the maximum amount of memory that\n ANALYSE() should allocate per column while trying to find all\n distinct values.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/procedure-analyse.html\n\n','','http://dev.mysql.com/doc/refman/5.1/en/procedure-analyse.html'),(185,'CHANGE MASTER TO',26,'Syntax:\nCHANGE MASTER TO option [, option] ...\n\noption:\n MASTER_BIND = \'interface_name\'\n | MASTER_HOST = \'host_name\'\n | MASTER_USER = \'user_name\'\n | MASTER_PASSWORD = \'password\'\n | MASTER_PORT = port_num\n | MASTER_CONNECT_RETRY = interval\n | MASTER_HEARTBEAT_PERIOD = interval\n | MASTER_LOG_FILE = \'master_log_name\'\n | MASTER_LOG_POS = master_log_pos\n | RELAY_LOG_FILE = \'relay_log_name\'\n | RELAY_LOG_POS = relay_log_pos\n | MASTER_SSL = {0|1}\n | MASTER_SSL_CA = \'ca_file_name\'\n | MASTER_SSL_CAPATH = \'ca_directory_name\'\n | MASTER_SSL_CERT = \'cert_file_name\'\n | MASTER_SSL_KEY = \'key_file_name\'\n | MASTER_SSL_CIPHER = \'cipher_list\'\n | MASTER_SSL_VERIFY_SERVER_CERT = {0|1}\n\nCHANGE MASTER TO changes the parameters that the slave server uses for\nconnecting to the master server, for reading the master binary log, and\nreading the slave relay log. It also updates the contents of the\nmaster.info and relay-log.info files. To use CHANGE MASTER TO, the\nslave replication threads must be stopped (use STOP SLAVE if\nnecessary).\n\nOptions not specified retain their value, except as indicated in the\nfollowing discussion. Thus, in most cases, there is no need to specify\noptions that do not change. For example, if the password to connect to\nyour MySQL master has changed, you just need to issue these statements\nto tell the slave about the new password:\n\nSTOP SLAVE; -- if replication was running\nCHANGE MASTER TO MASTER_PASSWORD=\'new3cret\';\nSTART SLAVE; -- if you want to restart replication\n\nMASTER_HOST, MASTER_USER, MASTER_PASSWORD, and MASTER_PORT provide\ninformation to the slave about how to connect to its master:\n\no MASTER_HOST and MASTER_PORT are the host name (or IP address) of the\n master host and its TCP/IP port.\n\n *Note*: Replication cannot use Unix socket files. You must be able to\n connect to the master MySQL server using TCP/IP.\n\n If you specify the MASTER_HOST or MASTER_PORT option, the slave\n assumes that the master server is different from before (even if the\n option value is the same as its current value.) In this case, the old\n values for the master binary log file name and position are\n considered no longer applicable, so if you do not specify\n MASTER_LOG_FILE and MASTER_LOG_POS in the statement,\n MASTER_LOG_FILE=\'\' and MASTER_LOG_POS=4 are silently appended to it.\n\n Setting MASTER_HOST=\'\' (that is, setting its value explicitly to an\n empty string) is not the same as not setting MASTER_HOST at all.\n Setting this option to an empty string causes START SLAVE\n subsequently to fail. This issue is addressed in MySQL 5.5.\n (Bug#28796 (http://bugs.mysql.com/bug.php?id=28796))\n\no MASTER_USER and MASTER_PASSWORD are the user name and password of the\n account to use for connecting to the master.\n\nThe MASTER_SSL_xxx options provide information about using SSL for the\nconnection. They correspond to the --ssl-xxx options described in\nhttp://dev.mysql.com/doc/refman/5.1/en/ssl-options.html, and\nhttp://dev.mysql.com/doc/refman/5.1/en/replication-solutions-ssl.html.\nMASTER_SSL_VERIFY_SERVER_CERT was added in MySQL 5.1.18. These options\ncan be changed even on slaves that are compiled without SSL support.\nThey are saved to the master.info file, but are ignored if the slave\ndoes not have SSL support enabled.\n\nMASTER_CONNECT_RETRY specifies how many seconds to wait between connect\nretries. The default is 60. The number of reconnection attempts is\nlimited by the --master-retry-count server option; for more\ninformation, see\nhttp://dev.mysql.com/doc/refman/5.1/en/replication-options.html.\n\nThe next two options (MASTER_BIND and MASTER_HEARTBEAT_PERIOD) are\navailable in MySQL Cluster NDB 6.3 and later, but are not supported in\nmainline MySQL 5.1:\n\nMASTER_BIND is for use on replication slaves having multiple network\ninterfaces, and determines which of the slave\'s network interfaces is\nchosen for connecting to the master. It is also possible to determine\nwhich network interface is to be used in such cases by starting the\nslave mysqld process with the --master-bind option.\n\nThe ability to bind a replication slave to specific network interface\nwas added in MySQL Cluster NDB 6.3.4.\n\nMASTER_HEARTBEAT_PERIOD is used to set the interval in seconds between\nreplication heartbeats. Whenever the master\'s binary log is updated\nwith an event, the waiting period for the next heartbeat is reset.\ninterval is a decimal value having the range 0 to 4294967 seconds and a\nresolution to hundredths of a second; the smallest nonzero value is\n0.01. Heartbeats are sent by the master only if there are no unsent\nevents in the binary log file for a period longer than interval.\n\nSetting interval to 0 disables heartbeats altogether. The default value\nfor interval is equal to the value of slave_net_timeout divided by 2.\n\nSetting @@global.slave_net_timeout to a value less than that of the\ncurrent heartbeat interval results in a warning being issued. The\neffect of issuing RESET SLAVE on the heartbeat interval is to reset it\nto the default value.\n\nMASTER_HEARTBEAT_PERIOD was added in MySQL Cluster NDB 6.3.4.\n\nMASTER_LOG_FILE and MASTER_LOG_POS are the coordinates at which the\nslave I/O thread should begin reading from the master the next time the\nthread starts. RELAY_LOG_FILE and RELAY_LOG_POS are the coordinates at\nwhich the slave SQL thread should begin reading from the relay log the\nnext time the thread starts. If you specify either of MASTER_LOG_FILE\nor MASTER_LOG_POS, you cannot specify RELAY_LOG_FILE or RELAY_LOG_POS.\nIf neither of MASTER_LOG_FILE or MASTER_LOG_POS is specified, the slave\nuses the last coordinates of the slave SQL thread before CHANGE MASTER\nTO was issued. This ensures that there is no discontinuity in\nreplication, even if the slave SQL thread was late compared to the\nslave I/O thread, when you merely want to change, say, the password to\nuse.\n\nCHANGE MASTER TO deletes all relay log files and starts a new one,\nunless you specify RELAY_LOG_FILE or RELAY_LOG_POS. In that case, relay\nlog files are kept; the relay_log_purge global variable is set silently\nto 0.\n\nBeginning with MySQL 5.1.47, invoking CHANGE MASTER TO causes the\nprevious values for MASTER_HOST, MASTER_PORT, MASTER_LOG_FILE, and\nMASTER_LOG_POS to be written to the error log, along with other\ninformation about the slave\'s state prior to execution.\n\nCHANGE MASTER TO is useful for setting up a slave when you have the\nsnapshot of the master and have recorded the master binary log\ncoordinates corresponding to the time of the snapshot. After loading\nthe snapshot into the slave to synchronize it to the slave, you can run\nCHANGE MASTER TO MASTER_LOG_FILE=\'log_name\', MASTER_LOG_POS=log_pos on\nthe slave to specify the coodinates at which the slave should begin\nreading the master binary log.\n\nThe following example changes the master server the slave uses and\nestablishes the master binary log coordinates from which the slave\nbegins reading. This is used when you want to set up the slave to\nreplicate the master:\n\nCHANGE MASTER TO\n MASTER_HOST=\'master2.mycompany.com\',\n MASTER_USER=\'replication\',\n MASTER_PASSWORD=\'bigs3cret\',\n MASTER_PORT=3306,\n MASTER_LOG_FILE=\'master2-bin.001\',\n MASTER_LOG_POS=4,\n MASTER_CONNECT_RETRY=10;\n\nThe next example shows an operation that is less frequently employed.\nIt is used when the slave has relay log files that you want it to\nexecute again for some reason. To do this, the master need not be\nreachable. You need only use CHANGE MASTER TO and start the SQL thread\n(START SLAVE SQL_THREAD):\n\nCHANGE MASTER TO\n RELAY_LOG_FILE=\'slave-relay-bin.006\',\n RELAY_LOG_POS=4025;\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/change-master-to.html\n\n','','http://dev.mysql.com/doc/refman/5.1/en/change-master-to.html'),(186,'DROP DATABASE',38,'Syntax:\nDROP {DATABASE | SCHEMA} [IF EXISTS] db_name\n\nDROP DATABASE drops all tables in the database and deletes the\ndatabase. Be very careful with this statement! To use DROP DATABASE,\nyou need the DROP privilege on the database. DROP SCHEMA is a synonym\nfor DROP DATABASE.\n\n*Important*: When a database is dropped, user privileges on the\ndatabase are not automatically dropped. See [HELP GRANT].\n\nIF EXISTS is used to prevent an error from occurring if the database\ndoes not exist.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/drop-database.html\n\n','','http://dev.mysql.com/doc/refman/5.1/en/drop-database.html'),(187,'MBREQUAL',6,'MBREqual(g1,g2)\n\nReturns 1 or 0 to indicate whether the Minimum Bounding Rectangles of\nthe two geometries g1 and g2 are the same.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/relations-on-geometry-mbr.html\n\n','','http://dev.mysql.com/doc/refman/5.1/en/relations-on-geometry-mbr.html'),(188,'TIMESTAMP FUNCTION',31,'Syntax:\nTIMESTAMP(expr), TIMESTAMP(expr1,expr2)\n\nWith a single argument, this function returns the date or datetime\nexpression expr as a datetime value. With two arguments, it adds the\ntime expression expr2 to the date or datetime expression expr1 and\nreturns the result as a datetime value.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/date-and-time-functions.html\n\n','mysql> SELECT TIMESTAMP(\'2003-12-31\');\n -> \'2003-12-31 00:00:00\'\nmysql> SELECT TIMESTAMP(\'2003-12-31 12:00:00\',\'12:00:00\');\n -> \'2004-01-01 00:00:00\'\n','http://dev.mysql.com/doc/refman/5.1/en/date-and-time-functions.html'),(189,'HELP_VERSION',9,'This help information was generated from the MySQL 5.1 Reference Manual\non: 2010-06-03 (revision: 21030)\n\nThis information applies to MySQL 5.1 through 5.1.49.\n','',''),(190,'CHARACTER_LENGTH',36,'Syntax:\nCHARACTER_LENGTH(str)\n\nCHARACTER_LENGTH() is a synonym for CHAR_LENGTH().\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/string-functions.html\n\n','','http://dev.mysql.com/doc/refman/5.1/en/string-functions.html'),(191,'SHOW GRANTS',26,'Syntax:\nSHOW GRANTS [FOR user]\n\nThis statement lists the GRANT statement or statements that must be\nissued to duplicate the privileges that are granted to a MySQL user\naccount. The account is named using the same format as for the GRANT\nstatement; for example, \'jeffrey\'@\'localhost\'. If you specify only the\nuser name part of the account name, a host name part of \'%\' is used.\nFor additional information about specifying account names, see [HELP\nGRANT].\n\nmysql> SHOW GRANTS FOR \'root\'@\'localhost\';\n+---------------------------------------------------------------------+\n| Grants for root@localhost |\n+---------------------------------------------------------------------+\n| GRANT ALL PRIVILEGES ON *.* TO \'root\'@\'localhost\' WITH GRANT OPTION |\n+---------------------------------------------------------------------+\n\nTo list the privileges granted to the account that you are using to\nconnect to the server, you can use any of the following statements:\n\nSHOW GRANTS;\nSHOW GRANTS FOR CURRENT_USER;\nSHOW GRANTS FOR CURRENT_USER();\n\nAs of MySQL 5.1.12, if SHOW GRANTS FOR CURRENT_USER (or any of the\nequivalent syntaxes) is used in DEFINER context, such as within a\nstored procedure that is defined with SQL SECURITY DEFINER), the grants\ndisplayed are those of the definer and not the invoker.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/show-grants.html\n\n','','http://dev.mysql.com/doc/refman/5.1/en/show-grants.html'),(192,'SHOW PRIVILEGES',26,'Syntax:\nSHOW PRIVILEGES\n\nSHOW PRIVILEGES shows the list of system privileges that the MySQL\nserver supports. The exact list of privileges depends on the version of\nyour server.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/show-privileges.html\n\n','','http://dev.mysql.com/doc/refman/5.1/en/show-privileges.html'),(193,'CREATE TABLESPACE',38,'Syntax:\nCREATE TABLESPACE tablespace_name\n ADD DATAFILE \'file_name\'\n USE LOGFILE GROUP logfile_group\n [EXTENT_SIZE [=] extent_size]\n [INITIAL_SIZE [=] initial_size]\n [AUTOEXTEND_SIZE [=] autoextend_size]\n [MAX_SIZE [=] max_size]\n [NODEGROUP [=] nodegroup_id]\n [WAIT]\n [COMMENT [=] comment_text]\n ENGINE [=] engine_name\n\nThis statement is used to create a tablespace, which can contain one or\nmore data files, providing storage space for tables. One data file is\ncreated and added to the tablespace using this statement. Additional\ndata files may be added to the tablespace by using the ALTER TABLESPACE\nstatement (see [HELP ALTER TABLESPACE]). For rules covering the naming\nof tablespaces, see\nhttp://dev.mysql.com/doc/refman/5.1/en/identifiers.html.\n\n*Note*: All MySQL Cluster Disk Data objects share the same namespace.\nThis means that each Disk Data object must be uniquely named (and not\nmerely each Disk Data object of a given type). For example, you cannot\nhave a tablespace and a log file group with the same name, or a\ntablespace and a data file with the same name.\n\nPrior to MySQL Cluster NDB 6.2.17, 6.3.23, and 6.4.3, path and file\nnames for data files could not be longer than 128 characters.\n(Bug#31770 (http://bugs.mysql.com/bug.php?id=31770))\n\nA log file group of one or more UNDO log files must be assigned to the\ntablespace to be created with the USE LOGFILE GROUP clause.\nlogfile_group must be an existing log file group created with CREATE\nLOGFILE GROUP (see\nhttp://dev.mysql.com/doc/refman/5.1/en/create-logfile-group.html).\nMultiple tablespaces may use the same log file group for UNDO logging.\n\nThe EXTENT_SIZE sets the size, in bytes, of the extents used by any\nfiles belonging to the tablespace. The default value is 1M. The minimum\nsize is 32K, and theoretical maximum is 2G, although the practical\nmaximum size depends on a number of factors. In most cases, changing\nthe extent size does not have any measurable effect on performance, and\nthe default value is recommended for all but the most unusual\nsituations.\n\nAn extent is a unit of disk space allocation. One extent is filled with\nas much data as that extent can contain before another extent is used.\nIn theory, up to 65,535 (64K) extents may used per data file; however,\nthe recommended maximum is 32,768 (32K). The recommended maximum size\nfor a single data file is 32G---that is, 32K extents x 1 MB per extent.\nIn addition, once an extent is allocated to a given partition, it\ncannot be used to store data from a different partition; an extent\ncannot store data from more than one partition. This means, for example\nthat a tablespace having a single datafile whose INITIAL_SIZE is 256 MB\nand whose EXTENT_SIZE is 128M has just two extents, and so can be used\nto store data from at most two different disk data table partitions.\n\nYou can see how many extents remain free in a given data file by\nquerying the INFORMATION_SCHEMA.FILES table, and so derive an estimate\nfor how much space remains free in the file. For further discussion and\nexamples, see http://dev.mysql.com/doc/refman/5.1/en/files-table.html.\n\nThe INITIAL_SIZE parameter sets the data file\'s total size in bytes.\nOnce the file has been created, its size cannot be changed; however,\nyou can add more data files to the tablespace using ALTER TABLESPACE\n... ADD DATAFILE. See [HELP ALTER TABLESPACE].\n\nINITIAL_SIZE is optional; its default value is 128M.\n\nOn 32-bit systems, the maximum supported value for INITIAL_SIZE is 4G.\n(Bug#29186 (http://bugs.mysql.com/bug.php?id=29186))\n\nWhen setting EXTENT_SIZE or INITIAL_SIZE (either or both), you may\noptionally follow the number with a one-letter abbreviation for an\norder of magnitude, similar to those used in my.cnf. Generally, this is\none of the letters M (for megabytes) or G (for gigabytes).\n\nINITIAL_SIZE, EXTENT_SIZE, and UNDO_BUFFER_SIZE are subject to rounding\nas follows:\n\no EXTENT_SIZE and UNDO_BUFFER_SIZE are each rounded up to the nearest\n whole multiple of 32K.\n\no INITIAL_SIZE is rounded down to the nearest whole multiple of 32K.\n\n For data files, INITIAL_SIZE is subject to further rounding; the\n result just obtained is rounded up to the nearest whole multiple of\n EXTENT_SIZE (after any rounding).\n\nThe rounding just described has always (since Disk Data tablespaces\nwere introduced in MySQL 5.1.6) been performed implicitly, but\nbeginning with MySQL Cluster NDB 6.2.19, MySQL Cluster NDB 6.3.32,\nMySQL Cluster NDB 7.0.13, and MySQL Cluster NDB 7.1.2, this rounding is\ndone explicitly, and a warning is issued by the MySQL Server when any\nsuch rounding is performed. The rounded values are also used by the NDB\nkernel for calculating INFORMATION_SCHEMA.FILES column values and other\npurposes. However, to avoid an unexpected result, we suggest that you\nalways use whole multiples of 32K in specifying these options.\n\nAUTOEXTEND_SIZE, MAX_SIZE, NODEGROUP, WAIT, and COMMENT are parsed but\nignored, and so currently have no effect. These options are intended\nfor future expansion.\n\nThe ENGINE parameter determines the storage engine which uses this\ntablespace, with engine_name being the name of the storage engine. In\nMySQL 5.1, engine_name must be one of the values NDB or NDBCLUSTER.\n\nWhen CREATE TABLESPACE is used with ENGINE = NDB, a tablespace and\nassociated data file are created on each Cluster data node. You can\nverify that the data files were created and obtain information about\nthem by querying the INFORMATION_SCHEMA.FILES table. For example:\n\nmysql> SELECT LOGFILE_GROUP_NAME, FILE_NAME, EXTRA\n -> FROM INFORMATION_SCHEMA.FILES\n -> WHERE TABLESPACE_NAME = \'newts\' AND FILE_TYPE = \'DATAFILE\';\n+--------------------+-------------+----------------+\n| LOGFILE_GROUP_NAME | FILE_NAME | EXTRA |\n+--------------------+-------------+----------------+\n| lg_3 | newdata.dat | CLUSTER_NODE=3 |\n| lg_3 | newdata.dat | CLUSTER_NODE=4 |\n+--------------------+-------------+----------------+\n2 rows in set (0.01 sec)\n\n(See http://dev.mysql.com/doc/refman/5.1/en/files-table.html.)\n\nCREATE TABLESPACE was added in MySQL 5.1.6. In MySQL 5.1, it is useful\nonly with Disk Data storage for MySQL Cluster. See\nhttp://dev.mysql.com/doc/refman/5.1/en/mysql-cluster-disk-data.html.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/create-tablespace.html\n\n','','http://dev.mysql.com/doc/refman/5.1/en/create-tablespace.html'),(194,'INSERT FUNCTION',36,'Syntax:\nINSERT(str,pos,len,newstr)\n\nReturns the string str, with the substring beginning at position pos\nand len characters long replaced by the string newstr. Returns the\noriginal string if pos is not within the length of the string. Replaces\nthe rest of the string from position pos if len is not within the\nlength of the rest of the string. Returns NULL if any argument is NULL.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/string-functions.html\n\n','mysql> SELECT INSERT(\'Quadratic\', 3, 4, \'What\');\n -> \'QuWhattic\'\nmysql> SELECT INSERT(\'Quadratic\', -1, 4, \'What\');\n -> \'Quadratic\'\nmysql> SELECT INSERT(\'Quadratic\', 3, 100, \'What\');\n -> \'QuWhat\'\n','http://dev.mysql.com/doc/refman/5.1/en/string-functions.html'),(195,'CRC32',4,'Syntax:\nCRC32(expr)\n\nComputes a cyclic redundancy check value and returns a 32-bit unsigned\nvalue. The result is NULL if the argument is NULL. The argument is\nexpected to be a string and (if possible) is treated as one if it is\nnot.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/mathematical-functions.html\n\n','mysql> SELECT CRC32(\'MySQL\');\n -> 3259397556\nmysql> SELECT CRC32(\'mysql\');\n -> 2501908538\n','http://dev.mysql.com/doc/refman/5.1/en/mathematical-functions.html'),(196,'XOR',14,'Syntax:\nXOR\n\nLogical XOR. Returns NULL if either operand is NULL. For non-NULL\noperands, evaluates to 1 if an odd number of operands is nonzero,\notherwise 0 is returned.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/logical-operators.html\n\n','mysql> SELECT 1 XOR 1;\n -> 0\nmysql> SELECT 1 XOR 0;\n -> 1\nmysql> SELECT 1 XOR NULL;\n -> NULL\nmysql> SELECT 1 XOR 1 XOR 1;\n -> 1\n','http://dev.mysql.com/doc/refman/5.1/en/logical-operators.html'),(197,'STARTPOINT',13,'StartPoint(ls)\n\nReturns the Point that is the start point of the LineString value ls.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/geometry-property-functions.html#linestring-property-functions\n\n','mysql> SET @ls = \'LineString(1 1,2 2,3 3)\';\nmysql> SELECT AsText(StartPoint(GeomFromText(@ls)));\n+---------------------------------------+\n| AsText(StartPoint(GeomFromText(@ls))) |\n+---------------------------------------+\n| POINT(1 1) |\n+---------------------------------------+\n','http://dev.mysql.com/doc/refman/5.1/en/geometry-property-functions.html#linestring-property-functions'),(198,'DECLARE VARIABLE',23,'Syntax:\nDECLARE var_name [, var_name] ... type [DEFAULT value]\n\nThis statement is used to declare local variables within stored\nprograms. To provide a default value for the variable, include a\nDEFAULT clause. The value can be specified as an expression; it need\nnot be a constant. If the DEFAULT clause is missing, the initial value\nis NULL.\n\nLocal variables are treated like stored routine parameters with respect\nto data type and overflow checking. See [HELP CREATE PROCEDURE].\n\nLocal variable names are not case sensitive.\n\nThe scope of a local variable is within the BEGIN ... END block where\nit is declared. The variable can be referred to in blocks nested within\nthe declaring block, except those blocks that declare a variable with\nthe same name.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/declare-local-variable.html\n\n','','http://dev.mysql.com/doc/refman/5.1/en/declare-local-variable.html'),(199,'GRANT',10,'Syntax:\nGRANT\n priv_type [(column_list)]\n [, priv_type [(column_list)]] ...\n ON [object_type] priv_level\n TO user [IDENTIFIED BY [PASSWORD] \'password\']\n [, user [IDENTIFIED BY [PASSWORD] \'password\']] ...\n [REQUIRE {NONE | ssl_option [[AND] ssl_option] ...}]\n [WITH with_option ...]\n\nobject_type:\n TABLE\n | FUNCTION\n | PROCEDURE\n\npriv_level:\n *\n | *.*\n | db_name.*\n | db_name.tbl_name\n | tbl_name\n | db_name.routine_name\n\nssl_option:\n SSL\n | X509\n | CIPHER \'cipher\'\n | ISSUER \'issuer\'\n | SUBJECT \'subject\'\n\nwith_option:\n GRANT OPTION\n | MAX_QUERIES_PER_HOUR count\n | MAX_UPDATES_PER_HOUR count\n | MAX_CONNECTIONS_PER_HOUR count\n | MAX_USER_CONNECTIONS count\n\nThe GRANT statement enables system administrators to grant privileges\nto MySQL user accounts. GRANT also serves to specify other account\ncharacteristics such as use of secure connections and limits on access\nto server resources. To use GRANT, you must have the GRANT OPTION\nprivilege, and you must have the privileges that you are granting.\n\nNormally, CREATE USER is used to create an account and GRANT to define\nits privileges. However, if an account named in a GRANT statement does\nnot already exist, GRANT may create it under the conditions described\nlater in the discussion of the NO_AUTO_CREATE_USER SQL mode.\n\nThe REVOKE statement is related to GRANT and enables administrators to\nremove account privileges. To determine what privileges an account has,\nuse SHOW GRANTS. See [HELP REVOKE], and [HELP SHOW GRANTS].\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/grant.html\n\n','','http://dev.mysql.com/doc/refman/5.1/en/grant.html'),(200,'MPOLYFROMTEXT',3,'MPolyFromText(wkt[,srid]), MultiPolygonFromText(wkt[,srid])\n\nConstructs a MULTIPOLYGON value using its WKT representation and SRID.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/creating-spatial-values.html#gis-wkt-functions\n\n','','http://dev.mysql.com/doc/refman/5.1/en/creating-spatial-values.html#gis-wkt-functions'),(201,'MBRINTERSECTS',6,'MBRIntersects(g1,g2)\n\nReturns 1 or 0 to indicate whether the Minimum Bounding Rectangles of\nthe two geometries g1 and g2 intersect.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/relations-on-geometry-mbr.html\n\n','','http://dev.mysql.com/doc/refman/5.1/en/relations-on-geometry-mbr.html'),(202,'BIT_OR',16,'Syntax:\nBIT_OR(expr)\n\nReturns the bitwise OR of all bits in expr. The calculation is\nperformed with 64-bit (BIGINT) precision.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/group-by-functions.html\n\n','','http://dev.mysql.com/doc/refman/5.1/en/group-by-functions.html'),(203,'YEARWEEK',31,'Syntax:\nYEARWEEK(date), YEARWEEK(date,mode)\n\nReturns year and week for a date. The mode argument works exactly like\nthe mode argument to WEEK(). The year in the result may be different\nfrom the year in the date argument for the first and the last week of\nthe year.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/date-and-time-functions.html\n\n','mysql> SELECT YEARWEEK(\'1987-01-01\');\n -> 198653\n','http://dev.mysql.com/doc/refman/5.1/en/date-and-time-functions.html'),(204,'NOT BETWEEN',18,'Syntax:\nexpr NOT BETWEEN min AND max\n\nThis is the same as NOT (expr BETWEEN min AND max).\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/comparison-operators.html\n\n','','http://dev.mysql.com/doc/refman/5.1/en/comparison-operators.html'),(205,'IS NOT',18,'Syntax:\nIS NOT boolean_value\n\nTests a value against a boolean value, where boolean_value can be TRUE,\nFALSE, or UNKNOWN.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/comparison-operators.html\n\n','mysql> SELECT 1 IS NOT UNKNOWN, 0 IS NOT UNKNOWN, NULL IS NOT UNKNOWN;\n -> 1, 1, 0\n','http://dev.mysql.com/doc/refman/5.1/en/comparison-operators.html'),(206,'LOG10',4,'Syntax:\nLOG10(X)\n\nReturns the base-10 logarithm of X.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/mathematical-functions.html\n\n','mysql> SELECT LOG10(2);\n -> 0.30102999566398\nmysql> SELECT LOG10(100);\n -> 2\nmysql> SELECT LOG10(-100);\n -> NULL\n','http://dev.mysql.com/doc/refman/5.1/en/mathematical-functions.html'),(207,'SQRT',4,'Syntax:\nSQRT(X)\n\nReturns the square root of a nonnegative number X.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/mathematical-functions.html\n\n','mysql> SELECT SQRT(4);\n -> 2\nmysql> SELECT SQRT(20);\n -> 4.4721359549996\nmysql> SELECT SQRT(-16);\n -> NULL\n','http://dev.mysql.com/doc/refman/5.1/en/mathematical-functions.html'),(208,'DECIMAL',22,'DECIMAL[(M[,D])] [UNSIGNED] [ZEROFILL]\n\nA packed \"exact\" fixed-point number. M is the total number of digits\n(the precision) and D is the number of digits after the decimal point\n(the scale). The decimal point and (for negative numbers) the \"-\" sign\nare not counted in M. If D is 0, values have no decimal point or\nfractional part. The maximum number of digits (M) for DECIMAL is 65.\nThe maximum number of supported decimals (D) is 30. If D is omitted,\nthe default is 0. If M is omitted, the default is 10.\n\nUNSIGNED, if specified, disallows negative values.\n\nAll basic calculations (+, -, *, /) with DECIMAL columns are done with\na precision of 65 digits.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/numeric-type-overview.html\n\n','','http://dev.mysql.com/doc/refman/5.1/en/numeric-type-overview.html'),(209,'CREATE INDEX',38,'Syntax:\nCREATE [ONLINE|OFFLINE] [UNIQUE|FULLTEXT|SPATIAL] INDEX index_name\n [index_type]\n ON tbl_name (index_col_name,...)\n [index_option] ...\n\nindex_col_name:\n col_name [(length)] [ASC | DESC]\n\nindex_type:\n USING {BTREE | HASH | RTREE}\n\nindex_option:\n KEY_BLOCK_SIZE [=] value\n | index_type\n | WITH PARSER parser_name\n\nCREATE INDEX is mapped to an ALTER TABLE statement to create indexes.\nSee [HELP ALTER TABLE]. CREATE INDEX cannot be used to create a PRIMARY\nKEY; use ALTER TABLE instead. For more information about indexes, see\nhttp://dev.mysql.com/doc/refman/5.1/en/mysql-indexes.html.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/create-index.html\n\n','','http://dev.mysql.com/doc/refman/5.1/en/create-index.html'),(210,'CREATE FUNCTION',38,'The CREATE FUNCTION statement is used to create stored functions and\nuser-defined functions (UDFs):\n\no For information about creating stored functions, see [HELP CREATE\n PROCEDURE].\n\no For information about creating user-defined functions, see [HELP\n CREATE FUNCTION UDF].\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/create-function.html\n\n','','http://dev.mysql.com/doc/refman/5.1/en/create-function.html'),(211,'ALTER DATABASE',38,'Syntax:\nALTER {DATABASE | SCHEMA} [db_name]\n alter_specification ...\nALTER {DATABASE | SCHEMA} db_name\n UPGRADE DATA DIRECTORY NAME\n\nalter_specification:\n [DEFAULT] CHARACTER SET [=] charset_name\n | [DEFAULT] COLLATE [=] collation_name\n\nALTER DATABASE enables you to change the overall characteristics of a\ndatabase. These characteristics are stored in the db.opt file in the\ndatabase directory. To use ALTER DATABASE, you need the ALTER privilege\non the database. ALTER SCHEMA is a synonym for ALTER DATABASE.\n\nThe CHARACTER SET clause changes the default database character set.\nThe COLLATE clause changes the default database collation.\nhttp://dev.mysql.com/doc/refman/5.1/en/charset.html, discusses\ncharacter set and collation names.\n\nYou can see what character sets and collations are available using,\nrespectively, the SHOW CHARACTER SET and SHOW COLLATION statements. See\n[HELP SHOW CHARACTER SET], and [HELP SHOW COLLATION], for more\ninformation.\n\nThe database name can be omitted from the first syntax, in which case\nthe statement applies to the default database.\n\nThe syntax that includes the UPGRADE DATA DIRECTORY NAME clause was\nadded in MySQL 5.1.23. It updates the name of the directory associated\nwith the database to use the encoding implemented in MySQL 5.1 for\nmapping database names to database directory names (see\nhttp://dev.mysql.com/doc/refman/5.1/en/identifier-mapping.html). This\nclause is for use under these conditions:\n\no It is intended when upgrading MySQL to 5.1 or later from older\n versions.\n\no It is intended to update a database directory name to the current\n encoding format if the name contains special characters that need\n encoding.\n\no The statement is used by mysqlcheck (as invoked by mysql_upgrade).\n\nFor example,if a database in MySQL 5.0 has a name of a-b-c, the name\ncontains instance of the `-\' character. In 5.0, the database directory\nis also named a-b-c, which is not necessarily safe for all file\nsystems. In MySQL 5.1 and up, the same database name is encoded as\na@002db@002dc to produce a file system-neutral directory name.\n\nWhen a MySQL installation is upgraded to MySQL 5.1 or later from an\nolder version,the server displays a name such as a-b-c (which is in the\nold format) as #mysql50#a-b-c, and you must refer to the name using the\n#mysql50# prefix. Use UPGRADE DATA DIRECTORY NAME in this case to\nexplicitly tell the server to re-encode the database directory name to\nthe current encoding format:\n\nALTER DATABASE `#mysql50#a-b-c` UPGRADE DATA DIRECTORY NAME;\n\nAfter executing this statement, you can refer to the database as a-b-c\nwithout the special #mysql50# prefix.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/alter-database.html\n\n','','http://dev.mysql.com/doc/refman/5.1/en/alter-database.html'),(212,'GEOMETRYN',25,'GeometryN(gc,N)\n\nReturns the N-th geometry in the GeometryCollection value gc.\nGeometries are numbered beginning with 1.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/geometry-property-functions.html#geometrycollection-property-functions\n\n','mysql> SET @gc = \'GeometryCollection(Point(1 1),LineString(2 2, 3 3))\';\nmysql> SELECT AsText(GeometryN(GeomFromText(@gc),1));\n+----------------------------------------+\n| AsText(GeometryN(GeomFromText(@gc),1)) |\n+----------------------------------------+\n| POINT(1 1) |\n+----------------------------------------+\n','http://dev.mysql.com/doc/refman/5.1/en/geometry-property-functions.html#geometrycollection-property-functions'),(213,'<<',19,'Syntax:\n<<\n\nShifts a longlong (BIGINT) number to the left.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/bit-functions.html\n\n','mysql> SELECT 1 << 2;\n -> 4\n','http://dev.mysql.com/doc/refman/5.1/en/bit-functions.html'),(214,'SHOW TABLE STATUS',26,'Syntax:\nSHOW TABLE STATUS [{FROM | IN} db_name]\n [LIKE \'pattern\' | WHERE expr]\n\nSHOW TABLE STATUS works likes SHOW TABLES, but provides a lot of\ninformation about each non-TEMPORARY table. You can also get this list\nusing the mysqlshow --status db_name command. The LIKE clause, if\npresent, indicates which table names to match. The WHERE clause can be\ngiven to select rows using more general conditions, as discussed in\nhttp://dev.mysql.com/doc/refman/5.1/en/extended-show.html.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/show-table-status.html\n\n','','http://dev.mysql.com/doc/refman/5.1/en/show-table-status.html'),(215,'MD5',12,'Syntax:\nMD5(str)\n\nCalculates an MD5 128-bit checksum for the string. The value is\nreturned as a binary string of 32 hex digits, or NULL if the argument\nwas NULL. The return value can, for example, be used as a hash key.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/encryption-functions.html\n\n','mysql> SELECT MD5(\'testing\');\n -> \'ae2b1fca515949e5d54fb22b8ed95575\'\n','http://dev.mysql.com/doc/refman/5.1/en/encryption-functions.html'),(216,'<',18,'Syntax:\n<\n\nLess than:\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/comparison-operators.html\n\n','mysql> SELECT 2 < 2;\n -> 0\n','http://dev.mysql.com/doc/refman/5.1/en/comparison-operators.html'),(217,'UNIX_TIMESTAMP',31,'Syntax:\nUNIX_TIMESTAMP(), UNIX_TIMESTAMP(date)\n\nIf called with no argument, returns a Unix timestamp (seconds since\n\'1970-01-01 00:00:00\' UTC) as an unsigned integer. If UNIX_TIMESTAMP()\nis called with a date argument, it returns the value of the argument as\nseconds since \'1970-01-01 00:00:00\' UTC. date may be a DATE string, a\nDATETIME string, a TIMESTAMP, or a number in the format YYMMDD or\nYYYYMMDD. The server interprets date as a value in the current time\nzone and converts it to an internal value in UTC. Clients can set their\ntime zone as described in\nhttp://dev.mysql.com/doc/refman/5.1/en/time-zone-support.html.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/date-and-time-functions.html\n\n','mysql> SELECT UNIX_TIMESTAMP();\n -> 1196440210\nmysql> SELECT UNIX_TIMESTAMP(\'2007-11-30 10:30:19\');\n -> 1196440219\n','http://dev.mysql.com/doc/refman/5.1/en/date-and-time-functions.html'),(218,'DAYOFMONTH',31,'Syntax:\nDAYOFMONTH(date)\n\nReturns the day of the month for date, in the range 1 to 31, or 0 for\ndates such as \'0000-00-00\' or \'2008-00-00\' that have a zero day part.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/date-and-time-functions.html\n\n','mysql> SELECT DAYOFMONTH(\'2007-02-03\');\n -> 3\n','http://dev.mysql.com/doc/refman/5.1/en/date-and-time-functions.html'),(219,'ASCII',36,'Syntax:\nASCII(str)\n\nReturns the numeric value of the leftmost character of the string str.\nReturns 0 if str is the empty string. Returns NULL if str is NULL.\nASCII() works for 8-bit characters.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/string-functions.html\n\n','mysql> SELECT ASCII(\'2\');\n -> 50\nmysql> SELECT ASCII(2);\n -> 50\nmysql> SELECT ASCII(\'dx\');\n -> 100\n','http://dev.mysql.com/doc/refman/5.1/en/string-functions.html'),(220,'DIV',4,'Syntax:\nDIV\n\nInteger division. Similar to FLOOR(), but is safe with BIGINT values.\nIncorrect results may occur for noninteger operands that exceed BIGINT\nrange.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/arithmetic-functions.html\n\n','mysql> SELECT 5 DIV 2;\n -> 2\n','http://dev.mysql.com/doc/refman/5.1/en/arithmetic-functions.html'),(221,'RENAME USER',10,'Syntax:\nRENAME USER old_user TO new_user\n [, old_user TO new_user] ...\n\nThe RENAME USER statement renames existing MySQL accounts. To use it,\nyou must have the global CREATE USER privilege or the UPDATE privilege\nfor the mysql database. An error occurs if any old account does not\nexist or any new account exists. Each account is named using the same\nformat as for the GRANT statement; for example, \'jeffrey\'@\'localhost\'.\nIf you specify only the user name part of the account name, a host name\npart of \'%\' is used. For additional information about specifying\naccount names, see [HELP GRANT].\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/rename-user.html\n\n','','http://dev.mysql.com/doc/refman/5.1/en/rename-user.html'),(222,'SHOW SLAVE STATUS',26,'Syntax:\nSHOW SLAVE STATUS\n\nThis statement provides status information on essential parameters of\nthe slave threads. It requires either the SUPER or REPLICATION CLIENT\nprivilege.\n\nIf you issue this statement using the mysql client, you can use a \\G\nstatement terminator rather than a semicolon to obtain a more readable\nvertical layout:\n\nmysql> SHOW SLAVE STATUS\\G\n*************************** 1. row ***************************\n Slave_IO_State: Waiting for master to send event\n Master_Host: localhost\n Master_User: root\n Master_Port: 3306\n Connect_Retry: 3\n Master_Log_File: gbichot-bin.005\n Read_Master_Log_Pos: 79\n Relay_Log_File: gbichot-relay-bin.005\n Relay_Log_Pos: 548\n Relay_Master_Log_File: gbichot-bin.005\n Slave_IO_Running: Yes\n Slave_SQL_Running: Yes\n Replicate_Do_DB:\n Replicate_Ignore_DB:\n Replicate_Do_Table:\n Replicate_Ignore_Table:\n Replicate_Wild_Do_Table:\n Replicate_Wild_Ignore_Table:\n Last_Errno: 0\n Last_Error:\n Skip_Counter: 0\n Exec_Master_Log_Pos: 79\n Relay_Log_Space: 552\n Until_Condition: None\n Until_Log_File:\n Until_Log_Pos: 0\n Master_SSL_Allowed: No\n Master_SSL_CA_File:\n Master_SSL_CA_Path:\n Master_SSL_Cert:\n Master_SSL_Cipher:\n Master_SSL_Key:\n Seconds_Behind_Master: 8\nMaster_SSL_Verify_Server_Cert: No\n Last_IO_Errno: 0\n Last_IO_Error:\n Last_SQL_Errno: 0\n Last_SQL_Error:\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/show-slave-status.html\n\n','','http://dev.mysql.com/doc/refman/5.1/en/show-slave-status.html'),(223,'GEOMETRY',33,'MySQL provides a standard way of creating spatial columns for geometry\ntypes, for example, with CREATE TABLE or ALTER TABLE. Currently,\nspatial columns are supported for MyISAM, InnoDB, NDB, and ARCHIVE\ntables. See also the annotations about spatial indexes under [HELP\nSPATIAL].\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/creating-spatial-columns.html\n\n','CREATE TABLE geom (g GEOMETRY);\n','http://dev.mysql.com/doc/refman/5.1/en/creating-spatial-columns.html'),(224,'NUMPOINTS',13,'NumPoints(ls)\n\nReturns the number of Point objects in the LineString value ls.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/geometry-property-functions.html#linestring-property-functions\n\n','mysql> SET @ls = \'LineString(1 1,2 2,3 3)\';\nmysql> SELECT NumPoints(GeomFromText(@ls));\n+------------------------------+\n| NumPoints(GeomFromText(@ls)) |\n+------------------------------+\n| 3 |\n+------------------------------+\n','http://dev.mysql.com/doc/refman/5.1/en/geometry-property-functions.html#linestring-property-functions'),(225,'ALTER LOGFILE GROUP',38,'Syntax:\nALTER LOGFILE GROUP logfile_group\n ADD UNDOFILE \'file_name\'\n [INITIAL_SIZE [=] size]\n [WAIT]\n ENGINE [=] engine_name\n\nThis statement adds an UNDO file named \'file_name\' to an existing log\nfile group logfile_group. An ALTER LOGFILE GROUP statement has one and\nonly one ADD UNDOFILE clause. No DROP UNDOFILE clause is currently\nsupported.\n\n*Note*: All MySQL Cluster Disk Data objects share the same namespace.\nThis means that each Disk Data object must be uniquely named (and not\nmerely each Disk Data object of a given type). For example, you cannot\nhave a tablespace and an undo log file with the same name, or an undo\nlog file and a data file with the same name.\n\nPrior to MySQL Cluster NDB 6.2.17, 6.3.23, and 6.4.3, path and file\nnames for undo log files could not be longer than 128 characters.\n(Bug#31769 (http://bugs.mysql.com/bug.php?id=31769))\n\nThe optional INITIAL_SIZE parameter sets the UNDO file\'s initial size\nin bytes; if not specified, the initial size default to 128M (128\nmegabytes). You may optionally follow size with a one-letter\nabbreviation for an order of magnitude, similar to those used in\nmy.cnf. Generally, this is one of the letters M (for megabytes) or G\n(for gigabytes).\n\nOn 32-bit systems, the maximum supported value for INITIAL_SIZE is 4G.\n(Bug#29186 (http://bugs.mysql.com/bug.php?id=29186))\n\nBeginning with MySQL Cluster NDB 2.1.18, 6.3.24, and 7.0.4, the minimum\nallowed value for INITIAL_SIZE is 1M. (Bug#29574\n(http://bugs.mysql.com/bug.php?id=29574))\n\n*Note*: WAIT is parsed but otherwise ignored, and so has no effect in\nMySQL 5.1 and MySQL Cluster NDB 6.x. It is intended for future\nexpansion.\n\nThe ENGINE parameter (required) determines the storage engine which is\nused by this log file group, with engine_name being the name of the\nstorage engine. In MySQL 5.1 and MySQL Cluster NDB 6.x, the only\naccepted values for engine_name are \"NDBCLUSTER\" and \"NDB\". The two\nvalues are equivalent.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/alter-logfile-group.html\n\n','','http://dev.mysql.com/doc/refman/5.1/en/alter-logfile-group.html'),(226,'&',19,'Syntax:\n&\n\nBitwise AND:\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/bit-functions.html\n\n','mysql> SELECT 29 & 15;\n -> 13\n','http://dev.mysql.com/doc/refman/5.1/en/bit-functions.html'),(227,'LOCALTIMESTAMP',31,'Syntax:\nLOCALTIMESTAMP, LOCALTIMESTAMP()\n\nLOCALTIMESTAMP and LOCALTIMESTAMP() are synonyms for NOW().\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/date-and-time-functions.html\n\n','','http://dev.mysql.com/doc/refman/5.1/en/date-and-time-functions.html'),(228,'CONVERT',36,'Syntax:\nCONVERT(expr,type), CONVERT(expr USING transcoding_name)\n\nThe CONVERT() and CAST() functions take a value of one type and produce\na value of another type.\n\nThe type can be one of the following values:\n\no BINARY[(N)]\n\no CHAR[(N)]\n\no DATE\n\no DATETIME\n\no DECIMAL[(M[,D])]\n\no SIGNED [INTEGER]\n\no TIME\n\no UNSIGNED [INTEGER]\n\nBINARY produces a string with the BINARY data type. See\nhttp://dev.mysql.com/doc/refman/5.1/en/binary-varbinary.html for a\ndescription of how this affects comparisons. If the optional length N\nis given, BINARY(N) causes the cast to use no more than N bytes of the\nargument. Values shorter than N bytes are padded with 0x00 bytes to a\nlength of N.\n\nCHAR(N) causes the cast to use no more than N characters of the\nargument.\n\nCAST() and CONVERT(... USING ...) are standard SQL syntax. The\nnon-USING form of CONVERT() is ODBC syntax.\n\nCONVERT() with USING is used to convert data between different\ncharacter sets. In MySQL, transcoding names are the same as the\ncorresponding character set names. For example, this statement converts\nthe string \'abc\' in the default character set to the corresponding\nstring in the utf8 character set:\n\nSELECT CONVERT(\'abc\' USING utf8);\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/cast-functions.html\n\n','SELECT enum_col FROM tbl_name ORDER BY CAST(enum_col AS CHAR);\n','http://dev.mysql.com/doc/refman/5.1/en/cast-functions.html'),(229,'ADDDATE',31,'Syntax:\nADDDATE(date,INTERVAL expr unit), ADDDATE(expr,days)\n\nWhen invoked with the INTERVAL form of the second argument, ADDDATE()\nis a synonym for DATE_ADD(). The related function SUBDATE() is a\nsynonym for DATE_SUB(). For information on the INTERVAL unit argument,\nsee the discussion for DATE_ADD().\n\nmysql> SELECT DATE_ADD(\'2008-01-02\', INTERVAL 31 DAY);\n -> \'2008-02-02\'\nmysql> SELECT ADDDATE(\'2008-01-02\', INTERVAL 31 DAY);\n -> \'2008-02-02\'\n\nWhen invoked with the days form of the second argument, MySQL treats it\nas an integer number of days to be added to expr.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/date-and-time-functions.html\n\n','mysql> SELECT ADDDATE(\'2008-01-02\', 31);\n -> \'2008-02-02\'\n','http://dev.mysql.com/doc/refman/5.1/en/date-and-time-functions.html'),(230,'REPEAT LOOP',23,'Syntax:\n[begin_label:] REPEAT\n statement_list\nUNTIL search_condition\nEND REPEAT [end_label]\n\nThe statement list within a REPEAT statement is repeated until the\nsearch_condition is true. Thus, a REPEAT always enters the loop at\nleast once. statement_list consists of one or more statements, each\nterminated by a semicolon (;) statement delimiter.\n\nA REPEAT statement can be labeled. See [HELP BEGIN END] for the rules\nregarding label use.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/repeat-statement.html\n\n','mysql> delimiter //\n\nmysql> CREATE PROCEDURE dorepeat(p1 INT)\n -> BEGIN\n -> SET @x = 0;\n -> REPEAT SET @x = @x + 1; UNTIL @x > p1 END REPEAT;\n -> END\n -> //\nQuery OK, 0 rows affected (0.00 sec)\n\nmysql> CALL dorepeat(1000)//\nQuery OK, 0 rows affected (0.00 sec)\n\nmysql> SELECT @x//\n+------+\n| @x |\n+------+\n| 1001 |\n+------+\n1 row in set (0.00 sec)\n','http://dev.mysql.com/doc/refman/5.1/en/repeat-statement.html'),(231,'ALTER FUNCTION',38,'Syntax:\nALTER FUNCTION func_name [characteristic ...]\n\ncharacteristic:\n { CONTAINS SQL | NO SQL | READS SQL DATA | MODIFIES SQL DATA }\n | SQL SECURITY { DEFINER | INVOKER }\n | COMMENT \'string\'\n\nThis statement can be used to change the characteristics of a stored\nfunction. More than one change may be specified in an ALTER FUNCTION\nstatement. However, you cannot change the parameters or body of a\nstored function using this statement; to make such changes, you must\ndrop and re-create the function using DROP FUNCTION and CREATE\nFUNCTION.\n\nYou must have the ALTER ROUTINE privilege for the function. (That\nprivilege is granted automatically to the function creator.) If binary\nlogging is enabled, the ALTER FUNCTION statement might also require the\nSUPER privilege, as described in\nhttp://dev.mysql.com/doc/refman/5.1/en/stored-programs-logging.html.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/alter-function.html\n\n','','http://dev.mysql.com/doc/refman/5.1/en/alter-function.html'),(232,'SMALLINT',22,'SMALLINT[(M)] [UNSIGNED] [ZEROFILL]\n\nA small integer. The signed range is -32768 to 32767. The unsigned\nrange is 0 to 65535.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/numeric-type-overview.html\n\n','','http://dev.mysql.com/doc/refman/5.1/en/numeric-type-overview.html'),(233,'DOUBLE PRECISION',22,'DOUBLE PRECISION[(M,D)] [UNSIGNED] [ZEROFILL], REAL[(M,D)] [UNSIGNED]\n[ZEROFILL]\n\nThese types are synonyms for DOUBLE. Exception: If the REAL_AS_FLOAT\nSQL mode is enabled, REAL is a synonym for FLOAT rather than DOUBLE.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/numeric-type-overview.html\n\n','','http://dev.mysql.com/doc/refman/5.1/en/numeric-type-overview.html'),(234,'ORD',36,'Syntax:\nORD(str)\n\nIf the leftmost character of the string str is a multi-byte character,\nreturns the code for that character, calculated from the numeric values\nof its constituent bytes using this formula:\n\n (1st byte code)\n+ (2nd byte code * 256)\n+ (3rd byte code * 2562) ...\n\nIf the leftmost character is not a multi-byte character, ORD() returns\nthe same value as the ASCII() function.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/string-functions.html\n\n','mysql> SELECT ORD(\'2\');\n -> 50\n','http://dev.mysql.com/doc/refman/5.1/en/string-functions.html'),(235,'DEALLOCATE PREPARE',26,'Syntax:\n{DEALLOCATE | DROP} PREPARE stmt_name\n\nTo deallocate a prepared statement produced with PREPARE, use a\nDEALLOCATE PREPARE statement that refers to the prepared statement\nname. Attempting to execute a prepared statement after deallocating it\nresults in an error.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/deallocate-prepare.html\n\n','','http://dev.mysql.com/doc/refman/5.1/en/deallocate-prepare.html'),(236,'ENVELOPE',35,'Envelope(g)\n\nReturns the Minimum Bounding Rectangle (MBR) for the geometry value g.\nThe result is returned as a Polygon value.\n\nThe polygon is defined by the corner points of the bounding box:\n\nPOLYGON((MINX MINY, MAXX MINY, MAXX MAXY, MINX MAXY, MINX MINY))\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/geometry-property-functions.html#general-geometry-property-functions\n\n','mysql> SELECT AsText(Envelope(GeomFromText(\'LineString(1 1,2 2)\')));\n+-------------------------------------------------------+\n| AsText(Envelope(GeomFromText(\'LineString(1 1,2 2)\'))) |\n+-------------------------------------------------------+\n| POLYGON((1 1,2 1,2 2,1 2,1 1)) |\n+-------------------------------------------------------+\n','http://dev.mysql.com/doc/refman/5.1/en/geometry-property-functions.html#general-geometry-property-functions'),(237,'IS_FREE_LOCK',15,'Syntax:\nIS_FREE_LOCK(str)\n\nChecks whether the lock named str is free to use (that is, not locked).\nReturns 1 if the lock is free (no one is using the lock), 0 if the lock\nis in use, and NULL if an error occurs (such as an incorrect argument).\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/miscellaneous-functions.html\n\n','','http://dev.mysql.com/doc/refman/5.1/en/miscellaneous-functions.html'),(238,'TOUCHES',30,'Touches(g1,g2)\n\nReturns 1 or 0 to indicate whether g1 spatially touches g2. Two\ngeometries spatially touch if the interiors of the geometries do not\nintersect, but the boundary of one of the geometries intersects either\nthe boundary or the interior of the other.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/functions-that-test-spatial-relationships-between-geometries.html\n\n','','http://dev.mysql.com/doc/refman/5.1/en/functions-that-test-spatial-relationships-between-geometries.html'),(239,'INET_ATON',15,'Syntax:\nINET_ATON(expr)\n\nGiven the dotted-quad representation of a network address as a string,\nreturns an integer that represents the numeric value of the address.\nAddresses may be 4- or 8-byte addresses.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/miscellaneous-functions.html\n\n','mysql> SELECT INET_ATON(\'209.207.224.40\');\n -> 3520061480\n','http://dev.mysql.com/doc/refman/5.1/en/miscellaneous-functions.html'),(240,'UNCOMPRESS',12,'Syntax:\nUNCOMPRESS(string_to_uncompress)\n\nUncompresses a string compressed by the COMPRESS() function. If the\nargument is not a compressed value, the result is NULL. This function\nrequires MySQL to have been compiled with a compression library such as\nzlib. Otherwise, the return value is always NULL.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/encryption-functions.html\n\n','mysql> SELECT UNCOMPRESS(COMPRESS(\'any string\'));\n -> \'any string\'\nmysql> SELECT UNCOMPRESS(\'any string\');\n -> NULL\n','http://dev.mysql.com/doc/refman/5.1/en/encryption-functions.html'),(241,'AUTO_INCREMENT',22,'The AUTO_INCREMENT attribute can be used to generate a unique identity\nfor new rows:\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/example-auto-increment.html\n\n','CREATE TABLE animals (\n id MEDIUMINT NOT NULL AUTO_INCREMENT,\n name CHAR(30) NOT NULL,\n PRIMARY KEY (id)\n );\n\nINSERT INTO animals (name) VALUES\n (\'dog\'),(\'cat\'),(\'penguin\'),\n (\'lax\'),(\'whale\'),(\'ostrich\');\n\nSELECT * FROM animals;\n','http://dev.mysql.com/doc/refman/5.1/en/example-auto-increment.html'),(242,'ISSIMPLE',35,'IsSimple(g)\n\nCurrently, this function is a placeholder and should not be used. If\nimplemented, its behavior will be as described in the next paragraph.\n\nReturns 1 if the geometry value g has no anomalous geometric points,\nsuch as self-intersection or self-tangency. IsSimple() returns 0 if the\nargument is not simple, and -1 if it is NULL.\n\nThe description of each instantiable geometric class given earlier in\nthe chapter includes the specific conditions that cause an instance of\nthat class to be classified as not simple. (See [HELP Geometry\nhierarchy].)\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/geometry-property-functions.html#general-geometry-property-functions\n\n','','http://dev.mysql.com/doc/refman/5.1/en/geometry-property-functions.html#general-geometry-property-functions'),(243,'- BINARY',4,'Syntax:\n-\n\nSubtraction:\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/arithmetic-functions.html\n\n','mysql> SELECT 3-5;\n -> -2\n','http://dev.mysql.com/doc/refman/5.1/en/arithmetic-functions.html'),(244,'GEOMCOLLFROMTEXT',3,'GeomCollFromText(wkt[,srid]), GeometryCollectionFromText(wkt[,srid])\n\nConstructs a GEOMETRYCOLLECTION value using its WKT representation and\nSRID.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/creating-spatial-values.html#gis-wkt-functions\n\n','','http://dev.mysql.com/doc/refman/5.1/en/creating-spatial-values.html#gis-wkt-functions'),(245,'WKT DEFINITION',3,'The Well-Known Text (WKT) representation of Geometry is designed to\nexchange geometry data in ASCII form.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/gis-wkt-format.html\n\n','','http://dev.mysql.com/doc/refman/5.1/en/gis-wkt-format.html'),(246,'CURRENT_TIME',31,'Syntax:\nCURRENT_TIME, CURRENT_TIME()\n\nCURRENT_TIME and CURRENT_TIME() are synonyms for CURTIME().\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/date-and-time-functions.html\n\n','','http://dev.mysql.com/doc/refman/5.1/en/date-and-time-functions.html'),(247,'REVOKE',10,'Syntax:\nREVOKE\n priv_type [(column_list)]\n [, priv_type [(column_list)]] ...\n ON [object_type] priv_level\n FROM user [, user] ...\n\nREVOKE ALL PRIVILEGES, GRANT OPTION\n FROM user [, user] ...\n\nThe REVOKE statement enables system administrators to revoke privileges\nfrom MySQL accounts. Each account is named using the same format as for\nthe GRANT statement; for example, \'jeffrey\'@\'localhost\'. If you specify\nonly the user name part of the account name, a host name part of \'%\' is\nused. For details on the levels at which privileges exist, the\nallowable priv_type and priv_level values, and the syntax for\nspecifying users and passwords, see [HELP GRANT]\n\nTo use the first REVOKE syntax, you must have the GRANT OPTION\nprivilege, and you must have the privileges that you are revoking.\n\nTo revoke all privileges, use the second syntax, which drops all\nglobal, database, table, column, and routine privileges for the named\nuser or users:\n\nREVOKE ALL PRIVILEGES, GRANT OPTION FROM user [, user] ...\n\nTo use this REVOKE syntax, you must have the global CREATE USER\nprivilege or the UPDATE privilege for the mysql database.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/revoke.html\n\n','','http://dev.mysql.com/doc/refman/5.1/en/revoke.html'),(248,'LAST_INSERT_ID',17,'Syntax:\nLAST_INSERT_ID(), LAST_INSERT_ID(expr)\n\nFor MySQL 5.1.12 and later, LAST_INSERT_ID() (no arguments) returns the\nfirst automatically generated value successfully inserted for an\nAUTO_INCREMENT column as a result of the most recently executed INSERT\nstatement. The value of LAST_INSERT_ID() remains unchanged if no rows\nare successfully inserted.\n\nFor example, after inserting a row that generates an AUTO_INCREMENT\nvalue, you can get the value like this:\n\nmysql> SELECT LAST_INSERT_ID();\n -> 195\n\nIn MySQL 5.1.11 and earlier, LAST_INSERT_ID() (no arguments) returns\nthe first automatically generated value if any rows were successfully\ninserted or updated. This means that the returned value could be a\nvalue that was not successfully inserted into the table. If no rows\nwere successfully inserted, LAST_INSERT_ID() returns 0.\n\nThe value of LAST_INSERT_ID() will be consistent across all versions if\nall rows in the INSERT or UPDATE statement were successful.\n\nif a table contains an AUTO_INCREMENT column and INSERT ... ON\nDUPLICATE KEY UPDATE updates (rather than inserts) a row, the value of\nLAST_INSERT_ID() is not meaningful prior to MySQL 5.1.12. For a\nworkaround, see\nhttp://dev.mysql.com/doc/refman/5.1/en/insert-on-duplicate.html.\n\nThe currently executing statement does not affect the value of\nLAST_INSERT_ID(). Suppose that you generate an AUTO_INCREMENT value\nwith one statement, and then refer to LAST_INSERT_ID() in a\nmultiple-row INSERT statement that inserts rows into a table with its\nown AUTO_INCREMENT column. The value of LAST_INSERT_ID() will remain\nstable in the second statement; its value for the second and later rows\nis not affected by the earlier row insertions. (However, if you mix\nreferences to LAST_INSERT_ID() and LAST_INSERT_ID(expr), the effect is\nundefined.)\n\nIf the previous statement returned an error, the value of\nLAST_INSERT_ID() is undefined. For transactional tables, if the\nstatement is rolled back due to an error, the value of LAST_INSERT_ID()\nis left undefined. For manual ROLLBACK, the value of LAST_INSERT_ID()\nis not restored to that before the transaction; it remains as it was at\nthe point of the ROLLBACK.\n\nWithin the body of a stored routine (procedure or function) or a\ntrigger, the value of LAST_INSERT_ID() changes the same way as for\nstatements executed outside the body of these kinds of objects. The\neffect of a stored routine or trigger upon the value of\nLAST_INSERT_ID() that is seen by following statements depends on the\nkind of routine:\n\no If a stored procedure executes statements that change the value of\n LAST_INSERT_ID(), the changed value will be seen by statements that\n follow the procedure call.\n\no For stored functions and triggers that change the value, the value is\n restored when the function or trigger ends, so following statements\n will not see a changed value.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/information-functions.html\n\n','','http://dev.mysql.com/doc/refman/5.1/en/information-functions.html'),(249,'LAST_DAY',31,'Syntax:\nLAST_DAY(date)\n\nTakes a date or datetime value and returns the corresponding value for\nthe last day of the month. Returns NULL if the argument is invalid.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/date-and-time-functions.html\n\n','mysql> SELECT LAST_DAY(\'2003-02-05\');\n -> \'2003-02-28\'\nmysql> SELECT LAST_DAY(\'2004-02-05\');\n -> \'2004-02-29\'\nmysql> SELECT LAST_DAY(\'2004-01-01 01:01:01\');\n -> \'2004-01-31\'\nmysql> SELECT LAST_DAY(\'2003-03-32\');\n -> NULL\n','http://dev.mysql.com/doc/refman/5.1/en/date-and-time-functions.html'),(250,'MEDIUMINT',22,'MEDIUMINT[(M)] [UNSIGNED] [ZEROFILL]\n\nA medium-sized integer. The signed range is -8388608 to 8388607. The\nunsigned range is 0 to 16777215.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/numeric-type-overview.html\n\n','','http://dev.mysql.com/doc/refman/5.1/en/numeric-type-overview.html'),(251,'FLOOR',4,'Syntax:\nFLOOR(X)\n\nReturns the largest integer value not greater than X.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/mathematical-functions.html\n\n','mysql> SELECT FLOOR(1.23);\n -> 1\nmysql> SELECT FLOOR(-1.23);\n -> -2\n','http://dev.mysql.com/doc/refman/5.1/en/mathematical-functions.html'),(252,'RTRIM',36,'Syntax:\nRTRIM(str)\n\nReturns the string str with trailing space characters removed.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/string-functions.html\n\n','mysql> SELECT RTRIM(\'barbar \');\n -> \'barbar\'\n','http://dev.mysql.com/doc/refman/5.1/en/string-functions.html'),(253,'EXPLAIN',28,'Syntax:\nEXPLAIN tbl_name\n\nOr:\n\nEXPLAIN [EXTENDED | PARTITIONS] SELECT select_options\n\nThe EXPLAIN statement can be used either as a synonym for DESCRIBE or\nas a way to obtain information about how MySQL executes a SELECT\nstatement:\n\no EXPLAIN tbl_name is synonymous with DESCRIBE tbl_name or SHOW COLUMNS\n FROM tbl_name.\n\n For a description of the DESCRIBE and SHOW COLUMNS statements, see\n [HELP DESCRIBE], and [HELP SHOW COLUMNS].\n\no When you precede a SELECT statement with the keyword EXPLAIN, MySQL\n displays information from the optimizer about the query execution\n plan. That is, MySQL explains how it would process the SELECT,\n including information about how tables are joined and in which order.\n EXPLAIN EXTENDED can be used to provide additional information.\n\n For information regarding the use of EXPLAIN and EXPLAIN EXTENDED for\n obtaining query execution plan information, see\n http://dev.mysql.com/doc/refman/5.1/en/using-explain.html.\n\no EXPLAIN PARTITIONS is available beginning with MySQL 5.1.5. It is\n useful only when examining queries involving partitioned tables.\n\n For details, see\n http://dev.mysql.com/doc/refman/5.1/en/partitioning-info.html.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/explain.html\n\n','','http://dev.mysql.com/doc/refman/5.1/en/explain.html'),(254,'DEGREES',4,'Syntax:\nDEGREES(X)\n\nReturns the argument X, converted from radians to degrees.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/mathematical-functions.html\n\n','mysql> SELECT DEGREES(PI());\n -> 180\nmysql> SELECT DEGREES(PI() / 2);\n -> 90\n','http://dev.mysql.com/doc/refman/5.1/en/mathematical-functions.html'),(255,'VARCHAR',22,'[NATIONAL] VARCHAR(M) [CHARACTER SET charset_name] [COLLATE\ncollation_name]\n\nA variable-length string. M represents the maximum column length in\ncharacters. The range of M is 0 to 65,535. The effective maximum length\nof a VARCHAR is subject to the maximum row size (65,535 bytes, which is\nshared among all columns) and the character set used. For example, utf8\ncharacters can require up to three bytes per character, so a VARCHAR\ncolumn that uses the utf8 character set can be declared to be a maximum\nof 21,844 characters.\n\nMySQL stores VARCHAR values as a one-byte or two-byte length prefix\nplus data. The length prefix indicates the number of bytes in the\nvalue. A VARCHAR column uses one length byte if values require no more\nthan 255 bytes, two length bytes if values may require more than 255\nbytes.\n\n*Note*: MySQL 5.1 follows the standard SQL specification, and does not\nremove trailing spaces from VARCHAR values.\n\nVARCHAR is shorthand for CHARACTER VARYING. NATIONAL VARCHAR is the\nstandard SQL way to define that a VARCHAR column should use some\npredefined character set. MySQL 4.1 and up uses utf8 as this predefined\ncharacter set.\nhttp://dev.mysql.com/doc/refman/5.1/en/charset-national.html. NVARCHAR\nis shorthand for NATIONAL VARCHAR.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/string-type-overview.html\n\n','','http://dev.mysql.com/doc/refman/5.1/en/string-type-overview.html'),(256,'UNHEX',36,'Syntax:\n\nUNHEX(str)\n\nPerforms the inverse operation of HEX(str). That is, it interprets each\npair of hexadecimal digits in the argument as a number and converts it\nto the character represented by the number. The resulting characters\nare returned as a binary string.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/string-functions.html\n\n','mysql> SELECT UNHEX(\'4D7953514C\');\n -> \'MySQL\'\nmysql> SELECT 0x4D7953514C;\n -> \'MySQL\'\nmysql> SELECT UNHEX(HEX(\'string\'));\n -> \'string\'\nmysql> SELECT HEX(UNHEX(\'1267\'));\n -> \'1267\'\n','http://dev.mysql.com/doc/refman/5.1/en/string-functions.html'),(257,'- UNARY',4,'Syntax:\n-\n\nUnary minus. This operator changes the sign of the argument.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/arithmetic-functions.html\n\n','mysql> SELECT - 2;\n -> -2\n','http://dev.mysql.com/doc/refman/5.1/en/arithmetic-functions.html'),(258,'SELECT INTO',23,'Syntax:\nSELECT col_name [, col_name] ...\n INTO var_name [, var_name] ...\n table_expr\n\nSELECT ... INTO syntax enables selected columns to be stored directly\ninto variables. The query should return a single row. If the query\nreturns no rows, a warning with error code 1329 occurs (No data), and\nthe variable values remain unchanged. If the query returns multiple\nrows, error 1172 occurs (Result consisted of more than one row). If it\nis possible that the statement may retrieve multiple rows, you can use\nLIMIT 1 to limit the result set to a single row.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/select-into-statement.html\n\n','SELECT id,data INTO x,y FROM test.t1 LIMIT 1;\n','http://dev.mysql.com/doc/refman/5.1/en/select-into-statement.html'),(259,'STD',16,'Syntax:\nSTD(expr)\n\nReturns the population standard deviation of expr. This is an extension\nto standard SQL. The standard SQL function STDDEV_POP() can be used\ninstead.\n\nThis function returns NULL if there were no matching rows.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/group-by-functions.html\n\n','','http://dev.mysql.com/doc/refman/5.1/en/group-by-functions.html'),(260,'COS',4,'Syntax:\nCOS(X)\n\nReturns the cosine of X, where X is given in radians.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/mathematical-functions.html\n\n','mysql> SELECT COS(PI());\n -> -1\n','http://dev.mysql.com/doc/refman/5.1/en/mathematical-functions.html'),(261,'DATE FUNCTION',31,'Syntax:\nDATE(expr)\n\nExtracts the date part of the date or datetime expression expr.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/date-and-time-functions.html\n\n','mysql> SELECT DATE(\'2003-12-31 01:02:03\');\n -> \'2003-12-31\'\n','http://dev.mysql.com/doc/refman/5.1/en/date-and-time-functions.html'),(262,'DROP TRIGGER',38,'Syntax:\nDROP TRIGGER [IF EXISTS] [schema_name.]trigger_name\n\nThis statement drops a trigger. The schema (database) name is optional.\nIf the schema is omitted, the trigger is dropped from the default\nschema. DROP TRIGGER was added in MySQL 5.0.2. Its use requires the\nTRIGGER privilege for the table associated with the trigger. (This\nstatement requires the SUPER privilege prior to MySQL 5.1.6.)\n\nUse IF EXISTS to prevent an error from occurring for a trigger that\ndoes not exist. A NOTE is generated for a nonexistent trigger when\nusing IF EXISTS. See [HELP SHOW WARNINGS]. The IF EXISTS clause was\nadded in MySQL 5.1.14.\n\nTriggers for a table are also dropped if you drop the table.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/drop-trigger.html\n\n','','http://dev.mysql.com/doc/refman/5.1/en/drop-trigger.html'),(263,'RESET MASTER',26,'Syntax:\nRESET MASTER\n\nDeletes all binary log files listed in the index file, resets the\nbinary log index file to be empty, and creates a new binary log file.\nThis statement is intended to be used only when the master is started\nfor the first time.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/reset-master.html\n\n','','http://dev.mysql.com/doc/refman/5.1/en/reset-master.html'),(264,'TAN',4,'Syntax:\nTAN(X)\n\nReturns the tangent of X, where X is given in radians.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/mathematical-functions.html\n\n','mysql> SELECT TAN(PI());\n -> -1.2246063538224e-16\nmysql> SELECT TAN(PI()+1);\n -> 1.5574077246549\n','http://dev.mysql.com/doc/refman/5.1/en/mathematical-functions.html'),(265,'PI',4,'Syntax:\nPI()\n\nReturns the value of π (pi). The default number of decimal places\ndisplayed is seven, but MySQL uses the full double-precision value\ninternally.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/mathematical-functions.html\n\n','mysql> SELECT PI();\n -> 3.141593\nmysql> SELECT PI()+0.000000000000000000;\n -> 3.141592653589793116\n','http://dev.mysql.com/doc/refman/5.1/en/mathematical-functions.html'),(266,'WEEKOFYEAR',31,'Syntax:\nWEEKOFYEAR(date)\n\nReturns the calendar week of the date as a number in the range from 1\nto 53. WEEKOFYEAR() is a compatibility function that is equivalent to\nWEEK(date,3).\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/date-and-time-functions.html\n\n','mysql> SELECT WEEKOFYEAR(\'2008-02-20\');\n -> 8\n','http://dev.mysql.com/doc/refman/5.1/en/date-and-time-functions.html'),(267,'/',4,'Syntax:\n/\n\nDivision:\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/arithmetic-functions.html\n\n','mysql> SELECT 3/5;\n -> 0.60\n','http://dev.mysql.com/doc/refman/5.1/en/arithmetic-functions.html'),(268,'PURGE BINARY LOGS',26,'Syntax:\nPURGE { BINARY | MASTER } LOGS\n { TO \'log_name\' | BEFORE datetime_expr }\n\nThe binary log is a set of files that contain information about data\nmodifications made by the MySQL server. The log consists of a set of\nbinary log files, plus an index file (see\nhttp://dev.mysql.com/doc/refman/5.1/en/binary-log.html).\n\nThe PURGE BINARY LOGS statement deletes all the binary log files listed\nin the log index file prior to the specified log file name or date.\nBINARY and MASTER are synonyms. Deleted log files also are removed from\nthe list recorded in the index file, so that the given log file becomes\nthe first in the list.\n\nThis statement has no effect if the server was not started with the\n--log-bin option to enable binary logging.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/purge-binary-logs.html\n\n','PURGE BINARY LOGS TO \'mysql-bin.010\';\nPURGE BINARY LOGS BEFORE \'2008-04-02 22:46:26\';\n','http://dev.mysql.com/doc/refman/5.1/en/purge-binary-logs.html'),(269,'STDDEV_SAMP',16,'Syntax:\nSTDDEV_SAMP(expr)\n\nReturns the sample standard deviation of expr (the square root of\nVAR_SAMP().\n\nSTDDEV_SAMP() returns NULL if there were no matching rows.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/group-by-functions.html\n\n','','http://dev.mysql.com/doc/refman/5.1/en/group-by-functions.html'),(270,'SCHEMA',17,'Syntax:\nSCHEMA()\n\nThis function is a synonym for DATABASE().\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/information-functions.html\n\n','','http://dev.mysql.com/doc/refman/5.1/en/information-functions.html'),(271,'MLINEFROMWKB',32,'MLineFromWKB(wkb[,srid]), MultiLineStringFromWKB(wkb[,srid])\n\nConstructs a MULTILINESTRING value using its WKB representation and\nSRID.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/creating-spatial-values.html#gis-wkb-functions\n\n','','http://dev.mysql.com/doc/refman/5.1/en/creating-spatial-values.html#gis-wkb-functions'),(272,'LOG2',4,'Syntax:\nLOG2(X)\n\nReturns the base-2 logarithm of X.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/mathematical-functions.html\n\n','mysql> SELECT LOG2(65536);\n -> 16\nmysql> SELECT LOG2(-100);\n -> NULL\n','http://dev.mysql.com/doc/refman/5.1/en/mathematical-functions.html'),(273,'SUBTIME',31,'Syntax:\nSUBTIME(expr1,expr2)\n\nSUBTIME() returns expr1 - expr2 expressed as a value in the same format\nas expr1. expr1 is a time or datetime expression, and expr2 is a time\nexpression.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/date-and-time-functions.html\n\n','mysql> SELECT SUBTIME(\'2007-12-31 23:59:59.999999\',\'1 1:1:1.000002\');\n -> \'2007-12-30 22:58:58.999997\'\nmysql> SELECT SUBTIME(\'01:00:00.999999\', \'02:00:00.999998\');\n -> \'-00:59:59.999999\'\n','http://dev.mysql.com/doc/refman/5.1/en/date-and-time-functions.html'),(274,'UNCOMPRESSED_LENGTH',12,'Syntax:\nUNCOMPRESSED_LENGTH(compressed_string)\n\nReturns the length that the compressed string had before being\ncompressed.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/encryption-functions.html\n\n','mysql> SELECT UNCOMPRESSED_LENGTH(COMPRESS(REPEAT(\'a\',30)));\n -> 30\n','http://dev.mysql.com/doc/refman/5.1/en/encryption-functions.html'),(275,'DROP TABLE',38,'Syntax:\nDROP [TEMPORARY] TABLE [IF EXISTS]\n tbl_name [, tbl_name] ...\n [RESTRICT | CASCADE]\n\nDROP TABLE removes one or more tables. You must have the DROP privilege\nfor each table. All table data and the table definition are removed, so\nbe careful with this statement! If any of the tables named in the\nargument list do not exist, MySQL returns an error indicating by name\nwhich nonexisting tables it was unable to drop, but it also drops all\nof the tables in the list that do exist.\n\n*Important*: When a table is dropped, user privileges on the table are\nnot automatically dropped. See [HELP GRANT].\n\nNote that for a partitioned table, DROP TABLE permanently removes the\ntable definition, all of its partitions, and all of the data which was\nstored in those partitions. It also removes the partitioning definition\n(.par) file associated with the dropped table.\n\nUse IF EXISTS to prevent an error from occurring for tables that do not\nexist. A NOTE is generated for each nonexistent table when using IF\nEXISTS. See [HELP SHOW WARNINGS].\n\nRESTRICT and CASCADE are allowed to make porting easier. In MySQL 5.1,\nthey do nothing.\n\n*Note*: DROP TABLE automatically commits the current active\ntransaction, unless you use the TEMPORARY keyword.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/drop-table.html\n\n','','http://dev.mysql.com/doc/refman/5.1/en/drop-table.html'),(276,'POW',4,'Syntax:\nPOW(X,Y)\n\nReturns the value of X raised to the power of Y.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/mathematical-functions.html\n\n','mysql> SELECT POW(2,2);\n -> 4\nmysql> SELECT POW(2,-2);\n -> 0.25\n','http://dev.mysql.com/doc/refman/5.1/en/mathematical-functions.html'),(277,'SHOW CREATE TABLE',26,'Syntax:\nSHOW CREATE TABLE tbl_name\n\nShows the CREATE TABLE statement that creates the given table. The\nstatement requires the SELECT privilege for the table. This statement\nalso works with views.\nSHOW CREATE TABLE quotes table and column names according to the value\nof the sql_quote_show_create option. See\nhttp://dev.mysql.com/doc/refman/5.1/en/server-system-variables.html.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/show-create-table.html\n\n','mysql> SHOW CREATE TABLE t\\G\n*************************** 1. row ***************************\n Table: t\nCreate Table: CREATE TABLE t (\n id INT(11) default NULL auto_increment,\n s char(60) default NULL,\n PRIMARY KEY (id)\n) ENGINE=MyISAM\n','http://dev.mysql.com/doc/refman/5.1/en/show-create-table.html'),(278,'DUAL',27,'You are allowed to specify DUAL as a dummy table name in situations\nwhere no tables are referenced:\n\nmysql> SELECT 1 + 1 FROM DUAL;\n -> 2\n\nDUAL is purely for the convenience of people who require that all\nSELECT statements should have FROM and possibly other clauses. MySQL\nmay ignore the clauses. MySQL does not require FROM DUAL if no tables\nare referenced.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/select.html\n\n','','http://dev.mysql.com/doc/refman/5.1/en/select.html'),(279,'INSTR',36,'Syntax:\nINSTR(str,substr)\n\nReturns the position of the first occurrence of substring substr in\nstring str. This is the same as the two-argument form of LOCATE(),\nexcept that the order of the arguments is reversed.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/string-functions.html\n\n','mysql> SELECT INSTR(\'foobarbar\', \'bar\');\n -> 4\nmysql> SELECT INSTR(\'xbar\', \'foobar\');\n -> 0\n','http://dev.mysql.com/doc/refman/5.1/en/string-functions.html'),(280,'NOW',31,'Syntax:\nNOW()\n\nReturns the current date and time as a value in \'YYYY-MM-DD HH:MM:SS\'\nor YYYYMMDDHHMMSS.uuuuuu format, depending on whether the function is\nused in a string or numeric context. The value is expressed in the\ncurrent time zone.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/date-and-time-functions.html\n\n','mysql> SELECT NOW();\n -> \'2007-12-15 23:50:26\'\nmysql> SELECT NOW() + 0;\n -> 20071215235026.000000\n','http://dev.mysql.com/doc/refman/5.1/en/date-and-time-functions.html'),(281,'SHOW ENGINES',26,'Syntax:\nSHOW [STORAGE] ENGINES\n\nSHOW ENGINES displays status information about the server\'s storage\nengines. This is particularly useful for checking whether a storage\nengine is supported, or to see what the default engine is. SHOW TABLE\nTYPES is a synonym, but is deprecated and is removed in MySQL 5.5.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/show-engines.html\n\n','','http://dev.mysql.com/doc/refman/5.1/en/show-engines.html'),(282,'>=',18,'Syntax:\n>=\n\nGreater than or equal:\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/comparison-operators.html\n\n','mysql> SELECT 2 >= 2;\n -> 1\n','http://dev.mysql.com/doc/refman/5.1/en/comparison-operators.html'),(283,'EXP',4,'Syntax:\nEXP(X)\n\nReturns the value of e (the base of natural logarithms) raised to the\npower of X. The inverse of this function is LOG() (using a single\nargument only) or LN().\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/mathematical-functions.html\n\n','mysql> SELECT EXP(2);\n -> 7.3890560989307\nmysql> SELECT EXP(-2);\n -> 0.13533528323661\nmysql> SELECT EXP(0);\n -> 1\n','http://dev.mysql.com/doc/refman/5.1/en/mathematical-functions.html'),(284,'LONGBLOB',22,'LONGBLOB\n\nA BLOB column with a maximum length of 4,294,967,295 or 4GB (232 - 1)\nbytes. The effective maximum length of LONGBLOB columns depends on the\nconfigured maximum packet size in the client/server protocol and\navailable memory. Each LONGBLOB value is stored using a four-byte\nlength prefix that indicates the number of bytes in the value.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/string-type-overview.html\n\n','','http://dev.mysql.com/doc/refman/5.1/en/string-type-overview.html'),(285,'POINTN',13,'PointN(ls,N)\n\nReturns the N-th Point in the Linestring value ls. Points are numbered\nbeginning with 1.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/geometry-property-functions.html#linestring-property-functions\n\n','mysql> SET @ls = \'LineString(1 1,2 2,3 3)\';\nmysql> SELECT AsText(PointN(GeomFromText(@ls),2));\n+-------------------------------------+\n| AsText(PointN(GeomFromText(@ls),2)) |\n+-------------------------------------+\n| POINT(2 2) |\n+-------------------------------------+\n','http://dev.mysql.com/doc/refman/5.1/en/geometry-property-functions.html#linestring-property-functions'),(286,'YEAR DATA TYPE',22,'YEAR[(2|4)]\n\nA year in two-digit or four-digit format. The default is four-digit\nformat. In four-digit format, the allowable values are 1901 to 2155,\nand 0000. In two-digit format, the allowable values are 70 to 69,\nrepresenting years from 1970 to 2069. MySQL displays YEAR values in\nYYYY format, but allows you to assign values to YEAR columns using\neither strings or numbers.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/date-and-time-type-overview.html\n\n','','http://dev.mysql.com/doc/refman/5.1/en/date-and-time-type-overview.html'),(287,'SUM',16,'Syntax:\nSUM([DISTINCT] expr)\n\nReturns the sum of expr. If the return set has no rows, SUM() returns\nNULL. The DISTINCT keyword can be used in MySQL 5.1 to sum only the\ndistinct values of expr.\n\nSUM() returns NULL if there were no matching rows.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/group-by-functions.html\n\n','','http://dev.mysql.com/doc/refman/5.1/en/group-by-functions.html'),(288,'OCT',4,'Syntax:\nOCT(N)\n\nReturns a string representation of the octal value of N, where N is a\nlonglong (BIGINT) number. This is equivalent to CONV(N,10,8). Returns\nNULL if N is NULL.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/mathematical-functions.html\n\n','mysql> SELECT OCT(12);\n -> \'14\'\n','http://dev.mysql.com/doc/refman/5.1/en/mathematical-functions.html'),(289,'SYSDATE',31,'Syntax:\nSYSDATE()\n\nReturns the current date and time as a value in \'YYYY-MM-DD HH:MM:SS\'\nor YYYYMMDDHHMMSS.uuuuuu format, depending on whether the function is\nused in a string or numeric context.\n\nSYSDATE() returns the time at which it executes. This differs from the\nbehavior for NOW(), which returns a constant time that indicates the\ntime at which the statement began to execute. (Within a stored function\nor trigger, NOW() returns the time at which the function or triggering\nstatement began to execute.)\n\nmysql> SELECT NOW(), SLEEP(2), NOW();\n+---------------------+----------+---------------------+\n| NOW() | SLEEP(2) | NOW() |\n+---------------------+----------+---------------------+\n| 2006-04-12 13:47:36 | 0 | 2006-04-12 13:47:36 |\n+---------------------+----------+---------------------+\n\nmysql> SELECT SYSDATE(), SLEEP(2), SYSDATE();\n+---------------------+----------+---------------------+\n| SYSDATE() | SLEEP(2) | SYSDATE() |\n+---------------------+----------+---------------------+\n| 2006-04-12 13:47:44 | 0 | 2006-04-12 13:47:46 |\n+---------------------+----------+---------------------+\n\nIn addition, the SET TIMESTAMP statement affects the value returned by\nNOW() but not by SYSDATE(). This means that timestamp settings in the\nbinary log have no effect on invocations of SYSDATE().\n\nBecause SYSDATE() can return different values even within the same\nstatement, and is not affected by SET TIMESTAMP, it is nondeterministic\nand therefore unsafe for replication if statement-based binary logging\nis used. If that is a problem, you can use row-based logging.\n\nAlternatively, you can use the --sysdate-is-now option to cause\nSYSDATE() to be an alias for NOW(). This works if the option is used on\nboth the master and the slave.\n\nThe nondeterministic nature of SYSDATE() also means that indexes cannot\nbe used for evaluating expressions that refer to it.\n\nBeginning with MySQL 5.1.42, a warning is logged if you use this\nfunction when binlog_format is set to STATEMENT. (Bug#47995\n(http://bugs.mysql.com/bug.php?id=47995))\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/date-and-time-functions.html\n\n','','http://dev.mysql.com/doc/refman/5.1/en/date-and-time-functions.html'),(290,'UNINSTALL PLUGIN',5,'Syntax:\nUNINSTALL PLUGIN plugin_name\n\nThis statement removes an installed server plugin. It requires the\nDELETE privilege for the mysql.plugin table.\n\nplugin_name must be the name of some plugin that is listed in the\nmysql.plugin table. The server executes the plugin\'s deinitialization\nfunction and removes the row for the plugin from the mysql.plugin\ntable, so that subsequent server restarts will not load and initialize\nthe plugin. UNINSTALL PLUGIN does not remove the plugin\'s shared\nlibrary file.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/uninstall-plugin.html\n\n','','http://dev.mysql.com/doc/refman/5.1/en/uninstall-plugin.html'),(291,'ASBINARY',32,'AsBinary(g), AsWKB(g)\n\nConverts a value in internal geometry format to its WKB representation\nand returns the binary result.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/functions-to-convert-geometries-between-formats.html\n\n','SELECT AsBinary(g) FROM geom;\n','http://dev.mysql.com/doc/refman/5.1/en/functions-to-convert-geometries-between-formats.html'),(292,'REPEAT FUNCTION',36,'Syntax:\nREPEAT(str,count)\n\nReturns a string consisting of the string str repeated count times. If\ncount is less than 1, returns an empty string. Returns NULL if str or\ncount are NULL.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/string-functions.html\n\n','mysql> SELECT REPEAT(\'MySQL\', 3);\n -> \'MySQLMySQLMySQL\'\n','http://dev.mysql.com/doc/refman/5.1/en/string-functions.html'),(293,'SHOW TABLES',26,'Syntax:\nSHOW [FULL] TABLES [{FROM | IN} db_name]\n [LIKE \'pattern\' | WHERE expr]\n\nSHOW TABLES lists the non-TEMPORARY tables in a given database. You can\nalso get this list using the mysqlshow db_name command. The LIKE\nclause, if present, indicates which table names to match. The WHERE\nclause can be given to select rows using more general conditions, as\ndiscussed in http://dev.mysql.com/doc/refman/5.1/en/extended-show.html.\n\nThis statement also lists any views in the database. The FULL modifier\nis supported such that SHOW FULL TABLES displays a second output\ncolumn. Values for the second column are BASE TABLE for a table and\nVIEW for a view.\n\nIf you have no privileges for a base table or view, it does not show up\nin the output from SHOW TABLES or mysqlshow db_name.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/show-tables.html\n\n','','http://dev.mysql.com/doc/refman/5.1/en/show-tables.html'),(294,'MAKEDATE',31,'Syntax:\nMAKEDATE(year,dayofyear)\n\nReturns a date, given year and day-of-year values. dayofyear must be\ngreater than 0 or the result is NULL.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/date-and-time-functions.html\n\n','mysql> SELECT MAKEDATE(2011,31), MAKEDATE(2011,32);\n -> \'2011-01-31\', \'2011-02-01\'\nmysql> SELECT MAKEDATE(2011,365), MAKEDATE(2014,365);\n -> \'2011-12-31\', \'2014-12-31\'\nmysql> SELECT MAKEDATE(2011,0);\n -> NULL\n','http://dev.mysql.com/doc/refman/5.1/en/date-and-time-functions.html'),(295,'BINARY OPERATOR',36,'Syntax:\nBINARY\n\nThe BINARY operator casts the string following it to a binary string.\nThis is an easy way to force a column comparison to be done byte by\nbyte rather than character by character. This causes the comparison to\nbe case sensitive even if the column isn\'t defined as BINARY or BLOB.\nBINARY also causes trailing spaces to be significant.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/cast-functions.html\n\n','mysql> SELECT \'a\' = \'A\';\n -> 1\nmysql> SELECT BINARY \'a\' = \'A\';\n -> 0\nmysql> SELECT \'a\' = \'a \';\n -> 1\nmysql> SELECT BINARY \'a\' = \'a \';\n -> 0\n','http://dev.mysql.com/doc/refman/5.1/en/cast-functions.html'),(296,'MBROVERLAPS',6,'MBROverlaps(g1,g2)\n\nReturns 1 or 0 to indicate whether the Minimum Bounding Rectangles of\nthe two geometries g1 and g2 overlap. The term spatially overlaps is\nused if two geometries intersect and their intersection results in a\ngeometry of the same dimension but not equal to either of the given\ngeometries.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/relations-on-geometry-mbr.html\n\n','','http://dev.mysql.com/doc/refman/5.1/en/relations-on-geometry-mbr.html'),(297,'SOUNDEX',36,'Syntax:\nSOUNDEX(str)\n\nReturns a soundex string from str. Two strings that sound almost the\nsame should have identical soundex strings. A standard soundex string\nis four characters long, but the SOUNDEX() function returns an\narbitrarily long string. You can use SUBSTRING() on the result to get a\nstandard soundex string. All nonalphabetic characters in str are\nignored. All international alphabetic characters outside the A-Z range\nare treated as vowels.\n\n*Important*: When using SOUNDEX(), you should be aware of the following\nlimitations:\n\no This function, as currently implemented, is intended to work well\n with strings that are in the English language only. Strings in other\n languages may not produce reliable results.\n\no This function is not guaranteed to provide consistent results with\n strings that use multi-byte character sets, including utf-8.\n\n We hope to remove these limitations in a future release. See\n Bug#22638 (http://bugs.mysql.com/bug.php?id=22638) for more\n information.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/string-functions.html\n\n','mysql> SELECT SOUNDEX(\'Hello\');\n -> \'H400\'\nmysql> SELECT SOUNDEX(\'Quadratically\');\n -> \'Q36324\'\n','http://dev.mysql.com/doc/refman/5.1/en/string-functions.html'),(298,'MBRTOUCHES',6,'MBRTouches(g1,g2)\n\nReturns 1 or 0 to indicate whether the Minimum Bounding Rectangles of\nthe two geometries g1 and g2 touch. Two geometries spatially touch if\nthe interiors of the geometries do not intersect, but the boundary of\none of the geometries intersects either the boundary or the interior of\nthe other.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/relations-on-geometry-mbr.html\n\n','','http://dev.mysql.com/doc/refman/5.1/en/relations-on-geometry-mbr.html'),(299,'DROP EVENT',38,'Syntax:\nDROP EVENT [IF EXISTS] event_name\n\nThis statement drops the event named event_name. The event immediately\nceases being active, and is deleted completely from the server.\n\nIf the event does not exist, the error ERROR 1517 (HY000): Unknown\nevent \'event_name\' results. You can override this and cause the\nstatement to generate a warning for nonexistent events instead using IF\nEXISTS.\n\nBeginning with MySQL 5.1.12, this statement requires the EVENT\nprivilege for the schema to which the event to be dropped belongs. (In\nMySQL 5.1.11 and earlier, an event could be dropped only by its\ndefiner, or by a user having the SUPER privilege.)\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/drop-event.html\n\n','','http://dev.mysql.com/doc/refman/5.1/en/drop-event.html'),(300,'INSERT SELECT',27,'Syntax:\nINSERT [LOW_PRIORITY | HIGH_PRIORITY] [IGNORE]\n [INTO] tbl_name [(col_name,...)]\n SELECT ...\n [ ON DUPLICATE KEY UPDATE col_name=expr, ... ]\n\nWith INSERT ... SELECT, you can quickly insert many rows into a table\nfrom one or many tables. For example:\n\nINSERT INTO tbl_temp2 (fld_id)\n SELECT tbl_temp1.fld_order_id\n FROM tbl_temp1 WHERE tbl_temp1.fld_order_id > 100;\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/insert-select.html\n\n','','http://dev.mysql.com/doc/refman/5.1/en/insert-select.html'),(301,'CREATE PROCEDURE',38,'Syntax:\nCREATE\n [DEFINER = { user | CURRENT_USER }]\n PROCEDURE sp_name ([proc_parameter[,...]])\n [characteristic ...] routine_body\n\nCREATE\n [DEFINER = { user | CURRENT_USER }]\n FUNCTION sp_name ([func_parameter[,...]])\n RETURNS type\n [characteristic ...] routine_body\n\nproc_parameter:\n [ IN | OUT | INOUT ] param_name type\n\nfunc_parameter:\n param_name type\n\ntype:\n Any valid MySQL data type\n\ncharacteristic:\n COMMENT \'string\'\n | LANGUAGE SQL\n | [NOT] DETERMINISTIC\n | { CONTAINS SQL | NO SQL | READS SQL DATA | MODIFIES SQL DATA }\n | SQL SECURITY { DEFINER | INVOKER }\n\nroutine_body:\n Valid SQL routine statement\n\nThese statements create stored routines. By default, a routine is\nassociated with the default database. To associate the routine\nexplicitly with a given database, specify the name as db_name.sp_name\nwhen you create it.\n\nThe CREATE FUNCTION statement is also used in MySQL to support UDFs\n(user-defined functions). See\nhttp://dev.mysql.com/doc/refman/5.1/en/adding-functions.html. A UDF can\nbe regarded as an external stored function. Stored functions share\ntheir namespace with UDFs. See\nhttp://dev.mysql.com/doc/refman/5.1/en/function-resolution.html, for\nthe rules describing how the server interprets references to different\nkinds of functions.\n\nTo invoke a stored procedure, use the CALL statement (see [HELP CALL]).\nTo invoke a stored function, refer to it in an expression. The function\nreturns a value during expression evaluation.\n\nCREATE PROCEDURE and CREATE FUNCTION require the CREATE ROUTINE\nprivilege. They might also require the SUPER privilege, depending on\nthe DEFINER value, as described later in this section. If binary\nlogging is enabled, CREATE FUNCTION might require the SUPER privilege,\nas described in\nhttp://dev.mysql.com/doc/refman/5.1/en/stored-programs-logging.html.\n\nBy default, MySQL automatically grants the ALTER ROUTINE and EXECUTE\nprivileges to the routine creator. This behavior can be changed by\ndisabling the automatic_sp_privileges system variable. See\nhttp://dev.mysql.com/doc/refman/5.1/en/stored-routines-privileges.html.\n\nThe DEFINER and SQL SECURITY clauses specify the security context to be\nused when checking access privileges at routine execution time, as\ndescribed later in this section.\n\nIf the routine name is the same as the name of a built-in SQL function,\na syntax error occurs unless you use a space between the name and the\nfollowing parenthesis when defining the routine or invoking it later.\nFor this reason, avoid using the names of existing SQL functions for\nyour own stored routines.\n\nThe IGNORE_SPACE SQL mode applies to built-in functions, not to stored\nroutines. It is always allowable to have spaces after a stored routine\nname, regardless of whether IGNORE_SPACE is enabled.\n\nThe parameter list enclosed within parentheses must always be present.\nIf there are no parameters, an empty parameter list of () should be\nused. Parameter names are not case sensitive.\n\nEach parameter is an IN parameter by default. To specify otherwise for\na parameter, use the keyword OUT or INOUT before the parameter name.\n\n*Note*: Specifying a parameter as IN, OUT, or INOUT is valid only for a\nPROCEDURE. For a FUNCTION, parameters are always regarded as IN\nparameters.\n\nAn IN parameter passes a value into a procedure. The procedure might\nmodify the value, but the modification is not visible to the caller\nwhen the procedure returns. An OUT parameter passes a value from the\nprocedure back to the caller. Its initial value is NULL within the\nprocedure, and its value is visible to the caller when the procedure\nreturns. An INOUT parameter is initialized by the caller, can be\nmodified by the procedure, and any change made by the procedure is\nvisible to the caller when the procedure returns.\n\nFor each OUT or INOUT parameter, pass a user-defined variable in the\nCALL statement that invokes the procedure so that you can obtain its\nvalue when the procedure returns. If you are calling the procedure from\nwithin another stored procedure or function, you can also pass a\nroutine parameter or local routine variable as an IN or INOUT\nparameter.\n\nThe following example shows a simple stored procedure that uses an OUT\nparameter:\n\nmysql> delimiter //\n\nmysql> CREATE PROCEDURE simpleproc (OUT param1 INT)\n -> BEGIN\n -> SELECT COUNT(*) INTO param1 FROM t;\n -> END//\nQuery OK, 0 rows affected (0.00 sec)\n\nmysql> delimiter ;\n\nmysql> CALL simpleproc(@a);\nQuery OK, 0 rows affected (0.00 sec)\n\nmysql> SELECT @a;\n+------+\n| @a |\n+------+\n| 3 |\n+------+\n1 row in set (0.00 sec)\n\nThe example uses the mysql client delimiter command to change the\nstatement delimiter from ; to // while the procedure is being defined.\nThis allows the ; delimiter used in the procedure body to be passed\nthrough to the server rather than being interpreted by mysql itself.\nSee\nhttp://dev.mysql.com/doc/refman/5.1/en/stored-programs-defining.html.\n\nThe RETURNS clause may be specified only for a FUNCTION, for which it\nis mandatory. It indicates the return type of the function, and the\nfunction body must contain a RETURN value statement. If the RETURN\nstatement returns a value of a different type, the value is coerced to\nthe proper type. For example, if a function specifies an ENUM or SET\nvalue in the RETURNS clause, but the RETURN statement returns an\ninteger, the value returned from the function is the string for the\ncorresponding ENUM member of set of SET members.\n\nThe following example function takes a parameter, performs an operation\nusing an SQL function, and returns the result. In this case, it is\nunnecessary to use delimiter because the function definition contains\nno internal ; statement delimiters:\n\nmysql> CREATE FUNCTION hello (s CHAR(20))\nmysql> RETURNS CHAR(50) DETERMINISTIC\n -> RETURN CONCAT(\'Hello, \',s,\'!\');\nQuery OK, 0 rows affected (0.00 sec)\n\nmysql> SELECT hello(\'world\');\n+----------------+\n| hello(\'world\') |\n+----------------+\n| Hello, world! |\n+----------------+\n1 row in set (0.00 sec)\n\nParameter types and function return types can be declared to use any\nvalid data type, except that the COLLATE attribute cannot be used.\n\nThe routine_body consists of a valid SQL routine statement. This can be\na simple statement such as SELECT or INSERT, or a compound statement\nwritten using BEGIN and END. Compound statements can contain\ndeclarations, loops, and other control structure statements. The syntax\nfor these statements is described in\nhttp://dev.mysql.com/doc/refman/5.1/en/sql-syntax-compound-statements.h\ntml.\n\nMySQL allows routines to contain DDL statements, such as CREATE and\nDROP. MySQL also allows stored procedures (but not stored functions) to\ncontain SQL transaction statements such as COMMIT. Stored functions may\nnot contain statements that perform explicit or implicit commit or\nrollback. Support for these statements is not required by the SQL\nstandard, which states that each DBMS vendor may decide whether to\nallow them.\n\nStatements that return a result set can be used within a stored\nprocedcure but not within a stored function. This prohibition includes\nSELECT statements that do not have an INTO var_list clause and other\nstatements such as SHOW, EXPLAIN, and CHECK TABLE. For statements that\ncan be determined at function definition time to return a result set, a\nNot allowed to return a result set from a function error occurs\n(ER_SP_NO_RETSET). For statements that can be determined only at\nruntime to return a result set, a PROCEDURE %s can\'t return a result\nset in the given context error occurs (ER_SP_BADSELECT).\n\nUSE statements within stored routines are disallowed. When a routine is\ninvoked, an implicit USE db_name is performed (and undone when the\nroutine terminates). This causes the routine to have the given default\ndatabase while it executes. References to objects in databases other\nthan the routine default database should be qualified with the\nappropriate database name.\n\nFor additional information about statements that are not allowed in\nstored routines, see\nhttp://dev.mysql.com/doc/refman/5.1/en/stored-program-restrictions.html\n.\n\nFor information about invoking stored procedures from within programs\nwritten in a language that has a MySQL interface, see [HELP CALL].\n\nMySQL stores the sql_mode system variable setting that is in effect at\nthe time a routine is created, and always executes the routine with\nthis setting in force, regardless of the server SQL mode in effect when\nthe routine is invoked.\n\nThe switch from the SQL mode of the invoker to that of the routine\noccurs after evaluation of arguments and assignment of the resulting\nvalues to routine parameters. If you define a routine in strict SQL\nmode but invoke it in nonstrict mode, assignment of arguments to\nroutine parameters does not take place in strict mode. If you require\nthat expressions passed to a routine be assigned in strict SQL mode,\nyou should invoke the routine with strict mode in effect.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/create-procedure.html\n\n','','http://dev.mysql.com/doc/refman/5.1/en/create-procedure.html'),(302,'VARBINARY',22,'VARBINARY(M)\n\nThe VARBINARY type is similar to the VARCHAR type, but stores binary\nbyte strings rather than nonbinary character strings. M represents the\nmaximum column length in bytes.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/string-type-overview.html\n\n','','http://dev.mysql.com/doc/refman/5.1/en/string-type-overview.html'),(303,'LOAD INDEX',26,'Syntax:\nLOAD INDEX INTO CACHE\n tbl_index_list [, tbl_index_list] ...\n\ntbl_index_list:\n tbl_name\n [[INDEX|KEY] (index_name[, index_name] ...)]\n [IGNORE LEAVES]\n\nThe LOAD INDEX INTO CACHE statement preloads a table index into the key\ncache to which it has been assigned by an explicit CACHE INDEX\nstatement, or into the default key cache otherwise. LOAD INDEX INTO\nCACHE is used only for MyISAM tables. It is not supported for tables\nhaving user-defined partitioning (see\nhttp://dev.mysql.com/doc/refman/5.1/en/partitioning-limitations.html.)\n\nThe IGNORE LEAVES modifier causes only blocks for the nonleaf nodes of\nthe index to be preloaded.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/load-index.html\n\n','','http://dev.mysql.com/doc/refman/5.1/en/load-index.html'),(304,'UNION',27,'Syntax:\nSELECT ...\nUNION [ALL | DISTINCT] SELECT ...\n[UNION [ALL | DISTINCT] SELECT ...]\n\nUNION is used to combine the result from multiple SELECT statements\ninto a single result set.\n\nThe column names from the first SELECT statement are used as the column\nnames for the results returned. Selected columns listed in\ncorresponding positions of each SELECT statement should have the same\ndata type. (For example, the first column selected by the first\nstatement should have the same type as the first column selected by the\nother statements.)\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/union.html\n\n','','http://dev.mysql.com/doc/refman/5.1/en/union.html'),(305,'TO_DAYS',31,'Syntax:\nTO_DAYS(date)\n\nGiven a date date, returns a day number (the number of days since year\n0).\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/date-and-time-functions.html\n\n','mysql> SELECT TO_DAYS(950501);\n -> 728779\nmysql> SELECT TO_DAYS(\'2007-10-07\');\n -> 733321\n','http://dev.mysql.com/doc/refman/5.1/en/date-and-time-functions.html'),(306,'NOT REGEXP',36,'Syntax:\nexpr NOT REGEXP pat, expr NOT RLIKE pat\n\nThis is the same as NOT (expr REGEXP pat).\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/regexp.html\n\n','','http://dev.mysql.com/doc/refman/5.1/en/regexp.html'),(307,'SHOW INDEX',26,'Syntax:\nSHOW {INDEX | INDEXES | KEYS}\n {FROM | IN} tbl_name\n [{FROM | IN} db_name]\n\nSHOW INDEX returns table index information. The format resembles that\nof the SQLStatistics call in ODBC.\nYou can use db_name.tbl_name as an alternative to the tbl_name FROM\ndb_name syntax. These two statements are equivalent:\n\nSHOW INDEX FROM mytable FROM mydb;\nSHOW INDEX FROM mydb.mytable;\n\nYou can also list a table\'s indexes with the mysqlshow -k db_name\ntbl_name command.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/show-index.html\n\n','','http://dev.mysql.com/doc/refman/5.1/en/show-index.html'),(308,'SHOW CREATE DATABASE',26,'Syntax:\nSHOW CREATE {DATABASE | SCHEMA} db_name\n\nShows the CREATE DATABASE statement that creates the given database.\nSHOW CREATE SCHEMA is a synonym for SHOW CREATE DATABASE.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/show-create-database.html\n\n','mysql> SHOW CREATE DATABASE test\\G\n*************************** 1. row ***************************\n Database: test\nCreate Database: CREATE DATABASE `test`\n /*!40100 DEFAULT CHARACTER SET latin1 */\n\nmysql> SHOW CREATE SCHEMA test\\G\n*************************** 1. row ***************************\n Database: test\nCreate Database: CREATE DATABASE `test`\n /*!40100 DEFAULT CHARACTER SET latin1 */\n','http://dev.mysql.com/doc/refman/5.1/en/show-create-database.html'),(309,'LEAVE',23,'Syntax:\nLEAVE label\n\nThis statement is used to exit the flow control construct that has the\ngiven label. It can be used within BEGIN ... END or loop constructs\n(LOOP, REPEAT, WHILE).\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/leave-statement.html\n\n','','http://dev.mysql.com/doc/refman/5.1/en/leave-statement.html'),(310,'NOT IN',18,'Syntax:\nexpr NOT IN (value,...)\n\nThis is the same as NOT (expr IN (value,...)).\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/comparison-operators.html\n\n','','http://dev.mysql.com/doc/refman/5.1/en/comparison-operators.html'),(311,'!',14,'Syntax:\nNOT, !\n\nLogical NOT. Evaluates to 1 if the operand is 0, to 0 if the operand is\nnonzero, and NOT NULL returns NULL.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/logical-operators.html\n\n','mysql> SELECT NOT 10;\n -> 0\nmysql> SELECT NOT 0;\n -> 1\nmysql> SELECT NOT NULL;\n -> NULL\nmysql> SELECT ! (1+1);\n -> 0\nmysql> SELECT ! 1+1;\n -> 1\n','http://dev.mysql.com/doc/refman/5.1/en/logical-operators.html'),(312,'DECLARE HANDLER',23,'Syntax:\nDECLARE handler_type HANDLER\n FOR condition_value [, condition_value] ...\n statement\n\nhandler_type:\n CONTINUE\n | EXIT\n | UNDO\n\ncondition_value:\n SQLSTATE [VALUE] sqlstate_value\n | condition_name\n | SQLWARNING\n | NOT FOUND\n | SQLEXCEPTION\n | mysql_error_code\n\nThe DECLARE ... HANDLER statement specifies handlers that each may deal\nwith one or more conditions. If one of these conditions occurs, the\nspecified statement is executed. statement can be a simple statement\n(for example, SET var_name = value), or it can be a compound statement\nwritten using BEGIN and END (see [HELP BEGIN END]).\n\nFor a CONTINUE handler, execution of the current program continues\nafter execution of the handler statement. For an EXIT handler,\nexecution terminates for the BEGIN ... END compound statement in which\nthe handler is declared. (This is true even if the condition occurs in\nan inner block.) The UNDO handler type statement is not supported.\n\nIf a condition occurs for which no handler has been declared, the\ndefault action is EXIT.\n\nA condition_value for DECLARE ... HANDLER can be any of the following\nvalues:\n\no An SQLSTATE value (a 5-character string literal) or a MySQL error\n code (a number). You should not use SQLSTATE value \'00000\' or MySQL\n error code 0, because those indicate sucess rather than an error\n condition. For a list of SQLSTATE values and MySQL error codes, see\n http://dev.mysql.com/doc/refman/5.1/en/error-messages-server.html.\n\no A condition name previously specified with DECLARE ... CONDITION. See\n [HELP DECLARE CONDITION].\n\no SQLWARNING is shorthand for the class of SQLSTATE values that begin\n with \'01\'.\n\no NOT FOUND is shorthand for the class of SQLSTATE values that begin\n with \'02\'. This is relevant only within the context of cursors and is\n used to control what happens when a cursor reaches the end of a data\n set. If no more rows are available, a No Data condition occurs with\n SQLSTATE value 02000. To detect this condition, you can set up a\n handler for it (or for a NOT FOUND condition). An example is shown in\n http://dev.mysql.com/doc/refman/5.1/en/cursors.html. This condition\n also occurs for SELECT ... INTO var_list statements that retrieve no\n rows.\n\no SQLEXCEPTION is shorthand for the class of SQLSTATE values that do\n not begin with \'00\', \'01\', or \'02\'.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/declare-handler.html\n\n','mysql> CREATE TABLE test.t (s1 INT, PRIMARY KEY (s1));\nQuery OK, 0 rows affected (0.00 sec)\n\nmysql> delimiter //\n\nmysql> CREATE PROCEDURE handlerdemo ()\n -> BEGIN\n -> DECLARE CONTINUE HANDLER FOR SQLSTATE \'23000\' SET @x2 = 1;\n -> SET @x = 1;\n -> INSERT INTO test.t VALUES (1);\n -> SET @x = 2;\n -> INSERT INTO test.t VALUES (1);\n -> SET @x = 3;\n -> END;\n -> //\nQuery OK, 0 rows affected (0.00 sec)\n\nmysql> CALL handlerdemo()//\nQuery OK, 0 rows affected (0.00 sec)\n\nmysql> SELECT @x//\n +------+\n | @x |\n +------+\n | 3 |\n +------+\n 1 row in set (0.00 sec)\n','http://dev.mysql.com/doc/refman/5.1/en/declare-handler.html'),(313,'DOUBLE',22,'DOUBLE[(M,D)] [UNSIGNED] [ZEROFILL]\n\nA normal-size (double-precision) floating-point number. Allowable\nvalues are -1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and\n2.2250738585072014E-308 to 1.7976931348623157E+308. These are the\ntheoretical limits, based on the IEEE standard. The actual range might\nbe slightly smaller depending on your hardware or operating system.\n\nM is the total number of digits and D is the number of digits following\nthe decimal point. If M and D are omitted, values are stored to the\nlimits allowed by the hardware. A double-precision floating-point\nnumber is accurate to approximately 15 decimal places.\n\nUNSIGNED, if specified, disallows negative values.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/numeric-type-overview.html\n\n','','http://dev.mysql.com/doc/refman/5.1/en/numeric-type-overview.html'),(314,'TIME',22,'TIME\n\nA time. The range is \'-838:59:59\' to \'838:59:59\'. MySQL displays TIME\nvalues in \'HH:MM:SS\' format, but allows assignment of values to TIME\ncolumns using either strings or numbers.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/date-and-time-type-overview.html\n\n','','http://dev.mysql.com/doc/refman/5.1/en/date-and-time-type-overview.html'),(315,'&&',14,'Syntax:\nAND, &&\n\nLogical AND. Evaluates to 1 if all operands are nonzero and not NULL,\nto 0 if one or more operands are 0, otherwise NULL is returned.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/logical-operators.html\n\n','mysql> SELECT 1 && 1;\n -> 1\nmysql> SELECT 1 && 0;\n -> 0\nmysql> SELECT 1 && NULL;\n -> NULL\nmysql> SELECT 0 && NULL;\n -> 0\nmysql> SELECT NULL && 0;\n -> 0\n','http://dev.mysql.com/doc/refman/5.1/en/logical-operators.html'),(316,'X',11,'X(p)\n\nReturns the X-coordinate value for the point p as a double-precision\nnumber.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/geometry-property-functions.html#point-property-functions\n\n','mysql> SET @pt = \'Point(56.7 53.34)\';\nmysql> SELECT X(GeomFromText(@pt));\n+----------------------+\n| X(GeomFromText(@pt)) |\n+----------------------+\n| 56.7 |\n+----------------------+\n','http://dev.mysql.com/doc/refman/5.1/en/geometry-property-functions.html#point-property-functions'),(317,'FOUND_ROWS',17,'Syntax:\nFOUND_ROWS()\n\nA SELECT statement may include a LIMIT clause to restrict the number of\nrows the server returns to the client. In some cases, it is desirable\nto know how many rows the statement would have returned without the\nLIMIT, but without running the statement again. To obtain this row\ncount, include a SQL_CALC_FOUND_ROWS option in the SELECT statement,\nand then invoke FOUND_ROWS() afterward:\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/information-functions.html\n\n','mysql> SELECT SQL_CALC_FOUND_ROWS * FROM tbl_name\n -> WHERE id > 100 LIMIT 10;\nmysql> SELECT FOUND_ROWS();\n','http://dev.mysql.com/doc/refman/5.1/en/information-functions.html'),(318,'SYSTEM_USER',17,'Syntax:\nSYSTEM_USER()\n\nSYSTEM_USER() is a synonym for USER().\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/information-functions.html\n\n','','http://dev.mysql.com/doc/refman/5.1/en/information-functions.html'),(319,'CROSSES',30,'Crosses(g1,g2)\n\nReturns 1 if g1 spatially crosses g2. Returns NULL if g1 is a Polygon\nor a MultiPolygon, or if g2 is a Point or a MultiPoint. Otherwise,\nreturns 0.\n\nThe term spatially crosses denotes a spatial relation between two given\ngeometries that has the following properties:\n\no The two geometries intersect\n\no Their intersection results in a geometry that has a dimension that is\n one less than the maximum dimension of the two given geometries\n\no Their intersection is not equal to either of the two given geometries\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/functions-that-test-spatial-relationships-between-geometries.html\n\n','','http://dev.mysql.com/doc/refman/5.1/en/functions-that-test-spatial-relationships-between-geometries.html'),(320,'TRUNCATE TABLE',27,'Syntax:\nTRUNCATE [TABLE] tbl_name\n\nTRUNCATE TABLE empties a table completely. It requires the DROP\nprivilege as of MySQL 5.1.16. (Before 5.1.16, it requires the DELETE\nprivilege).\n\nLogically, TRUNCATE TABLE is equivalent to a DELETE statement that\ndeletes all rows, but there are practical differences under some\ncircumstances.\n\nFor an InnoDB table, InnoDB processes TRUNCATE TABLE by deleting rows\none by one if there are any FOREIGN KEY constraints that reference the\ntable. If there are no FOREIGN KEY constraints, InnoDB performs fast\ntruncation by dropping the original table and creating an empty one\nwith the same definition, which is much faster than deleting rows one\nby one. The AUTO_INCREMENT counter is reset to zero by TRUNCATE TABLE,\nregardless of whether there is a FOREIGN KEY constraint.\n\nIn the case that FOREIGN KEY constraints reference the table, InnoDB\ndeletes rows one by one and processes the constraints on each one. If\nthe FOREIGN KEY constraint specifies DELETE CASCADE, rows from the\nchild (referenced) table are deleted, and the truncated table becomes\nempty. If the FOREIGN KEY constraint does not specify CASCADE, the\nTRUNCATE TABLE statement deletes rows one by one and stops if it\nencounters a parent row that is referenced by the child, returning this\nerror:\n\nERROR 1451 (23000): Cannot delete or update a parent row: a foreign\nkey constraint fails (`test`.`child`, CONSTRAINT `child_ibfk_1`\nFOREIGN KEY (`parent_id`) REFERENCES `parent` (`id`))\n\nThis is the same as a DELETE statement with no WHERE clause.\n\nThe count of rows affected by TRUNCATE TABLE is accurate only when it\nis mapped to a DELETE statement.\n\nFor other storage engines, TRUNCATE TABLE differs from DELETE in the\nfollowing ways in MySQL 5.1:\n\no Truncate operations drop and re-create the table, which is much\n faster than deleting rows one by one, particularly for large tables.\n\no Truncate operations cause an implicit commit.\n\no Truncation operations cannot be performed if the session holds an\n active table lock.\n\no Truncation operations do not return a meaningful value for the number\n of deleted rows. The usual result is \"0 rows affected,\" which should\n be interpreted as \"no information.\"\n\no As long as the table format file tbl_name.frm is valid, the table can\n be re-created as an empty table with TRUNCATE TABLE, even if the data\n or index files have become corrupted.\n\no The table handler does not remember the last used AUTO_INCREMENT\n value, but starts counting from the beginning. This is true even for\n MyISAM and InnoDB, which normally do not reuse sequence values.\n\no When used with partitioned tables, TRUNCATE TABLE preserves the\n partitioning; that is, the data and index files are dropped and\n re-created, while the partition definitions (.par) file is\n unaffected.\n\no Since truncation of a table does not make any use of DELETE, the\n TRUNCATE TABLE statement does not invoke ON DELETE triggers.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/truncate-table.html\n\n','','http://dev.mysql.com/doc/refman/5.1/en/truncate-table.html'),(321,'BIT_XOR',16,'Syntax:\nBIT_XOR(expr)\n\nReturns the bitwise XOR of all bits in expr. The calculation is\nperformed with 64-bit (BIGINT) precision.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/group-by-functions.html\n\n','','http://dev.mysql.com/doc/refman/5.1/en/group-by-functions.html'),(322,'CURRENT_DATE',31,'Syntax:\nCURRENT_DATE, CURRENT_DATE()\n\nCURRENT_DATE and CURRENT_DATE() are synonyms for CURDATE().\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/date-and-time-functions.html\n\n','','http://dev.mysql.com/doc/refman/5.1/en/date-and-time-functions.html'),(323,'START SLAVE',26,'Syntax:\nSTART SLAVE [thread_type [, thread_type] ... ]\nSTART SLAVE [SQL_THREAD] UNTIL\n MASTER_LOG_FILE = \'log_name\', MASTER_LOG_POS = log_pos\nSTART SLAVE [SQL_THREAD] UNTIL\n RELAY_LOG_FILE = \'log_name\', RELAY_LOG_POS = log_pos\n\nthread_type: IO_THREAD | SQL_THREAD\n\nSTART SLAVE with no thread_type options starts both of the slave\nthreads. The I/O thread reads events from the master server and stores\nthem in the relay log. The SQL thread reads events from the relay log\nand executes them. START SLAVE requires the SUPER privilege.\n\nIf START SLAVE succeeds in starting the slave threads, it returns\nwithout any error. However, even in that case, it might be that the\nslave threads start and then later stop (for example, because they do\nnot manage to connect to the master or read its binary log, or some\nother problem). START SLAVE does not warn you about this. You must\ncheck the slave\'s error log for error messages generated by the slave\nthreads, or check that they are running satisfactorily with SHOW SLAVE\nSTATUS.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/start-slave.html\n\n','','http://dev.mysql.com/doc/refman/5.1/en/start-slave.html'),(324,'AREA',2,'Area(poly)\n\nReturns as a double-precision number the area of the Polygon value\npoly, as measured in its spatial reference system.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/geometry-property-functions.html#polygon-property-functions\n\n','mysql> SET @poly = \'Polygon((0 0,0 3,3 0,0 0),(1 1,1 2,2 1,1 1))\';\nmysql> SELECT Area(GeomFromText(@poly));\n+---------------------------+\n| Area(GeomFromText(@poly)) |\n+---------------------------+\n| 4 |\n+---------------------------+\n','http://dev.mysql.com/doc/refman/5.1/en/geometry-property-functions.html#polygon-property-functions'),(325,'BEGIN END',23,'Syntax:\n[begin_label:] BEGIN\n [statement_list]\nEND [end_label]\n\nBEGIN ... END syntax is used for writing compound statements, which can\nappear within stored programs. A compound statement can contain\nmultiple statements, enclosed by the BEGIN and END keywords.\nstatement_list represents a list of one or more statements, each\nterminated by a semicolon (;) statement delimiter. statement_list is\noptional, which means that the empty compound statement (BEGIN END) is\nlegal.\n\nUse of multiple statements requires that a client is able to send\nstatement strings containing the ; statement delimiter. This is handled\nin the mysql command-line client with the delimiter command. Changing\nthe ; end-of-statement delimiter (for example, to //) allows ; to be\nused in a program body. For an example, see\nhttp://dev.mysql.com/doc/refman/5.1/en/stored-programs-defining.html.\n\nA BEGIN ... END block can be labeled. Labels follow these rules:\n\no end_label cannot be given unless begin_label is also present.\n\no If both begin_label and end_label are present, they must be the same.\n\no Labels can be up to 16 characters long.\n\nLabels are also allowed for the LOOP, REPEAT, and WHILE statements.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/begin-end.html\n\n','','http://dev.mysql.com/doc/refman/5.1/en/begin-end.html'),(326,'FLUSH',26,'Syntax:\nFLUSH [NO_WRITE_TO_BINLOG | LOCAL]\n flush_option [, flush_option] ...\n\nThe FLUSH statement clears or reloads various internal caches used by\nMySQL. One variant acquires a lock. To execute FLUSH, you must have the\nRELOAD privilege.\n\nBy default, FLUSH statements are written to the binary log so that they\nwill be replicated to replication slaves. Logging can be suppressed\nwith the optional NO_WRITE_TO_BINLOG keyword or its alias LOCAL.\n\n*Note*: FLUSH LOGS, FLUSH MASTER, FLUSH SLAVE, and FLUSH TABLES WITH\nREAD LOCK are not written to the binary log in any case because they\nwould cause problems if replicated to a slave.\n\nThe RESET statement is similar to FLUSH. See [HELP RESET], for\ninformation about using the RESET statement with replication.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/flush.html\n\n','','http://dev.mysql.com/doc/refman/5.1/en/flush.html'),(327,'SHOW PROCEDURE STATUS',26,'Syntax:\nSHOW PROCEDURE STATUS\n [LIKE \'pattern\' | WHERE expr]\n\nThis statement is a MySQL extension. It returns characteristics of a\nstored procedure, such as the database, name, type, creator, creation\nand modification dates, and character set information. A similar\nstatement, SHOW FUNCTION STATUS, displays information about stored\nfunctions (see [HELP SHOW FUNCTION STATUS]).\n\nThe LIKE clause, if present, indicates which procedure or function\nnames to match. The WHERE clause can be given to select rows using more\ngeneral conditions, as discussed in\nhttp://dev.mysql.com/doc/refman/5.1/en/extended-show.html.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/show-procedure-status.html\n\n','mysql> SHOW PROCEDURE STATUS LIKE \'sp1\'\\G\n*************************** 1. row ***************************\n Db: test\n Name: sp1\n Type: PROCEDURE\n Definer: testuser@localhost\n Modified: 2004-08-03 15:29:37\n Created: 2004-08-03 15:29:37\n Security_type: DEFINER\n Comment:\ncharacter_set_client: latin1\ncollation_connection: latin1_swedish_ci\n Database Collation: latin1_swedish_ci\n','http://dev.mysql.com/doc/refman/5.1/en/show-procedure-status.html'),(328,'DESCRIBE',28,'Syntax:\n{DESCRIBE | DESC} tbl_name [col_name | wild]\n\nDESCRIBE provides information about the columns in a table. It is a\nshortcut for SHOW COLUMNS FROM. These statements also display\ninformation for views. (See [HELP SHOW COLUMNS].)\n\ncol_name can be a column name, or a string containing the SQL \"%\" and\n\"_\" wildcard characters to obtain output only for the columns with\nnames matching the string. There is no need to enclose the string\nwithin quotation marks unless it contains spaces or other special\ncharacters.\n\nmysql> DESCRIBE City;\n+------------+----------+------+-----+---------+----------------+\n| Field | Type | Null | Key | Default | Extra |\n+------------+----------+------+-----+---------+----------------+\n| Id | int(11) | NO | PRI | NULL | auto_increment |\n| Name | char(35) | NO | | | |\n| Country | char(3) | NO | UNI | | |\n| District | char(20) | YES | MUL | | |\n| Population | int(11) | NO | | 0 | |\n+------------+----------+------+-----+---------+----------------+\n5 rows in set (0.00 sec)\n\nThe description for SHOW COLUMNS provides more information about the\noutput columns (see [HELP SHOW COLUMNS]).\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/describe.html\n\n','','http://dev.mysql.com/doc/refman/5.1/en/describe.html'),(329,'SHOW WARNINGS',26,'Syntax:\nSHOW WARNINGS [LIMIT [offset,] row_count]\nSHOW COUNT(*) WARNINGS\n\nSHOW WARNINGS shows the error, warning, and note messages that resulted\nfrom the last statement that generated messages in the current session.\nIt shows nothing if the last statement used a table and generated no\nmessages. (That is, a statement that uses a table but generates no\nmessages clears the message list.) Statements that do not use tables\nand do not generate messages have no effect on the message list.\n\nWarnings are generated for DML statements such as INSERT, UPDATE, and\nLOAD DATA INFILE as well as DDL statements such as CREATE TABLE and\nALTER TABLE.\n\nA related statement, SHOW ERRORS, shows only the errors. See [HELP SHOW\nERRORS].\n\nThe SHOW COUNT(*) WARNINGS statement displays the total number of\nerrors, warnings, and notes. You can also retrieve this number from the\nwarning_count variable:\n\nSHOW COUNT(*) WARNINGS;\nSELECT @@warning_count;\n\nThe value of warning_count might be greater than the number of messages\ndisplayed by SHOW WARNINGS if the max_error_count system variable is\nset so low that not all messages are stored. An example shown later in\nthis section demonstrates how this can happen.\n\nThe LIMIT clause has the same syntax as for the SELECT statement. See\nhttp://dev.mysql.com/doc/refman/5.1/en/select.html.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/show-warnings.html\n\n','','http://dev.mysql.com/doc/refman/5.1/en/show-warnings.html'),(330,'DROP USER',10,'Syntax:\nDROP USER user [, user] ...\n\nThe DROP USER statement removes one or more MySQL accounts. It removes\nprivilege rows for the account from all grant tables. To use this\nstatement, you must have the global CREATE USER privilege or the DELETE\nprivilege for the mysql database. Each account is named using the same\nformat as for the GRANT statement; for example, \'jeffrey\'@\'localhost\'.\nIf you specify only the user name part of the account name, a host name\npart of \'%\' is used. For additional information about specifying\naccount names, see [HELP GRANT].\n\nWith DROP USER, you can remove an account and its privileges as\nfollows:\n\nDROP USER user;\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/drop-user.html\n\n','','http://dev.mysql.com/doc/refman/5.1/en/drop-user.html'),(331,'STDDEV_POP',16,'Syntax:\nSTDDEV_POP(expr)\n\nReturns the population standard deviation of expr (the square root of\nVAR_POP()). You can also use STD() or STDDEV(), which are equivalent\nbut not standard SQL.\n\nSTDDEV_POP() returns NULL if there were no matching rows.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/group-by-functions.html\n\n','','http://dev.mysql.com/doc/refman/5.1/en/group-by-functions.html'),(332,'SHOW CHARACTER SET',26,'Syntax:\nSHOW CHARACTER SET\n [LIKE \'pattern\' | WHERE expr]\n\nThe SHOW CHARACTER SET statement shows all available character sets.\nThe LIKE clause, if present, indicates which character set names to\nmatch. The WHERE clause can be given to select rows using more general\nconditions, as discussed in\nhttp://dev.mysql.com/doc/refman/5.1/en/extended-show.html. For example:\n\nmysql> SHOW CHARACTER SET LIKE \'latin%\';\n+---------+-----------------------------+-------------------+--------+\n| Charset | Description | Default collation | Maxlen |\n+---------+-----------------------------+-------------------+--------+\n| latin1 | cp1252 West European | latin1_swedish_ci | 1 |\n| latin2 | ISO 8859-2 Central European | latin2_general_ci | 1 |\n| latin5 | ISO 8859-9 Turkish | latin5_turkish_ci | 1 |\n| latin7 | ISO 8859-13 Baltic | latin7_general_ci | 1 |\n+---------+-----------------------------+-------------------+--------+\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/show-character-set.html\n\n','','http://dev.mysql.com/doc/refman/5.1/en/show-character-set.html'),(333,'SUBSTRING',36,'Syntax:\nSUBSTRING(str,pos), SUBSTRING(str FROM pos), SUBSTRING(str,pos,len),\nSUBSTRING(str FROM pos FOR len)\n\nThe forms without a len argument return a substring from string str\nstarting at position pos. The forms with a len argument return a\nsubstring len characters long from string str, starting at position\npos. The forms that use FROM are standard SQL syntax. It is also\npossible to use a negative value for pos. In this case, the beginning\nof the substring is pos characters from the end of the string, rather\nthan the beginning. A negative value may be used for pos in any of the\nforms of this function.\n\nFor all forms of SUBSTRING(), the position of the first character in\nthe string from which the substring is to be extracted is reckoned as\n1.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/string-functions.html\n\n','mysql> SELECT SUBSTRING(\'Quadratically\',5);\n -> \'ratically\'\nmysql> SELECT SUBSTRING(\'foobarbar\' FROM 4);\n -> \'barbar\'\nmysql> SELECT SUBSTRING(\'Quadratically\',5,6);\n -> \'ratica\'\nmysql> SELECT SUBSTRING(\'Sakila\', -3);\n -> \'ila\'\nmysql> SELECT SUBSTRING(\'Sakila\', -5, 3);\n -> \'aki\'\nmysql> SELECT SUBSTRING(\'Sakila\' FROM -4 FOR 2);\n -> \'ki\'\n','http://dev.mysql.com/doc/refman/5.1/en/string-functions.html'),(334,'ISEMPTY',35,'IsEmpty(g)\n\nReturns 1 if the geometry value g is the empty geometry, 0 if it is not\nempty, and -1 if the argument is NULL. If the geometry is empty, it\nrepresents the empty point set.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/geometry-property-functions.html#general-geometry-property-functions\n\n','','http://dev.mysql.com/doc/refman/5.1/en/geometry-property-functions.html#general-geometry-property-functions'),(335,'SHOW FUNCTION STATUS',26,'Syntax:\nSHOW FUNCTION STATUS\n [LIKE \'pattern\' | WHERE expr]\n\nThis statement is similar to SHOW PROCEDURE STATUS but for stored\nfunctions. See [HELP SHOW PROCEDURE STATUS].\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/show-function-status.html\n\n','','http://dev.mysql.com/doc/refman/5.1/en/show-function-status.html'),(336,'LTRIM',36,'Syntax:\nLTRIM(str)\n\nReturns the string str with leading space characters removed.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/string-functions.html\n\n','mysql> SELECT LTRIM(\' barbar\');\n -> \'barbar\'\n','http://dev.mysql.com/doc/refman/5.1/en/string-functions.html'),(337,'INTERSECTS',30,'Intersects(g1,g2)\n\nReturns 1 or 0 to indicate whether g1 spatially intersects g2.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/functions-that-test-spatial-relationships-between-geometries.html\n\n','','http://dev.mysql.com/doc/refman/5.1/en/functions-that-test-spatial-relationships-between-geometries.html'),(338,'CALL',27,'Syntax:\nCALL sp_name([parameter[,...]])\nCALL sp_name[()]\n\nThe CALL statement invokes a stored procedure that was defined\npreviously with CREATE PROCEDURE.\n\nAs of MySQL 5.1.13, stored procedures that take no arguments can be\ninvoked without parentheses. That is, CALL p() and CALL p are\nequivalent.\n\nCALL can pass back values to its caller using parameters that are\ndeclared as OUT or INOUT parameters. When the procedure returns, a\nclient program can also obtain the number of rows affected for the\nfinal statement executed within the routine: At the SQL level, call the\nROW_COUNT() function; from the C API, call the mysql_affected_rows()\nfunction.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/call.html\n\n','','http://dev.mysql.com/doc/refman/5.1/en/call.html'),(339,'MBRDISJOINT',6,'MBRDisjoint(g1,g2)\n\nReturns 1 or 0 to indicate whether the Minimum Bounding Rectangles of\nthe two geometries g1 and g2 are disjoint (do not intersect).\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/relations-on-geometry-mbr.html\n\n','','http://dev.mysql.com/doc/refman/5.1/en/relations-on-geometry-mbr.html'),(340,'VALUES',15,'Syntax:\nVALUES(col_name)\n\nIn an INSERT ... ON DUPLICATE KEY UPDATE statement, you can use the\nVALUES(col_name) function in the UPDATE clause to refer to column\nvalues from the INSERT portion of the statement. In other words,\nVALUES(col_name) in the UPDATE clause refers to the value of col_name\nthat would be inserted, had no duplicate-key conflict occurred. This\nfunction is especially useful in multiple-row inserts. The VALUES()\nfunction is meaningful only in INSERT ... ON DUPLICATE KEY UPDATE\nstatements and returns NULL otherwise.\nhttp://dev.mysql.com/doc/refman/5.1/en/insert-on-duplicate.html.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/miscellaneous-functions.html\n\n','mysql> INSERT INTO table (a,b,c) VALUES (1,2,3),(4,5,6)\n -> ON DUPLICATE KEY UPDATE c=VALUES(a)+VALUES(b);\n','http://dev.mysql.com/doc/refman/5.1/en/miscellaneous-functions.html'),(341,'SUBSTRING_INDEX',36,'Syntax:\nSUBSTRING_INDEX(str,delim,count)\n\nReturns the substring from string str before count occurrences of the\ndelimiter delim. If count is positive, everything to the left of the\nfinal delimiter (counting from the left) is returned. If count is\nnegative, everything to the right of the final delimiter (counting from\nthe right) is returned. SUBSTRING_INDEX() performs a case-sensitive\nmatch when searching for delim.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/string-functions.html\n\n','mysql> SELECT SUBSTRING_INDEX(\'www.mysql.com\', \'.\', 2);\n -> \'www.mysql\'\nmysql> SELECT SUBSTRING_INDEX(\'www.mysql.com\', \'.\', -2);\n -> \'mysql.com\'\n','http://dev.mysql.com/doc/refman/5.1/en/string-functions.html'),(342,'ENCODE',12,'Syntax:\nENCODE(str,pass_str)\n\nEncrypt str using pass_str as the password. To decrypt the result, use\nDECODE().\n\nThe result is a binary string of the same length as str.\n\nThe strength of the encryption is based on how good the random\ngenerator is. It should suffice for short strings.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/encryption-functions.html\n\n','','http://dev.mysql.com/doc/refman/5.1/en/encryption-functions.html'),(343,'LOOP',23,'Syntax:\n[begin_label:] LOOP\n statement_list\nEND LOOP [end_label]\n\nLOOP implements a simple loop construct, enabling repeated execution of\nthe statement list, which consists of one or more statements, each\nterminated by a semicolon (;) statement delimiter. The statements\nwithin the loop are repeated until the loop is exited; usually this is\naccomplished with a LEAVE statement.\n\nA LOOP statement can be labeled. See [HELP BEGIN END] for the rules\nregarding label use.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/loop-statement.html\n\n','','http://dev.mysql.com/doc/refman/5.1/en/loop-statement.html'),(344,'TRUNCATE',4,'Syntax:\nTRUNCATE(X,D)\n\nReturns the number X, truncated to D decimal places. If D is 0, the\nresult has no decimal point or fractional part. D can be negative to\ncause D digits left of the decimal point of the value X to become zero.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/mathematical-functions.html\n\n','mysql> SELECT TRUNCATE(1.223,1);\n -> 1.2\nmysql> SELECT TRUNCATE(1.999,1);\n -> 1.9\nmysql> SELECT TRUNCATE(1.999,0);\n -> 1\nmysql> SELECT TRUNCATE(-1.999,1);\n -> -1.9\nmysql> SELECT TRUNCATE(122,-2);\n -> 100\nmysql> SELECT TRUNCATE(10.28*100,0);\n -> 1028\n','http://dev.mysql.com/doc/refman/5.1/en/mathematical-functions.html'),(345,'TIMESTAMPADD',31,'Syntax:\nTIMESTAMPADD(unit,interval,datetime_expr)\n\nAdds the integer expression interval to the date or datetime expression\ndatetime_expr. The unit for interval is given by the unit argument,\nwhich should be one of the following values: FRAC_SECOND\n(microseconds), SECOND, MINUTE, HOUR, DAY, WEEK, MONTH, QUARTER, or\nYEAR.\n\nBeginning with MySQL 5.1.24, it is possible to use MICROSECOND in place\nof FRAC_SECOND with this function, and FRAC_SECOND is deprecated.\nFRAC_SECOND is removed in MySQL 5.5.\n\nThe unit value may be specified using one of keywords as shown, or with\na prefix of SQL_TSI_. For example, DAY and SQL_TSI_DAY both are legal.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/date-and-time-functions.html\n\n','mysql> SELECT TIMESTAMPADD(MINUTE,1,\'2003-01-02\');\n -> \'2003-01-02 00:01:00\'\nmysql> SELECT TIMESTAMPADD(WEEK,1,\'2003-01-02\');\n -> \'2003-01-09\'\n','http://dev.mysql.com/doc/refman/5.1/en/date-and-time-functions.html'),(346,'SHOW',26,'SHOW has many forms that provide information about databases, tables,\ncolumns, or status information about the server. This section describes\nthose following:\n\nSHOW AUTHORS\nSHOW CHARACTER SET [like_or_where]\nSHOW COLLATION [like_or_where]\nSHOW [FULL] COLUMNS FROM tbl_name [FROM db_name] [like_or_where]\nSHOW CONTRIBUTORS\nSHOW CREATE DATABASE db_name\nSHOW CREATE EVENT event_name\nSHOW CREATE FUNCTION func_name\nSHOW CREATE PROCEDURE proc_name\nSHOW CREATE TABLE tbl_name\nSHOW CREATE TRIGGER trigger_name\nSHOW CREATE VIEW view_name\nSHOW DATABASES [like_or_where]\nSHOW ENGINE engine_name {STATUS | MUTEX}\nSHOW [STORAGE] ENGINES\nSHOW ERRORS [LIMIT [offset,] row_count]\nSHOW EVENTS\nSHOW FUNCTION CODE func_name\nSHOW FUNCTION STATUS [like_or_where]\nSHOW GRANTS FOR user\nSHOW INDEX FROM tbl_name [FROM db_name]\nSHOW INNODB STATUS\nSHOW OPEN TABLES [FROM db_name] [like_or_where]\nSHOW PLUGINS\nSHOW PROCEDURE CODE proc_name\nSHOW PROCEDURE STATUS [like_or_where]\nSHOW PRIVILEGES\nSHOW [FULL] PROCESSLIST\nSHOW PROFILE [types] [FOR QUERY n] [OFFSET n] [LIMIT n]\nSHOW PROFILES\nSHOW SCHEDULER STATUS\nSHOW [GLOBAL | SESSION] STATUS [like_or_where]\nSHOW TABLE STATUS [FROM db_name] [like_or_where]\nSHOW [FULL] TABLES [FROM db_name] [like_or_where]\nSHOW TRIGGERS [FROM db_name] [like_or_where]\nSHOW [GLOBAL | SESSION] VARIABLES [like_or_where]\nSHOW WARNINGS [LIMIT [offset,] row_count]\n\nlike_or_where:\n LIKE \'pattern\'\n | WHERE expr\n\nIf the syntax for a given SHOW statement includes a LIKE \'pattern\'\npart, \'pattern\' is a string that can contain the SQL \"%\" and \"_\"\nwildcard characters. The pattern is useful for restricting statement\noutput to matching values.\n\nSeveral SHOW statements also accept a WHERE clause that provides more\nflexibility in specifying which rows to display. See\nhttp://dev.mysql.com/doc/refman/5.1/en/extended-show.html.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/show.html\n\n','','http://dev.mysql.com/doc/refman/5.1/en/show.html'),(347,'GREATEST',18,'Syntax:\nGREATEST(value1,value2,...)\n\nWith two or more arguments, returns the largest (maximum-valued)\nargument. The arguments are compared using the same rules as for\nLEAST().\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/comparison-operators.html\n\n','mysql> SELECT GREATEST(2,0);\n -> 2\nmysql> SELECT GREATEST(34.0,3.0,5.0,767.0);\n -> 767.0\nmysql> SELECT GREATEST(\'B\',\'A\',\'C\');\n -> \'C\'\n','http://dev.mysql.com/doc/refman/5.1/en/comparison-operators.html'),(348,'SHOW VARIABLES',26,'Syntax:\nSHOW [GLOBAL | SESSION] VARIABLES\n [LIKE \'pattern\' | WHERE expr]\n\nSHOW VARIABLES shows the values of MySQL system variables. This\ninformation also can be obtained using the mysqladmin variables\ncommand. The LIKE clause, if present, indicates which variable names to\nmatch. The WHERE clause can be given to select rows using more general\nconditions, as discussed in\nhttp://dev.mysql.com/doc/refman/5.1/en/extended-show.html. This\nstatement does not require any privilege. It requires only the ability\nto connect to the server.\n\nWith the GLOBAL modifier, SHOW VARIABLES displays the values that are\nused for new connections to MySQL. With SESSION, it displays the values\nthat are in effect for the current connection. If no modifier is\npresent, the default is SESSION. LOCAL is a synonym for SESSION.\nWith a LIKE clause, the statement displays only rows for those\nvariables with names that match the pattern. To obtain the row for a\nspecific variable, use a LIKE clause as shown:\n\nSHOW VARIABLES LIKE \'max_join_size\';\nSHOW SESSION VARIABLES LIKE \'max_join_size\';\n\nTo get a list of variables whose name match a pattern, use the \"%\"\nwildcard character in a LIKE clause:\n\nSHOW VARIABLES LIKE \'%size%\';\nSHOW GLOBAL VARIABLES LIKE \'%size%\';\n\nWildcard characters can be used in any position within the pattern to\nbe matched. Strictly speaking, because \"_\" is a wildcard that matches\nany single character, you should escape it as \"\\_\" to match it\nliterally. In practice, this is rarely necessary.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/show-variables.html\n\n','','http://dev.mysql.com/doc/refman/5.1/en/show-variables.html'),(349,'BINLOG',26,'Syntax:\nBINLOG \'str\'\n\nBINLOG is an internal-use statement. It is generated by the mysqlbinlog\nprogram as the printable representation of certain events in binary log\nfiles. (See http://dev.mysql.com/doc/refman/5.1/en/mysqlbinlog.html.)\nThe \'str\' value is a base 64-encoded string the that server decodes to\ndetermine the data change indicated by the corresponding event. This\nstatement requires the SUPER privilege. It was added in MySQL 5.1.5.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/binlog.html\n\n','','http://dev.mysql.com/doc/refman/5.1/en/binlog.html'),(350,'BIT_AND',16,'Syntax:\nBIT_AND(expr)\n\nReturns the bitwise AND of all bits in expr. The calculation is\nperformed with 64-bit (BIGINT) precision.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/group-by-functions.html\n\n','','http://dev.mysql.com/doc/refman/5.1/en/group-by-functions.html'),(351,'SECOND',31,'Syntax:\nSECOND(time)\n\nReturns the second for time, in the range 0 to 59.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/date-and-time-functions.html\n\n','mysql> SELECT SECOND(\'10:05:03\');\n -> 3\n','http://dev.mysql.com/doc/refman/5.1/en/date-and-time-functions.html'),(352,'ATAN2',4,'Syntax:\nATAN(Y,X), ATAN2(Y,X)\n\nReturns the arc tangent of the two variables X and Y. It is similar to\ncalculating the arc tangent of Y / X, except that the signs of both\narguments are used to determine the quadrant of the result.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/mathematical-functions.html\n\n','mysql> SELECT ATAN(-2,2);\n -> -0.78539816339745\nmysql> SELECT ATAN2(PI(),0);\n -> 1.5707963267949\n','http://dev.mysql.com/doc/refman/5.1/en/mathematical-functions.html'),(353,'MBRCONTAINS',6,'MBRContains(g1,g2)\n\nReturns 1 or 0 to indicate whether the Minimum Bounding Rectangle of g1\ncontains the Minimum Bounding Rectangle of g2. This tests the opposite\nrelationship as MBRWithin().\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/relations-on-geometry-mbr.html\n\n','mysql> SET @g1 = GeomFromText(\'Polygon((0 0,0 3,3 3,3 0,0 0))\');\nmysql> SET @g2 = GeomFromText(\'Point(1 1)\');\nmysql> SELECT MBRContains(@g1,@g2), MBRContains(@g2,@g1);\n----------------------+----------------------+\n| MBRContains(@g1,@g2) | MBRContains(@g2,@g1) |\n+----------------------+----------------------+\n| 1 | 0 |\n+----------------------+----------------------+\n','http://dev.mysql.com/doc/refman/5.1/en/relations-on-geometry-mbr.html'),(354,'HOUR',31,'Syntax:\nHOUR(time)\n\nReturns the hour for time. The range of the return value is 0 to 23 for\ntime-of-day values. However, the range of TIME values actually is much\nlarger, so HOUR can return values greater than 23.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/date-and-time-functions.html\n\n','mysql> SELECT HOUR(\'10:05:03\');\n -> 10\nmysql> SELECT HOUR(\'272:59:59\');\n -> 272\n','http://dev.mysql.com/doc/refman/5.1/en/date-and-time-functions.html'),(355,'SELECT',27,'Syntax:\nSELECT\n [ALL | DISTINCT | DISTINCTROW ]\n [HIGH_PRIORITY]\n [STRAIGHT_JOIN]\n [SQL_SMALL_RESULT] [SQL_BIG_RESULT] [SQL_BUFFER_RESULT]\n [SQL_CACHE | SQL_NO_CACHE] [SQL_CALC_FOUND_ROWS]\n select_expr [, select_expr ...]\n [FROM table_references\n [WHERE where_condition]\n [GROUP BY {col_name | expr | position}\n [ASC | DESC], ... [WITH ROLLUP]]\n [HAVING where_condition]\n [ORDER BY {col_name | expr | position}\n [ASC | DESC], ...]\n [LIMIT {[offset,] row_count | row_count OFFSET offset}]\n [PROCEDURE procedure_name(argument_list)]\n [INTO OUTFILE \'file_name\'\n [CHARACTER SET charset_name]\n export_options\n | INTO DUMPFILE \'file_name\'\n | INTO var_name [, var_name]]\n [FOR UPDATE | LOCK IN SHARE MODE]]\n\nSELECT is used to retrieve rows selected from one or more tables, and\ncan include UNION statements and subqueries. See [HELP UNION], and\nhttp://dev.mysql.com/doc/refman/5.1/en/subqueries.html.\n\nThe most commonly used clauses of SELECT statements are these:\n\no Each select_expr indicates a column that you want to retrieve. There\n must be at least one select_expr.\n\no table_references indicates the table or tables from which to retrieve\n rows. Its syntax is described in [HELP JOIN].\n\no The WHERE clause, if given, indicates the condition or conditions\n that rows must satisfy to be selected. where_condition is an\n expression that evaluates to true for each row to be selected. The\n statement selects all rows if there is no WHERE clause.\n\n In the WHERE clause, you can use any of the functions and operators\n that MySQL supports, except for aggregate (summary) functions. See\n http://dev.mysql.com/doc/refman/5.1/en/functions.html.\n\nSELECT can also be used to retrieve rows computed without reference to\nany table.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/select.html\n\n','','http://dev.mysql.com/doc/refman/5.1/en/select.html'),(356,'COT',4,'Syntax:\nCOT(X)\n\nReturns the cotangent of X.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/mathematical-functions.html\n\n','mysql> SELECT COT(12);\n -> -1.5726734063977\nmysql> SELECT COT(0);\n -> NULL\n','http://dev.mysql.com/doc/refman/5.1/en/mathematical-functions.html'),(357,'SHOW CREATE EVENT',26,'Syntax:\nSHOW CREATE EVENT event_name\n\nThis statement displays the CREATE EVENT statement needed to re-create\na given event. For example (using the same event e_daily defined and\nthen altered in [HELP SHOW EVENTS]):\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/show-create-event.html\n\n','mysql> SHOW CREATE EVENT test.e_daily\\G\n*************************** 1. row ***************************\n Event: e_daily\n sql_mode:\n time_zone: SYSTEM\n Create Event: CREATE EVENT `e_daily`\n ON SCHEDULE EVERY 1 DAY\n STARTS CURRENT_TIMESTAMP + INTERVAL 6 HOUR\n ON COMPLETION NOT PRESERVE\n ENABLE\n COMMENT \'Saves total number of sessions then\n clears the table each day\'\n DO BEGIN\n INSERT INTO site_activity.totals (time, total)\n SELECT CURRENT_TIMESTAMP, COUNT(*)\n FROM site_activity.sessions;\n DELETE FROM site_activity.sessions;\n END\ncharacter_set_client: latin1\ncollation_connection: latin1_swedish_ci\n Database Collation: latin1_swedish_ci\n','http://dev.mysql.com/doc/refman/5.1/en/show-create-event.html'),(358,'BACKUP TABLE',20,'Syntax:\nBACKUP TABLE tbl_name [, tbl_name] ... TO \'/path/to/backup/directory\'\n\n*Note*: This statement is deprecated and is removed in MySQL 5.5. As an\nalternative, mysqldump or mysqlhotcopy can be used instead.\n\nBACKUP TABLE copies to the backup directory the minimum number of table\nfiles needed to restore the table, after flushing any buffered changes\nto disk. The statement works only for MyISAM tables. It copies the .frm\ndefinition and .MYD data files. The .MYI index file can be rebuilt from\nthose two files. The directory should be specified as a full path name.\nTo restore the table, use RESTORE TABLE.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/backup-table.html\n\n','','http://dev.mysql.com/doc/refman/5.1/en/backup-table.html'),(359,'LOAD_FILE',36,'Syntax:\nLOAD_FILE(file_name)\n\nReads the file and returns the file contents as a string. To use this\nfunction, the file must be located on the server host, you must specify\nthe full path name to the file, and you must have the FILE privilege.\nThe file must be readable by all and its size less than\nmax_allowed_packet bytes. If the secure_file_priv system variable is\nset to a nonempty directory name, the file to be loaded must be located\nin that directory.\n\nIf the file does not exist or cannot be read because one of the\npreceding conditions is not satisfied, the function returns NULL.\n\nAs of MySQL 5.1.6, the character_set_filesystem system variable\ncontrols interpretation of file names that are given as literal\nstrings.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/string-functions.html\n\n','mysql> UPDATE t\n SET blob_col=LOAD_FILE(\'/tmp/picture\')\n WHERE id=1;\n','http://dev.mysql.com/doc/refman/5.1/en/string-functions.html'),(360,'LOAD TABLE FROM MASTER',26,'Syntax:\nLOAD TABLE tbl_name FROM MASTER\n\nThis feature is deprecated and should be avoided. It is subject to\nremoval in a future version of MySQL.\n\nSince the current implementation of LOAD DATA FROM MASTER and LOAD\nTABLE FROM MASTER is very limited, these statements are deprecated as\nof MySQL 4.1 and removed in MySQL 5.5.\n\nThe recommended alternative solution to using LOAD DATA FROM MASTER or\nLOAD TABLE FROM MASTER is using mysqldump or mysqlhotcopy. The latter\nrequires Perl and two Perl modules (DBI and DBD:mysql) and works for\nMyISAM and ARCHIVE tables only. With mysqldump, you can create SQL\ndumps on the master and pipe (or copy) these to a mysql client on the\nslave. This has the advantage of working for all storage engines, but\ncan be quite slow, since it works using SELECT.\n\nTransfers a copy of the table from the master to the slave. This\nstatement is implemented mainly debugging LOAD DATA FROM MASTER\noperations. To use LOAD TABLE, the account used for connecting to the\nmaster server must have the RELOAD and SUPER privileges on the master\nand the SELECT privilege for the master table to load. On the slave\nside, the user that issues LOAD TABLE FROM MASTER must have privileges\nfor dropping and creating the table.\n\nThe conditions for LOAD DATA FROM MASTER apply here as well. For\nexample, LOAD TABLE FROM MASTER works only for MyISAM tables. The\ntimeout notes for LOAD DATA FROM MASTER apply as well.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/load-table-from-master.html\n\n','','http://dev.mysql.com/doc/refman/5.1/en/load-table-from-master.html'),(361,'POINTFROMTEXT',3,'PointFromText(wkt[,srid])\n\nConstructs a POINT value using its WKT representation and SRID.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/creating-spatial-values.html#gis-wkt-functions\n\n','','http://dev.mysql.com/doc/refman/5.1/en/creating-spatial-values.html#gis-wkt-functions'),(362,'GROUP_CONCAT',16,'Syntax:\nGROUP_CONCAT(expr)\n\nThis function returns a string result with the concatenated non-NULL\nvalues from a group. It returns NULL if there are no non-NULL values.\nThe full syntax is as follows:\n\nGROUP_CONCAT([DISTINCT] expr [,expr ...]\n [ORDER BY {unsigned_integer | col_name | expr}\n [ASC | DESC] [,col_name ...]]\n [SEPARATOR str_val])\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/group-by-functions.html\n\n','mysql> SELECT student_name,\n -> GROUP_CONCAT(test_score)\n -> FROM student\n -> GROUP BY student_name;\n','http://dev.mysql.com/doc/refman/5.1/en/group-by-functions.html'),(363,'DATE_FORMAT',31,'Syntax:\nDATE_FORMAT(date,format)\n\nFormats the date value according to the format string.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/date-and-time-functions.html\n\n','mysql> SELECT DATE_FORMAT(\'2009-10-04 22:23:00\', \'%W %M %Y\');\n -> \'Sunday October 2009\'\nmysql> SELECT DATE_FORMAT(\'2007-10-04 22:23:00\', \'%H:%i:%s\');\n -> \'22:23:00\'\nmysql> SELECT DATE_FORMAT(\'1900-10-04 22:23:00\',\n -> \'%D %y %a %d %m %b %j\');\n -> \'4th 00 Thu 04 10 Oct 277\'\nmysql> SELECT DATE_FORMAT(\'1997-10-04 22:23:00\',\n -> \'%H %k %I %r %T %S %w\');\n -> \'22 22 10 10:23:00 PM 22:23:00 00 6\'\nmysql> SELECT DATE_FORMAT(\'1999-01-01\', \'%X %V\');\n -> \'1998 52\'\nmysql> SELECT DATE_FORMAT(\'2006-06-00\', \'%d\');\n -> \'00\'\n','http://dev.mysql.com/doc/refman/5.1/en/date-and-time-functions.html'),(364,'BENCHMARK',17,'Syntax:\nBENCHMARK(count,expr)\n\nThe BENCHMARK() function executes the expression expr repeatedly count\ntimes. It may be used to time how quickly MySQL processes the\nexpression. The result value is always 0. The intended use is from\nwithin the mysql client, which reports query execution times:\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/information-functions.html\n\n','mysql> SELECT BENCHMARK(1000000,ENCODE(\'hello\',\'goodbye\'));\n+----------------------------------------------+\n| BENCHMARK(1000000,ENCODE(\'hello\',\'goodbye\')) |\n+----------------------------------------------+\n| 0 |\n+----------------------------------------------+\n1 row in set (4.74 sec)\n','http://dev.mysql.com/doc/refman/5.1/en/information-functions.html'),(365,'YEAR',31,'Syntax:\nYEAR(date)\n\nReturns the year for date, in the range 1000 to 9999, or 0 for the\n\"zero\" date.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/date-and-time-functions.html\n\n','mysql> SELECT YEAR(\'1987-01-01\');\n -> 1987\n','http://dev.mysql.com/doc/refman/5.1/en/date-and-time-functions.html'),(366,'SHOW ENGINE',26,'Syntax:\nSHOW ENGINE engine_name {STATUS | MUTEX}\n\nSHOW ENGINE displays operational information about a storage engine.\nThe following statements currently are supported:\n\nSHOW ENGINE INNODB STATUS\nSHOW ENGINE INNODB MUTEX\nSHOW ENGINE {NDB | NDBCLUSTER} STATUS\n\nOlder (and now deprecated) synonyms are SHOW INNODB STATUS for SHOW\nENGINE INNODB STATUS and SHOW MUTEX STATUS for SHOW ENGINE INNODB\nMUTEX. SHOW INNODB STATUS and SHOW MUTEX STATUS are removed in MySQL\n5.5.\n\nIn MySQL 5.0, SHOW ENGINE INNODB MUTEX is invoked as SHOW MUTEX STATUS.\nThe latter statement displays similar information but in a somewhat\ndifferent output format.\n\nSHOW ENGINE BDB LOGS formerly displayed status information about BDB\nlog files. As of MySQL 5.1.12, the BDB storage engine is not supported,\nand this statement produces a warning.\n\nSHOW ENGINE INNODB STATUS displays extensive information from the\nstandard InnoDB Monitor about the state of the InnoDB storage engine.\nFor information about the standard monitor and other InnoDB Monitors\nthat provide information about InnoDB processing, see\nhttp://dev.mysql.com/doc/refman/5.1/en/innodb-monitors.html.\n\nSHOW ENGINE INNODB MUTEX displays InnoDB mutex statistics. From MySQL\n5.1.2 to 5.1.14, the statement displays the following output fields:\n\no Type\n\n Always InnoDB.\n\no Name\n\n The mutex name and the source file where it is implemented. Example:\n &pool->mutex:mem0pool.c\n\n The mutex name indicates its purpose. For example, the log_sys mutex\n is used by the InnoDB logging subsystem and indicates how intensive\n logging activity is. The buf_pool mutex protects the InnoDB buffer\n pool.\n\no Status\n\n The mutex status. The fields contains several values:\n\n o count indicates how many times the mutex was requested.\n\n o spin_waits indicates how many times the spinlock had to run.\n\n o spin_rounds indicates the number of spinlock rounds. (spin_rounds\n divided by spin_waits provides the average round count.)\n\n o os_waits indicates the number of operating system waits. This\n occurs when the spinlock did not work (the mutex was not locked\n during the spinlock and it was necessary to yield to the operating\n system and wait).\n\n o os_yields indicates the number of times a the thread trying to lock\n a mutex gave up its timeslice and yielded to the operating system\n (on the presumption that allowing other threads to run will free\n the mutex so that it can be locked).\n\n o os_wait_times indicates the amount of time (in ms) spent in\n operating system waits, if the timed_mutexes system variable is 1\n (ON). If timed_mutexes is 0 (OFF), timing is disabled, so\n os_wait_times is 0. timed_mutexes is off by default.\n\nFrom MySQL 5.1.15 on, the statement displays the following output\nfields:\n\no Type\n\n Always InnoDB.\n\no Name\n\n The source file where the mutex is implemented, and the line number\n in the file where the mutex is created. The line number may change\n depending on your version of MySQL.\n\no Status\n\n This field displays the same values as previously described (count,\n spin_waits, spin_rounds, os_waits, os_yields, os_wait_times), but\n only if UNIV_DEBUG was defined at MySQL compilation time (for\n example, in include/univ.h in the InnoDB part of the MySQL source\n tree). If UNIV_DEBUG was not defined, the statement displays only the\n os_waits value. In the latter case (without UNIV_DEBUG), the\n information on which the output is based is insufficient to\n distinguish regular mutexes and mutexes that protect rw-locks (which\n allow multiple readers or a single writer). Consequently, the output\n may appear to contain multiple rows for the same mutex.\n\nInformation from this statement can be used to diagnose system\nproblems. For example, large values of spin_waits and spin_rounds may\nindicate scalability problems.\n\nIf the server has the NDBCLUSTER storage engine enabled, SHOW ENGINE\nNDB STATUS displays cluster status information such as the number of\nconnected data nodes, the cluster connectstring, and cluster binlog\nepochs, as well as counts of various Cluster API objects created by the\nMySQL Server when connected to the cluster. Sample output from this\nstatement is shown here:\n\nmysql> SHOW ENGINE NDB STATUS;\n+------------+-----------------------+--------------------------------------------------+\n| Type | Name | Status |\n+------------+-----------------------+--------------------------------------------------+\n| ndbcluster | connection | cluster_node_id=7,\n connected_host=192.168.0.103, connected_port=1186, number_of_data_nodes=4,\n number_of_ready_data_nodes=3, connect_count=0 |\n| ndbcluster | NdbTransaction | created=6, free=0, sizeof=212 |\n| ndbcluster | NdbOperation | created=8, free=8, sizeof=660 |\n| ndbcluster | NdbIndexScanOperation | created=1, free=1, sizeof=744 |\n| ndbcluster | NdbIndexOperation | created=0, free=0, sizeof=664 |\n| ndbcluster | NdbRecAttr | created=1285, free=1285, sizeof=60 |\n| ndbcluster | NdbApiSignal | created=16, free=16, sizeof=136 |\n| ndbcluster | NdbLabel | created=0, free=0, sizeof=196 |\n| ndbcluster | NdbBranch | created=0, free=0, sizeof=24 |\n| ndbcluster | NdbSubroutine | created=0, free=0, sizeof=68 |\n| ndbcluster | NdbCall | created=0, free=0, sizeof=16 |\n| ndbcluster | NdbBlob | created=1, free=1, sizeof=264 |\n| ndbcluster | NdbReceiver | created=4, free=0, sizeof=68 |\n| ndbcluster | binlog | latest_epoch=155467, latest_trans_epoch=148126,\n latest_received_binlog_epoch=0, latest_handled_binlog_epoch=0,\n latest_applied_binlog_epoch=0 |\n+------------+-----------------------+--------------------------------------------------+\n\nThe rows with connection and binlog in the Name column were added to\nthe output of this statement in MySQL 5.1. The Status column in each of\nthese rows provides information about the MySQL server\'s connection to\nthe cluster and about the cluster binary log\'s status, respectively.\nThe Status information is in the form of comma-delimited set of\nname/value pairs.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/show-engine.html\n\n','','http://dev.mysql.com/doc/refman/5.1/en/show-engine.html'),(367,'NAME_CONST',15,'Syntax:\nNAME_CONST(name,value)\n\nReturns the given value. When used to produce a result set column,\nNAME_CONST() causes the column to have the given name. The arguments\nshould be constants.\n\nmysql> SELECT NAME_CONST(\'myname\', 14);\n+--------+\n| myname |\n+--------+\n| 14 |\n+--------+\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/miscellaneous-functions.html\n\n','','http://dev.mysql.com/doc/refman/5.1/en/miscellaneous-functions.html'),(368,'RELEASE_LOCK',15,'Syntax:\nRELEASE_LOCK(str)\n\nReleases the lock named by the string str that was obtained with\nGET_LOCK(). Returns 1 if the lock was released, 0 if the lock was not\nestablished by this thread (in which case the lock is not released),\nand NULL if the named lock did not exist. The lock does not exist if it\nwas never obtained by a call to GET_LOCK() or if it has previously been\nreleased.\n\nThe DO statement is convenient to use with RELEASE_LOCK(). See [HELP\nDO].\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/miscellaneous-functions.html\n\n','','http://dev.mysql.com/doc/refman/5.1/en/miscellaneous-functions.html'),(369,'IS NULL',18,'Syntax:\nIS NULL\n\nTests whether a value is NULL.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/comparison-operators.html\n\n','mysql> SELECT 1 IS NULL, 0 IS NULL, NULL IS NULL;\n -> 0, 0, 1\n','http://dev.mysql.com/doc/refman/5.1/en/comparison-operators.html'),(370,'CONVERT_TZ',31,'Syntax:\nCONVERT_TZ(dt,from_tz,to_tz)\n\nCONVERT_TZ() converts a datetime value dt from the time zone given by\nfrom_tz to the time zone given by to_tz and returns the resulting\nvalue. Time zones are specified as described in\nhttp://dev.mysql.com/doc/refman/5.1/en/time-zone-support.html. This\nfunction returns NULL if the arguments are invalid.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/date-and-time-functions.html\n\n','mysql> SELECT CONVERT_TZ(\'2004-01-01 12:00:00\',\'GMT\',\'MET\');\n -> \'2004-01-01 13:00:00\'\nmysql> SELECT CONVERT_TZ(\'2004-01-01 12:00:00\',\'+00:00\',\'+10:00\');\n -> \'2004-01-01 22:00:00\'\n','http://dev.mysql.com/doc/refman/5.1/en/date-and-time-functions.html'),(371,'TIME_TO_SEC',31,'Syntax:\nTIME_TO_SEC(time)\n\nReturns the time argument, converted to seconds.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/date-and-time-functions.html\n\n','mysql> SELECT TIME_TO_SEC(\'22:23:00\');\n -> 80580\nmysql> SELECT TIME_TO_SEC(\'00:39:38\');\n -> 2378\n','http://dev.mysql.com/doc/refman/5.1/en/date-and-time-functions.html'),(372,'WEEKDAY',31,'Syntax:\nWEEKDAY(date)\n\nReturns the weekday index for date (0 = Monday, 1 = Tuesday, ... 6 =\nSunday).\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/date-and-time-functions.html\n\n','mysql> SELECT WEEKDAY(\'2008-02-03 22:23:00\');\n -> 6\nmysql> SELECT WEEKDAY(\'2007-11-06\');\n -> 1\n','http://dev.mysql.com/doc/refman/5.1/en/date-and-time-functions.html'),(373,'EXPORT_SET',36,'Syntax:\nEXPORT_SET(bits,on,off[,separator[,number_of_bits]])\n\nReturns a string such that for every bit set in the value bits, you get\nan on string and for every bit not set in the value, you get an off\nstring. Bits in bits are examined from right to left (from low-order to\nhigh-order bits). Strings are added to the result from left to right,\nseparated by the separator string (the default being the comma\ncharacter \",\"). The number of bits examined is given by number_of_bits\n(defaults to 64).\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/string-functions.html\n\n','mysql> SELECT EXPORT_SET(5,\'Y\',\'N\',\',\',4);\n -> \'Y,N,Y,N\'\nmysql> SELECT EXPORT_SET(6,\'1\',\'0\',\',\',10);\n -> \'0,1,1,0,0,0,0,0,0,0\'\n','http://dev.mysql.com/doc/refman/5.1/en/string-functions.html'),(374,'ALTER SERVER',38,'Syntax:\nALTER SERVER server_name\n OPTIONS (option [, option] ...)\n\nAlters the server information for server_name, adjusting the specified\noptions as per the CREATE SERVER command. See [HELP CREATE SERVER]. The\ncorresponding fields in the mysql.servers table are updated\naccordingly. This statement requires the SUPER privilege.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/alter-server.html\n\n','ALTER SERVER s OPTIONS (USER \'sally\');\n','http://dev.mysql.com/doc/refman/5.1/en/alter-server.html'),(375,'TIME FUNCTION',31,'Syntax:\nTIME(expr)\n\nExtracts the time part of the time or datetime expression expr and\nreturns it as a string.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/date-and-time-functions.html\n\n','mysql> SELECT TIME(\'2003-12-31 01:02:03\');\n -> \'01:02:03\'\nmysql> SELECT TIME(\'2003-12-31 01:02:03.000123\');\n -> \'01:02:03.000123\'\n','http://dev.mysql.com/doc/refman/5.1/en/date-and-time-functions.html'),(376,'DATE_ADD',31,'Syntax:\nDATE_ADD(date,INTERVAL expr unit), DATE_SUB(date,INTERVAL expr unit)\n\nThese functions perform date arithmetic. The date argument specifies\nthe starting date or datetime value. expr is an expression specifying\nthe interval value to be added or subtracted from the starting date.\nexpr is a string; it may start with a \"-\" for negative intervals. unit\nis a keyword indicating the units in which the expression should be\ninterpreted.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/date-and-time-functions.html\n\n','mysql> SELECT \'2008-12-31 23:59:59\' + INTERVAL 1 SECOND;\n -> \'2009-01-01 00:00:00\'\nmysql> SELECT INTERVAL 1 DAY + \'2008-12-31\';\n -> \'2009-01-01\'\nmysql> SELECT \'2005-01-01\' - INTERVAL 1 SECOND;\n -> \'2004-12-31 23:59:59\'\nmysql> SELECT DATE_ADD(\'2000-12-31 23:59:59\',\n -> INTERVAL 1 SECOND);\n -> \'2001-01-01 00:00:00\'\nmysql> SELECT DATE_ADD(\'2010-12-31 23:59:59\',\n -> INTERVAL 1 DAY);\n -> \'2011-01-01 23:59:59\'\nmysql> SELECT DATE_ADD(\'2100-12-31 23:59:59\',\n -> INTERVAL \'1:1\' MINUTE_SECOND);\n -> \'2101-01-01 00:01:00\'\nmysql> SELECT DATE_SUB(\'2005-01-01 00:00:00\',\n -> INTERVAL \'1 1:1:1\' DAY_SECOND);\n -> \'2004-12-30 22:58:59\'\nmysql> SELECT DATE_ADD(\'1900-01-01 00:00:00\',\n -> INTERVAL \'-1 10\' DAY_HOUR);\n -> \'1899-12-30 14:00:00\'\nmysql> SELECT DATE_SUB(\'1998-01-02\', INTERVAL 31 DAY);\n -> \'1997-12-02\'\nmysql> SELECT DATE_ADD(\'1992-12-31 23:59:59.000002\',\n -> INTERVAL \'1.999999\' SECOND_MICROSECOND);\n -> \'1993-01-01 00:00:01.000001\'\n','http://dev.mysql.com/doc/refman/5.1/en/date-and-time-functions.html'),(377,'CAST',36,'Syntax:\nCAST(expr AS type)\n\nThe CAST() function takes a value of one type and produce a value of\nanother type, similar to CONVERT(). See the description of CONVERT()\nfor more information.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/cast-functions.html\n\n','','http://dev.mysql.com/doc/refman/5.1/en/cast-functions.html'),(378,'SOUNDS LIKE',36,'Syntax:\nexpr1 SOUNDS LIKE expr2\n\nThis is the same as SOUNDEX(expr1) = SOUNDEX(expr2).\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/string-functions.html\n\n','','http://dev.mysql.com/doc/refman/5.1/en/string-functions.html'),(379,'PERIOD_DIFF',31,'Syntax:\nPERIOD_DIFF(P1,P2)\n\nReturns the number of months between periods P1 and P2. P1 and P2\nshould be in the format YYMM or YYYYMM. Note that the period arguments\nP1 and P2 are not date values.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/date-and-time-functions.html\n\n','mysql> SELECT PERIOD_DIFF(200802,200703);\n -> 11\n','http://dev.mysql.com/doc/refman/5.1/en/date-and-time-functions.html'),(380,'LIKE',36,'Syntax:\nexpr LIKE pat [ESCAPE \'escape_char\']\n\nPattern matching using SQL simple regular expression comparison.\nReturns 1 (TRUE) or 0 (FALSE). If either expr or pat is NULL, the\nresult is NULL.\n\nThe pattern need not be a literal string. For example, it can be\nspecified as a string expression or table column.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/string-comparison-functions.html\n\n','mysql> SELECT \'David!\' LIKE \'David_\';\n -> 1\nmysql> SELECT \'David!\' LIKE \'%D%v%\';\n -> 1\n','http://dev.mysql.com/doc/refman/5.1/en/string-comparison-functions.html'),(381,'MULTIPOINT',24,'MultiPoint(pt1,pt2,...)\n\nConstructs a MultiPoint value using Point or WKB Point arguments.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/creating-spatial-values.html#gis-mysql-specific-functions\n\n','','http://dev.mysql.com/doc/refman/5.1/en/creating-spatial-values.html#gis-mysql-specific-functions'),(382,'>>',19,'Syntax:\n>>\n\nShifts a longlong (BIGINT) number to the right.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/bit-functions.html\n\n','mysql> SELECT 4 >> 2;\n -> 1\n','http://dev.mysql.com/doc/refman/5.1/en/bit-functions.html'),(383,'FETCH',23,'Syntax:\nFETCH cursor_name INTO var_name [, var_name] ...\n\nThis statement fetches the next row (if a row exists) using the\nspecified open cursor, and advances the cursor pointer.\n\nIf no more rows are available, a No Data condition occurs with SQLSTATE\nvalue 02000. To detect this condition, you can set up a handler for it\n(or for a NOT FOUND condition). An example is shown in\nhttp://dev.mysql.com/doc/refman/5.1/en/cursors.html.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/fetch.html\n\n','','http://dev.mysql.com/doc/refman/5.1/en/fetch.html'),(384,'AVG',16,'Syntax:\nAVG([DISTINCT] expr)\n\nReturns the average value of expr. The DISTINCT option can be used to\nreturn the average of the distinct values of expr.\n\nAVG() returns NULL if there were no matching rows.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/group-by-functions.html\n\n','mysql> SELECT student_name, AVG(test_score)\n -> FROM student\n -> GROUP BY student_name;\n','http://dev.mysql.com/doc/refman/5.1/en/group-by-functions.html'),(385,'TRUE FALSE',29,'The constants TRUE and FALSE evaluate to 1 and 0, respectively. The\nconstant names can be written in any lettercase.\n\nmysql> SELECT TRUE, true, FALSE, false;\n -> 1, 1, 0, 0\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/boolean-values.html\n\n','','http://dev.mysql.com/doc/refman/5.1/en/boolean-values.html'),(386,'MBRWITHIN',6,'MBRWithin(g1,g2)\n\nReturns 1 or 0 to indicate whether the Minimum Bounding Rectangle of g1\nis within the Minimum Bounding Rectangle of g2. This tests the opposite\nrelationship as MBRContains().\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/relations-on-geometry-mbr.html\n\n','mysql> SET @g1 = GeomFromText(\'Polygon((0 0,0 3,3 3,3 0,0 0))\');\nmysql> SET @g2 = GeomFromText(\'Polygon((0 0,0 5,5 5,5 0,0 0))\');\nmysql> SELECT MBRWithin(@g1,@g2), MBRWithin(@g2,@g1);\n+--------------------+--------------------+\n| MBRWithin(@g1,@g2) | MBRWithin(@g2,@g1) |\n+--------------------+--------------------+\n| 1 | 0 |\n+--------------------+--------------------+\n','http://dev.mysql.com/doc/refman/5.1/en/relations-on-geometry-mbr.html'),(387,'IN',18,'Syntax:\nexpr IN (value,...)\n\nReturns 1 if expr is equal to any of the values in the IN list, else\nreturns 0. If all values are constants, they are evaluated according to\nthe type of expr and sorted. The search for the item then is done using\na binary search. This means IN is very quick if the IN value list\nconsists entirely of constants. Otherwise, type conversion takes place\naccording to the rules described in\nhttp://dev.mysql.com/doc/refman/5.1/en/type-conversion.html, but\napplied to all the arguments.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/comparison-operators.html\n\n','mysql> SELECT 2 IN (0,3,5,7);\n -> 0\nmysql> SELECT \'wefwf\' IN (\'wee\',\'wefwf\',\'weg\');\n -> 1\n','http://dev.mysql.com/doc/refman/5.1/en/comparison-operators.html'),(388,'QUOTE',36,'Syntax:\nQUOTE(str)\n\nQuotes a string to produce a result that can be used as a properly\nescaped data value in an SQL statement. The string is returned enclosed\nby single quotation marks and with each instance of single quote (\"\'\"),\nbackslash (\"\\\"), ASCII NUL, and Control-Z preceded by a backslash. If\nthe argument is NULL, the return value is the word \"NULL\" without\nenclosing single quotation marks.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/string-functions.html\n\n','mysql> SELECT QUOTE(\'Don\\\'t!\');\n -> \'Don\\\'t!\'\nmysql> SELECT QUOTE(NULL);\n -> NULL\n','http://dev.mysql.com/doc/refman/5.1/en/string-functions.html'),(389,'SESSION_USER',17,'Syntax:\nSESSION_USER()\n\nSESSION_USER() is a synonym for USER().\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/information-functions.html\n\n','','http://dev.mysql.com/doc/refman/5.1/en/information-functions.html'),(390,'HELP COMMAND',26,'Syntax:\nmysql> help search_string\n\nIf you provide an argument to the help command, mysql uses it as a\nsearch string to access server-side help from the contents of the MySQL\nReference Manual. The proper operation of this command requires that\nthe help tables in the mysql database be initialized with help topic\ninformation (see\nhttp://dev.mysql.com/doc/refman/5.1/en/server-side-help-support.html).\n\nIf there is no match for the search string, the search fails:\n\nmysql> help me\n\nNothing found\nPlease try to run \'help contents\' for a list of all accessible topics\n\nUse help contents to see a list of the help categories:\n\nmysql> help contents\nYou asked for help about help category: \"Contents\"\nFor more information, type \'help \', where is one of the\nfollowing categories:\n Account Management\n Administration\n Data Definition\n Data Manipulation\n Data Types\n Functions\n Functions and Modifiers for Use with GROUP BY\n Geographic Features\n Language Structure\n Plugins\n Storage Engines\n Stored Routines\n Table Maintenance\n Transactions\n Triggers\n\nIf the search string matches multiple items, mysql shows a list of\nmatching topics:\n\nmysql> help logs\nMany help items for your request exist.\nTo make a more specific request, please type \'help \',\nwhere is one of the following topics:\n SHOW\n SHOW BINARY LOGS\n SHOW ENGINE\n SHOW LOGS\n\nUse a topic as the search string to see the help entry for that topic:\n\nmysql> help show binary logs\nName: \'SHOW BINARY LOGS\'\nDescription:\nSyntax:\nSHOW BINARY LOGS\nSHOW MASTER LOGS\n\nLists the binary log files on the server. This statement is used as\npart of the procedure described in [purge-binary-logs], that shows how\nto determine which logs can be purged.\n\nmysql> SHOW BINARY LOGS;\n+---------------+-----------+\n| Log_name | File_size |\n+---------------+-----------+\n| binlog.000015 | 724935 |\n| binlog.000016 | 733481 |\n+---------------+-----------+\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/mysql-server-side-help.html\n\n','','http://dev.mysql.com/doc/refman/5.1/en/mysql-server-side-help.html'),(391,'QUARTER',31,'Syntax:\nQUARTER(date)\n\nReturns the quarter of the year for date, in the range 1 to 4.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/date-and-time-functions.html\n\n','mysql> SELECT QUARTER(\'2008-04-01\');\n -> 2\n','http://dev.mysql.com/doc/refman/5.1/en/date-and-time-functions.html'),(392,'POSITION',36,'Syntax:\nPOSITION(substr IN str)\n\nPOSITION(substr IN str) is a synonym for LOCATE(substr,str).\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/string-functions.html\n\n','','http://dev.mysql.com/doc/refman/5.1/en/string-functions.html'),(393,'SHOW CREATE FUNCTION',26,'Syntax:\nSHOW CREATE FUNCTION func_name\n\nThis statement is similar to SHOW CREATE PROCEDURE but for stored\nfunctions. See [HELP SHOW CREATE PROCEDURE].\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/show-create-function.html\n\n','','http://dev.mysql.com/doc/refman/5.1/en/show-create-function.html'),(394,'IS_USED_LOCK',15,'Syntax:\nIS_USED_LOCK(str)\n\nChecks whether the lock named str is in use (that is, locked). If so,\nit returns the connection identifier of the client that holds the lock.\nOtherwise, it returns NULL.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/miscellaneous-functions.html\n\n','','http://dev.mysql.com/doc/refman/5.1/en/miscellaneous-functions.html'),(395,'POLYFROMTEXT',3,'PolyFromText(wkt[,srid]), PolygonFromText(wkt[,srid])\n\nConstructs a POLYGON value using its WKT representation and SRID.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/creating-spatial-values.html#gis-wkt-functions\n\n','','http://dev.mysql.com/doc/refman/5.1/en/creating-spatial-values.html#gis-wkt-functions'),(396,'DES_ENCRYPT',12,'Syntax:\nDES_ENCRYPT(str[,{key_num|key_str}])\n\nEncrypts the string with the given key using the Triple-DES algorithm.\n\nThis function works only if MySQL has been configured with SSL support.\nSee http://dev.mysql.com/doc/refman/5.1/en/secure-connections.html.\n\nThe encryption key to use is chosen based on the second argument to\nDES_ENCRYPT(), if one was given. With no argument, the first key from\nthe DES key file is used. With a key_num argument, the given key number\n(0 to 9) from the DES key file is used. With a key_str argument, the\ngiven key string is used to encrypt str.\n\nThe key file can be specified with the --des-key-file server option.\n\nThe return string is a binary string where the first character is\nCHAR(128 | key_num). If an error occurs, DES_ENCRYPT() returns NULL.\n\nThe 128 is added to make it easier to recognize an encrypted key. If\nyou use a string key, key_num is 127.\n\nThe string length for the result is given by this formula:\n\nnew_len = orig_len + (8 - (orig_len % 8)) + 1\n\nEach line in the DES key file has the following format:\n\nkey_num des_key_str\n\nEach key_num value must be a number in the range from 0 to 9. Lines in\nthe file may be in any order. des_key_str is the string that is used to\nencrypt the message. There should be at least one space between the\nnumber and the key. The first key is the default key that is used if\nyou do not specify any key argument to DES_ENCRYPT().\n\nYou can tell MySQL to read new key values from the key file with the\nFLUSH DES_KEY_FILE statement. This requires the RELOAD privilege.\n\nOne benefit of having a set of default keys is that it gives\napplications a way to check for the existence of encrypted column\nvalues, without giving the end user the right to decrypt those values.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/encryption-functions.html\n\n','mysql> SELECT customer_address FROM customer_table \n > WHERE crypted_credit_card = DES_ENCRYPT(\'credit_card_number\');\n','http://dev.mysql.com/doc/refman/5.1/en/encryption-functions.html'),(397,'CEIL',4,'Syntax:\nCEIL(X)\n\nCEIL() is a synonym for CEILING().\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/mathematical-functions.html\n\n','','http://dev.mysql.com/doc/refman/5.1/en/mathematical-functions.html'),(398,'LENGTH',36,'Syntax:\nLENGTH(str)\n\nReturns the length of the string str, measured in bytes. A multi-byte\ncharacter counts as multiple bytes. This means that for a string\ncontaining five two-byte characters, LENGTH() returns 10, whereas\nCHAR_LENGTH() returns 5.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/string-functions.html\n\n','mysql> SELECT LENGTH(\'text\');\n -> 4\n','http://dev.mysql.com/doc/refman/5.1/en/string-functions.html'),(399,'STR_TO_DATE',31,'Syntax:\nSTR_TO_DATE(str,format)\n\nThis is the inverse of the DATE_FORMAT() function. It takes a string\nstr and a format string format. STR_TO_DATE() returns a DATETIME value\nif the format string contains both date and time parts, or a DATE or\nTIME value if the string contains only date or time parts. If the date,\ntime, or datetime value extracted from str is illegal, STR_TO_DATE()\nreturns NULL and produces a warning.\n\nThe server scans str attempting to match format to it. The format\nstring can contain literal characters and format specifiers beginning\nwith %. Literal characters in format must match literally in str.\nFormat specifiers in format must match a date or time part in str. For\nthe specifiers that can be used in format, see the DATE_FORMAT()\nfunction description.\n\nmysql> SELECT STR_TO_DATE(\'01,5,2013\',\'%d,%m,%Y\');\n -> \'2013-05-01\'\nmysql> SELECT STR_TO_DATE(\'May 1, 2013\',\'%M %d,%Y\');\n -> \'2013-05-01\'\n\nScanning starts at the beginning of str and fails if format is found\nnot to match. Extra characters at the end of str are ignored.\n\nmysql> SELECT STR_TO_DATE(\'a09:30:17\',\'a%h:%i:%s\');\n -> \'09:30:17\'\nmysql> SELECT STR_TO_DATE(\'a09:30:17\',\'%h:%i:%s\');\n -> NULL\nmysql> SELECT STR_TO_DATE(\'09:30:17a\',\'%h:%i:%s\');\n -> \'09:30:17\'\n\nUnspecified date or time parts have a value of 0, so incompletely\nspecified values in str produce a result with some or all parts set to\n0:\n\nmysql> SELECT STR_TO_DATE(\'abc\',\'abc\');\n -> \'0000-00-00\'\nmysql> SELECT STR_TO_DATE(\'9\',\'%m\');\n -> \'0000-09-00\'\nmysql> SELECT STR_TO_DATE(\'9\',\'%s\');\n -> \'00:00:09\'\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/date-and-time-functions.html\n\n','','http://dev.mysql.com/doc/refman/5.1/en/date-and-time-functions.html'),(400,'Y',11,'Y(p)\n\nReturns the Y-coordinate value for the point p as a double-precision\nnumber.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/geometry-property-functions.html#point-property-functions\n\n','mysql> SET @pt = \'Point(56.7 53.34)\';\nmysql> SELECT Y(GeomFromText(@pt));\n+----------------------+\n| Y(GeomFromText(@pt)) |\n+----------------------+\n| 53.34 |\n+----------------------+\n','http://dev.mysql.com/doc/refman/5.1/en/geometry-property-functions.html#point-property-functions'),(401,'SHOW INNODB STATUS',26,'Syntax:\nSHOW INNODB STATUS\n\nIn MySQL 5.1, this is a deprecated synonym for SHOW ENGINE INNODB\nSTATUS. See [HELP SHOW ENGINE]. SHOW INNODB STATUS is removed in MySQL\n5.5.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/show-innodb-status.html\n\n','','http://dev.mysql.com/doc/refman/5.1/en/show-innodb-status.html'),(402,'CHECKSUM TABLE',20,'Syntax:\nCHECKSUM TABLE tbl_name [, tbl_name] ... [ QUICK | EXTENDED ]\n\nCHECKSUM TABLE reports a table checksum.\n\nWith QUICK, the live table checksum is reported if it is available, or\nNULL otherwise. This is very fast. A live checksum is enabled by\nspecifying the CHECKSUM=1 table option when you create the table;\ncurrently, this is supported only for MyISAM tables. See [HELP CREATE\nTABLE].\n\nWith EXTENDED, the entire table is read row by row and the checksum is\ncalculated. This can be very slow for large tables.\n\nIf neither QUICK nor EXTENDED is specified, MySQL returns a live\nchecksum if the table storage engine supports it and scans the table\notherwise.\n\nFor a nonexistent table, CHECKSUM TABLE returns NULL and generates a\nwarning.\n\nThe checksum value depends on the table row format. If the row format\nchanges, the checksum also changes. For example, the storage format for\nVARCHAR changed between MySQL 4.1 and 5.0, so if a 4.1 table is\nupgraded to MySQL 5.0, the checksum value may change.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/checksum-table.html\n\n','','http://dev.mysql.com/doc/refman/5.1/en/checksum-table.html'),(403,'NUMINTERIORRINGS',2,'NumInteriorRings(poly)\n\nReturns the number of interior rings in the Polygon value poly.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/geometry-property-functions.html#polygon-property-functions\n\n','mysql> SET @poly =\n -> \'Polygon((0 0,0 3,3 3,3 0,0 0),(1 1,1 2,2 2,2 1,1 1))\';\nmysql> SELECT NumInteriorRings(GeomFromText(@poly));\n+---------------------------------------+\n| NumInteriorRings(GeomFromText(@poly)) |\n+---------------------------------------+\n| 1 |\n+---------------------------------------+\n','http://dev.mysql.com/doc/refman/5.1/en/geometry-property-functions.html#polygon-property-functions'),(404,'INTERIORRINGN',2,'InteriorRingN(poly,N)\n\nReturns the N-th interior ring for the Polygon value poly as a\nLineString. Rings are numbered beginning with 1.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/geometry-property-functions.html#polygon-property-functions\n\n','mysql> SET @poly =\n -> \'Polygon((0 0,0 3,3 3,3 0,0 0),(1 1,1 2,2 2,2 1,1 1))\';\nmysql> SELECT AsText(InteriorRingN(GeomFromText(@poly),1));\n+----------------------------------------------+\n| AsText(InteriorRingN(GeomFromText(@poly),1)) |\n+----------------------------------------------+\n| LINESTRING(1 1,1 2,2 2,2 1,1 1) |\n+----------------------------------------------+\n','http://dev.mysql.com/doc/refman/5.1/en/geometry-property-functions.html#polygon-property-functions'),(405,'UTC_TIME',31,'Syntax:\nUTC_TIME, UTC_TIME()\n\nReturns the current UTC time as a value in \'HH:MM:SS\' or HHMMSS.uuuuuu\nformat, depending on whether the function is used in a string or\nnumeric context.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/date-and-time-functions.html\n\n','mysql> SELECT UTC_TIME(), UTC_TIME() + 0;\n -> \'18:07:53\', 180753.000000\n','http://dev.mysql.com/doc/refman/5.1/en/date-and-time-functions.html'),(406,'DROP FUNCTION',38,'The DROP FUNCTION statement is used to drop stored functions and\nuser-defined functions (UDFs):\n\no For information about dropping stored functions, see [HELP DROP\n PROCEDURE].\n\no For information about dropping user-defined functions, see [HELP DROP\n FUNCTION UDF].\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/drop-function.html\n\n','','http://dev.mysql.com/doc/refman/5.1/en/drop-function.html'),(407,'ALTER EVENT',38,'Syntax:\nALTER\n [DEFINER = { user | CURRENT_USER }]\n EVENT event_name\n [ON SCHEDULE schedule]\n [ON COMPLETION [NOT] PRESERVE]\n [RENAME TO new_event_name]\n [ENABLE | DISABLE | DISABLE ON SLAVE]\n [COMMENT \'comment\']\n [DO event_body]\n\nThe ALTER EVENT statement is used to change one or more of the\ncharacteristics of an existing event without the need to drop and\nrecreate it. The syntax for each of the DEFINER, ON SCHEDULE, ON\nCOMPLETION, COMMENT, ENABLE / DISABLE, and DO clauses is exactly the\nsame as when used with CREATE EVENT. (See [HELP CREATE EVENT].)\n\nSupport for the DEFINER clause was added in MySQL 5.1.17.\n\nBeginning with MySQL 5.1.12, this statement requires the EVENT\nprivilege. When a user executes a successful ALTER EVENT statement,\nthat user becomes the definer for the affected event.\n\n(In MySQL 5.1.11 and earlier, an event could be altered only by its\ndefiner, or by a user having the SUPER privilege.)\n\nALTER EVENT works only with an existing event:\n\nmysql> ALTER EVENT no_such_event \n > ON SCHEDULE \n > EVERY \'2:3\' DAY_HOUR;\nERROR 1517 (HY000): Unknown event \'no_such_event\'\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/alter-event.html\n\n','','http://dev.mysql.com/doc/refman/5.1/en/alter-event.html'),(408,'STDDEV',16,'Syntax:\nSTDDEV(expr)\n\nReturns the population standard deviation of expr. This function is\nprovided for compatibility with Oracle. The standard SQL function\nSTDDEV_POP() can be used instead.\n\nThis function returns NULL if there were no matching rows.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/group-by-functions.html\n\n','','http://dev.mysql.com/doc/refman/5.1/en/group-by-functions.html'),(409,'DATE_SUB',31,'Syntax:\nDATE_SUB(date,INTERVAL expr unit)\n\nSee the description for DATE_ADD().\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/date-and-time-functions.html\n\n','','http://dev.mysql.com/doc/refman/5.1/en/date-and-time-functions.html'),(410,'PERIOD_ADD',31,'Syntax:\nPERIOD_ADD(P,N)\n\nAdds N months to period P (in the format YYMM or YYYYMM). Returns a\nvalue in the format YYYYMM. Note that the period argument P is not a\ndate value.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/date-and-time-functions.html\n\n','mysql> SELECT PERIOD_ADD(200801,2);\n -> 200803\n','http://dev.mysql.com/doc/refman/5.1/en/date-and-time-functions.html'),(411,'|',19,'Syntax:\n|\n\nBitwise OR:\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/bit-functions.html\n\n','mysql> SELECT 29 | 15;\n -> 31\n','http://dev.mysql.com/doc/refman/5.1/en/bit-functions.html'),(412,'GEOMFROMTEXT',3,'GeomFromText(wkt[,srid]), GeometryFromText(wkt[,srid])\n\nConstructs a geometry value of any type using its WKT representation\nand SRID.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/creating-spatial-values.html#gis-wkt-functions\n\n','','http://dev.mysql.com/doc/refman/5.1/en/creating-spatial-values.html#gis-wkt-functions'),(413,'UUID_SHORT',15,'Syntax:\nUUID_SHORT()\n\nReturns a \"short\" universal identifier as a 64-bit unsigned integer\n(rather than a string-form 128-bit identifier as returned by the UUID()\nfunction).\n\nThe value of UUID_SHORT() is guaranteed to be unique if the following\nconditions hold:\n\no The server_id of the current host is unique among your set of master\n and slave servers\n\no server_id is between 0 and 255\n\no You don\'t set back your system time for your server between mysqld\n restarts\n\no You do not invoke UUID_SHORT() on average more than 16 million times\n per second between mysqld restarts\n\nThe UUID_SHORT() return value is constructed this way:\n\n (server_id & 255) << 56\n+ (server_startup_time_in_seconds << 24)\n+ incremented_variable++;\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/miscellaneous-functions.html\n\n','mysql> SELECT UUID_SHORT();\n -> 92395783831158784\n','http://dev.mysql.com/doc/refman/5.1/en/miscellaneous-functions.html'),(414,'RIGHT',36,'Syntax:\nRIGHT(str,len)\n\nReturns the rightmost len characters from the string str, or NULL if\nany argument is NULL.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/string-functions.html\n\n','mysql> SELECT RIGHT(\'foobarbar\', 4);\n -> \'rbar\'\n','http://dev.mysql.com/doc/refman/5.1/en/string-functions.html'),(415,'DATEDIFF',31,'Syntax:\nDATEDIFF(expr1,expr2)\n\nDATEDIFF() returns expr1 - expr2 expressed as a value in days from one\ndate to the other. expr1 and expr2 are date or date-and-time\nexpressions. Only the date parts of the values are used in the\ncalculation.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/date-and-time-functions.html\n\n','mysql> SELECT DATEDIFF(\'2007-12-31 23:59:59\',\'2007-12-30\');\n -> 1\nmysql> SELECT DATEDIFF(\'2010-11-30 23:59:59\',\'2010-12-31\');\n -> -31\n','http://dev.mysql.com/doc/refman/5.1/en/date-and-time-functions.html'),(416,'DROP TABLESPACE',38,'Syntax:\nDROP TABLESPACE tablespace_name\n ENGINE [=] engine_name\n\nThis statement drops a tablespace that was previously created using\nCREATE TABLESPACE (see [HELP CREATE TABLESPACE]).\n\n*Important*: The tablespace to be dropped must not contain any data\nfiles; in other words, before you can drop a tablespace, you must first\ndrop each of its data files using ALTER TABLESPACE ... DROP DATAFILE\n(see [HELP ALTER TABLESPACE]).\n\nThe ENGINE clause (required) specifies the storage engine used by the\ntablespace. In MySQL 5.1, the only accepted values for engine_name are\nNDB and NDBCLUSTER.\n\nDROP TABLESPACE was added in MySQL 5.1.6. In MySQL 5.1, it is useful\nonly with Disk Data storage for MySQL Cluster. See\nhttp://dev.mysql.com/doc/refman/5.1/en/mysql-cluster-disk-data.html.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/drop-tablespace.html\n\n','','http://dev.mysql.com/doc/refman/5.1/en/drop-tablespace.html'),(417,'DROP PROCEDURE',38,'Syntax:\nDROP {PROCEDURE | FUNCTION} [IF EXISTS] sp_name\n\nThis statement is used to drop a stored procedure or function. That is,\nthe specified routine is removed from the server. You must have the\nALTER ROUTINE privilege for the routine. (If the\nautomatic_sp_privileges system variable is enabled, that privilege and\nEXECUTE are granted automatically to the routine creator when the\nroutine is created and dropped from the creator when the routine is\ndropped. See\nhttp://dev.mysql.com/doc/refman/5.1/en/stored-routines-privileges.html.\n)\n\nThe IF EXISTS clause is a MySQL extension. It prevents an error from\noccurring if the procedure or function does not exist. A warning is\nproduced that can be viewed with SHOW WARNINGS.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/drop-procedure.html\n\n','','http://dev.mysql.com/doc/refman/5.1/en/drop-procedure.html'),(418,'CHECK TABLE',20,'Syntax:\nCHECK TABLE tbl_name [, tbl_name] ... [option] ...\n\noption = {FOR UPGRADE | QUICK | FAST | MEDIUM | EXTENDED | CHANGED}\n\nCHECK TABLE checks a table or tables for errors. CHECK TABLE works for\nMyISAM, InnoDB, and ARCHIVE tables. Starting with MySQL 5.1.9, CHECK\nTABLE is also valid for CSV tables, see\nhttp://dev.mysql.com/doc/refman/5.1/en/csv-storage-engine.html. For\nMyISAM tables, the key statistics are updated as well.\n\nCHECK TABLE can also check views for problems, such as tables that are\nreferenced in the view definition that no longer exist.\n\nBeginning with MySQL 5.1.27, CHECK TABLE is also supported for\npartitioned tables. Also beginning with MySQL 5.1.27, you can use ALTER\nTABLE ... CHECK PARTITION to check one or more partitions; for more\ninformation, see [HELP ALTER TABLE], and\nhttp://dev.mysql.com/doc/refman/5.1/en/partitioning-maintenance.html.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/check-table.html\n\n','','http://dev.mysql.com/doc/refman/5.1/en/check-table.html'),(419,'BIN',36,'Syntax:\nBIN(N)\n\nReturns a string representation of the binary value of N, where N is a\nlonglong (BIGINT) number. This is equivalent to CONV(N,10,2). Returns\nNULL if N is NULL.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/string-functions.html\n\n','mysql> SELECT BIN(12);\n -> \'1100\'\n','http://dev.mysql.com/doc/refman/5.1/en/string-functions.html'),(420,'INSTALL PLUGIN',5,'Syntax:\nINSTALL PLUGIN plugin_name SONAME \'shared_library_name\'\n\nThis statement installs a server plugin. It requires the INSERT\nprivilege for the mysql.plugin table.\n\nplugin_name is the name of the plugin as defined in the plugin\ndescriptor structure contained in the library file (see\nhttp://dev.mysql.com/doc/refman/5.1/en/plugin-data-structures.html).\nPlugin names are not case sensitive. For maximal compatibility, plugin\nnames should be limited to ASCII letters, digits, and underscore\nbecause they are used in C source files, shell command lines, M4 and\nBourne shell scripts, and SQL environments.\n\nshared_library_name is the name of the shared library that contains the\nplugin code. The name includes the file name extension (for example,\nlibmyplugin.so, libmyplugin.dll, or libmyplugin.dylib).\n\nThe shared library must be located in the plugin directory (the\ndirectory named by the plugin_dir system variable). The library must be\nin the plugin directory itself, not in a subdirectory. By default,\nplugin_dir is the plugin directory under the directory named by the\npkglibdir configuration variable, but it can be changed by setting the\nvalue of plugin_dir at server startup. For example, set its value in a\nmy.cnf file:\n\n[mysqld]\nplugin_dir=/path/to/plugin/directory\n\nIf the value of plugin_dir is a relative path name, it is taken to be\nrelative to the MySQL base directory (the value of the basedir system\nvariable).\n\nINSTALL PLUGIN loads and initializes the plugin code to make the plugin\navailable for use. A plugin is initialized by executing its\ninitialization function, which handles any setup that the plugin must\nperform before it can be used. When the server shuts down, it executes\nthe deinitialization function for each plugin that is loaded so that\nthe plugin has a change to perform any final cleanup.\n\nINSTALL PLUGIN also registers the plugin by adding a line that\nindicates the plugin name and library file name to the mysql.plugin\ntable. At server startup, the server loads and initializes any plugin\nthat is listed in the mysql.plugin table. This means that a plugin is\ninstalled with INSTALL PLUGIN only once, not every time the server\nstarts. Plugin loading at startup does not occur if the server is\nstarted with the --skip-grant-tables option.\n\nA plugin library can contain multiple plugins. For each of them to be\ninstalled, use a separate INSTALL PLUGIN statement. Each statement\nnames a different plugin, but all of them specify the same library\nname.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/install-plugin.html\n\n','','http://dev.mysql.com/doc/refman/5.1/en/install-plugin.html'),(421,'DECLARE CURSOR',23,'Syntax:\nDECLARE cursor_name CURSOR FOR select_statement\n\nThis statement declares a cursor. Multiple cursors may be declared in a\nstored program, but each cursor in a given block must have a unique\nname.\n\nThe SELECT statement cannot have an INTO clause.\n\nFor information available through SHOW statements, it is possible in\nmany cases to obtain equivalent information by using a cursor with an\nINFORMATION_SCHEMA table.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/declare-cursor.html\n\n','','http://dev.mysql.com/doc/refman/5.1/en/declare-cursor.html'),(422,'LOAD DATA',27,'Syntax:\nLOAD DATA [LOW_PRIORITY | CONCURRENT] [LOCAL] INFILE \'file_name\'\n [REPLACE | IGNORE]\n INTO TABLE tbl_name\n [CHARACTER SET charset_name]\n [{FIELDS | COLUMNS}\n [TERMINATED BY \'string\']\n [[OPTIONALLY] ENCLOSED BY \'char\']\n [ESCAPED BY \'char\']\n ]\n [LINES\n [STARTING BY \'string\']\n [TERMINATED BY \'string\']\n ]\n [IGNORE number LINES]\n [(col_name_or_user_var,...)]\n [SET col_name = expr,...]\n\nThe LOAD DATA INFILE statement reads rows from a text file into a table\nat a very high speed. The file name must be given as a literal string.\n\nLOAD DATA INFILE is the complement of SELECT ... INTO OUTFILE. (See\nhttp://dev.mysql.com/doc/refman/5.1/en/select.html.) To write data from\na table to a file, use SELECT ... INTO OUTFILE. To read the file back\ninto a table, use LOAD DATA INFILE. The syntax of the FIELDS and LINES\nclauses is the same for both statements. Both clauses are optional, but\nFIELDS must precede LINES if both are specified.\n\nFor more information about the efficiency of INSERT versus LOAD DATA\nINFILE and speeding up LOAD DATA INFILE, see\nhttp://dev.mysql.com/doc/refman/5.1/en/insert-speed.html.\n\nThe character set indicated by the character_set_database system\nvariable is used to interpret the information in the file. SET NAMES\nand the setting of character_set_client do not affect interpretation of\ninput. If the contents of the input file use a character set that\ndiffers from the default, it is usually preferable to specify the\ncharacter set of the file by using the CHARACTER SET clause, which is\navailable as of MySQL 5.1.17. A character set of binary specifies \"no\nconversion.\"\n\nLOAD DATA INFILE interprets all fields in the file as having the same\ncharacter set, regardless of the data types of the columns into which\nfield values are loaded. For proper interpretation of file contents,\nyou must ensure that it was written with the correct character set. For\nexample, if you write a data file with mysqldump -T or by issuing a\nSELECT ... INTO OUTFILE statement in mysql, be sure to use a\n--default-character-set option with mysqldump or mysql so that output\nis written in the character set to be used when the file is loaded with\nLOAD DATA INFILE.\n\nNote that it is currently not possible to load data files that use the\nucs2 character set.\n\nAs of MySQL 5.1.6, the character_set_filesystem system variable\ncontrols the interpretation of the file name.\n\nYou can also load data files by using the mysqlimport utility; it\noperates by sending a LOAD DATA INFILE statement to the server. The\n--local option causes mysqlimport to read data files from the client\nhost. You can specify the --compress option to get better performance\nover slow networks if the client and server support the compressed\nprotocol. See http://dev.mysql.com/doc/refman/5.1/en/mysqlimport.html.\n\nIf you use LOW_PRIORITY, execution of the LOAD DATA statement is\ndelayed until no other clients are reading from the table. This affects\nonly storage engines that use only table-level locking (such as MyISAM,\nMEMORY, and MERGE).\n\nIf you specify CONCURRENT with a MyISAM table that satisfies the\ncondition for concurrent inserts (that is, it contains no free blocks\nin the middle), other threads can retrieve data from the table while\nLOAD DATA is executing. Using this option affects the performance of\nLOAD DATA a bit, even if no other thread is using the table at the same\ntime.\n\nPrior to MySQL 5.1.43, CONCURRENT was not replicated when using\nstatement-based replication (see Bug#34628\n(http://bugs.mysql.com/bug.php?id=34628)). However, it is replicated\nwhen using row-based replication, regardless of the version. See\nhttp://dev.mysql.com/doc/refman/5.1/en/replication-features-load-data.h\ntml, for more information.\n\n*Note*: Prior to MySQL 5.1.23, LOAD DATA performed very poorly when\nimporting into partitioned tables. The statement now uses buffering to\nimprove performance; however, the buffer uses 130KB memory per\npartition to achieve this. (Bug#26527\n(http://bugs.mysql.com/bug.php?id=26527))\n\nThe LOCAL keyword, if specified, is interpreted with respect to the\nclient end of the connection:\n\no If LOCAL is specified, the file is read by the client program on the\n client host and sent to the server. The file can be given as a full\n path name to specify its exact location. If given as a relative path\n name, the name is interpreted relative to the directory in which the\n client program was started.\n\no If LOCAL is not specified, the file must be located on the server\n host and is read directly by the server. The server uses the\n following rules to locate the file:\n\n o If the file name is an absolute path name, the server uses it as\n given.\n\n o If the file name is a relative path name with one or more leading\n components, the server searches for the file relative to the\n server\'s data directory.\n\n o If a file name with no leading components is given, the server\n looks for the file in the database directory of the default\n database.\n\nNote that, in the non-LOCAL case, these rules mean that a file named as\n./myfile.txt is read from the server\'s data directory, whereas the file\nnamed as myfile.txt is read from the database directory of the default\ndatabase. For example, if db1 is the default database, the following\nLOAD DATA statement reads the file data.txt from the database directory\nfor db1, even though the statement explicitly loads the file into a\ntable in the db2 database:\n\nLOAD DATA INFILE \'data.txt\' INTO TABLE db2.my_table;\n\nWindows path names are specified using forward slashes rather than\nbackslashes. If you do use backslashes, you must double them.\n\n*Note*: A regression in MySQL 5.1.40 caused the database referenced in\na fully qualified table name to be ignored by LOAD DATA when using\nreplication with either STATEMENT or MIXED as the binary logging\nformat; this could lead to problems if the table was not in the current\ndatabase. As a workaround, you can specify the correct database with\nthe USE statement prior to executing LOAD DATA. If necessary, you can\nreset the default database with a second USE statement following the\nLOAD DATA statement. This issue was fixed in MySQL 5.1.41. (Bug#48297\n(http://bugs.mysql.com/bug.php?id=48297))\n\nFor security reasons, when reading text files located on the server,\nthe files must either reside in the database directory or be readable\nby all. Also, to use LOAD DATA INFILE on server files, you must have\nthe FILE privilege. See\nhttp://dev.mysql.com/doc/refman/5.1/en/privileges-provided.html. For\nnon-LOCAL load operations, if the secure_file_priv system variable is\nset to a nonempty directory name, the file to be loaded must be located\nin that directory.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/load-data.html\n\n','','http://dev.mysql.com/doc/refman/5.1/en/load-data.html'),(423,'MULTILINESTRING',24,'MultiLineString(ls1,ls2,...)\n\nConstructs a MultiLineString value using LineString or WKB LineString\narguments.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/creating-spatial-values.html#gis-mysql-specific-functions\n\n','','http://dev.mysql.com/doc/refman/5.1/en/creating-spatial-values.html#gis-mysql-specific-functions'),(424,'LOCALTIME',31,'Syntax:\nLOCALTIME, LOCALTIME()\n\nLOCALTIME and LOCALTIME() are synonyms for NOW().\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/date-and-time-functions.html\n\n','','http://dev.mysql.com/doc/refman/5.1/en/date-and-time-functions.html'),(425,'MPOINTFROMTEXT',3,'MPointFromText(wkt[,srid]), MultiPointFromText(wkt[,srid])\n\nConstructs a MULTIPOINT value using its WKT representation and SRID.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/creating-spatial-values.html#gis-wkt-functions\n\n','','http://dev.mysql.com/doc/refman/5.1/en/creating-spatial-values.html#gis-wkt-functions'),(426,'BLOB',22,'BLOB[(M)]\n\nA BLOB column with a maximum length of 65,535 (216 - 1) bytes. Each\nBLOB value is stored using a two-byte length prefix that indicates the\nnumber of bytes in the value.\n\nAn optional length M can be given for this type. If this is done, MySQL\ncreates the column as the smallest BLOB type large enough to hold\nvalues M bytes long.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/string-type-overview.html\n\n','','http://dev.mysql.com/doc/refman/5.1/en/string-type-overview.html'),(427,'SHA1',12,'Syntax:\nSHA1(str), SHA(str)\n\nCalculates an SHA-1 160-bit checksum for the string, as described in\nRFC 3174 (Secure Hash Algorithm). The value is returned as a binary\nstring of 40 hex digits, or NULL if the argument was NULL. One of the\npossible uses for this function is as a hash key. You can also use it\nas a cryptographic function for storing passwords. SHA() is synonymous\nwith SHA1().\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/encryption-functions.html\n\n','mysql> SELECT SHA1(\'abc\');\n -> \'a9993e364706816aba3e25717850c26c9cd0d89d\'\n','http://dev.mysql.com/doc/refman/5.1/en/encryption-functions.html'),(428,'SUBSTR',36,'Syntax:\nSUBSTR(str,pos), SUBSTR(str FROM pos), SUBSTR(str,pos,len), SUBSTR(str\nFROM pos FOR len)\n\nSUBSTR() is a synonym for SUBSTRING().\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/string-functions.html\n\n','','http://dev.mysql.com/doc/refman/5.1/en/string-functions.html'),(429,'PASSWORD',12,'Syntax:\nPASSWORD(str)\n\nCalculates and returns a password string from the plaintext password\nstr and returns a binary string, or NULL if the argument was NULL. This\nis the function that is used for encrypting MySQL passwords for storage\nin the Password column of the user grant table.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/encryption-functions.html\n\n','mysql> SELECT PASSWORD(\'badpwd\');\n -> \'*AAB3E285149C0135D51A520E1940DD3263DC008C\'\n','http://dev.mysql.com/doc/refman/5.1/en/encryption-functions.html'),(430,'CHAR',22,'[NATIONAL] CHAR[(M)] [CHARACTER SET charset_name] [COLLATE\ncollation_name]\n\nA fixed-length string that is always right-padded with spaces to the\nspecified length when stored. M represents the column length in\ncharacters. The range of M is 0 to 255. If M is omitted, the length is\n1.\n\n*Note*: Trailing spaces are removed when CHAR values are retrieved\nunless the PAD_CHAR_TO_FULL_LENGTH SQL mode is enabled.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/string-type-overview.html\n\n','','http://dev.mysql.com/doc/refman/5.1/en/string-type-overview.html'),(431,'UTC_DATE',31,'Syntax:\nUTC_DATE, UTC_DATE()\n\nReturns the current UTC date as a value in \'YYYY-MM-DD\' or YYYYMMDD\nformat, depending on whether the function is used in a string or\nnumeric context.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/date-and-time-functions.html\n\n','mysql> SELECT UTC_DATE(), UTC_DATE() + 0;\n -> \'2003-08-14\', 20030814\n','http://dev.mysql.com/doc/refman/5.1/en/date-and-time-functions.html'),(432,'DIMENSION',35,'Dimension(g)\n\nReturns the inherent dimension of the geometry value g. The result can\nbe -1, 0, 1, or 2. The meaning of these values is given in\nhttp://dev.mysql.com/doc/refman/5.1/en/gis-class-geometry.html.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/geometry-property-functions.html#general-geometry-property-functions\n\n','mysql> SELECT Dimension(GeomFromText(\'LineString(1 1,2 2)\'));\n+------------------------------------------------+\n| Dimension(GeomFromText(\'LineString(1 1,2 2)\')) |\n+------------------------------------------------+\n| 1 |\n+------------------------------------------------+\n','http://dev.mysql.com/doc/refman/5.1/en/geometry-property-functions.html#general-geometry-property-functions'),(433,'COUNT DISTINCT',16,'Syntax:\nCOUNT(DISTINCT expr,[expr...])\n\nReturns a count of the number of rows with different non-NULL expr\nvalues.\n\nCOUNT(DISTINCT) returns 0 if there were no matching rows.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/group-by-functions.html\n\n','mysql> SELECT COUNT(DISTINCT results) FROM student;\n','http://dev.mysql.com/doc/refman/5.1/en/group-by-functions.html'),(434,'BIT',22,'BIT[(M)]\n\nA bit-field type. M indicates the number of bits per value, from 1 to\n64. The default is 1 if M is omitted.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/numeric-type-overview.html\n\n','','http://dev.mysql.com/doc/refman/5.1/en/numeric-type-overview.html'),(435,'EQUALS',30,'Equals(g1,g2)\n\nReturns 1 or 0 to indicate whether g1 is spatially equal to g2.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/functions-that-test-spatial-relationships-between-geometries.html\n\n','','http://dev.mysql.com/doc/refman/5.1/en/functions-that-test-spatial-relationships-between-geometries.html'),(436,'SHOW CREATE VIEW',26,'Syntax:\nSHOW CREATE VIEW view_name\n\nThis statement shows a CREATE VIEW statement that creates the given\nview.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/show-create-view.html\n\n','','http://dev.mysql.com/doc/refman/5.1/en/show-create-view.html'),(437,'INTERVAL',18,'Syntax:\nINTERVAL(N,N1,N2,N3,...)\n\nReturns 0 if N < N1, 1 if N < N2 and so on or -1 if N is NULL. All\narguments are treated as integers. It is required that N1 < N2 < N3 <\n... < Nn for this function to work correctly. This is because a binary\nsearch is used (very fast).\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/comparison-operators.html\n\n','mysql> SELECT INTERVAL(23, 1, 15, 17, 30, 44, 200);\n -> 3\nmysql> SELECT INTERVAL(10, 1, 10, 100, 1000);\n -> 2\nmysql> SELECT INTERVAL(22, 23, 30, 44, 200);\n -> 0\n','http://dev.mysql.com/doc/refman/5.1/en/comparison-operators.html'),(438,'FROM_DAYS',31,'Syntax:\nFROM_DAYS(N)\n\nGiven a day number N, returns a DATE value.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/date-and-time-functions.html\n\n','mysql> SELECT FROM_DAYS(730669);\n -> \'2007-07-03\'\n','http://dev.mysql.com/doc/refman/5.1/en/date-and-time-functions.html'),(439,'ALTER PROCEDURE',38,'Syntax:\nALTER PROCEDURE proc_name [characteristic ...]\n\ncharacteristic:\n COMMENT \'string\'\n | { CONTAINS SQL | NO SQL | READS SQL DATA | MODIFIES SQL DATA }\n | SQL SECURITY { DEFINER | INVOKER }\n\nThis statement can be used to change the characteristics of a stored\nprocedure. More than one change may be specified in an ALTER PROCEDURE\nstatement. However, you cannot change the parameters or body of a\nstored procedure using this statement; to make such changes, you must\ndrop and re-create the procedure using DROP PROCEDURE and CREATE\nPROCEDURE.\n\nYou must have the ALTER ROUTINE privilege for the procedure. (That\nprivilege is granted automatically to the procedure creator.)\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/alter-procedure.html\n\n','','http://dev.mysql.com/doc/refman/5.1/en/alter-procedure.html'),(440,'BIT_COUNT',19,'Syntax:\nBIT_COUNT(N)\n\nReturns the number of bits that are set in the argument N.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/bit-functions.html\n\n','mysql> SELECT BIT_COUNT(29), BIT_COUNT(b\'101010\');\n -> 4, 3\n','http://dev.mysql.com/doc/refman/5.1/en/bit-functions.html'),(441,'OCTET_LENGTH',36,'Syntax:\nOCTET_LENGTH(str)\n\nOCTET_LENGTH() is a synonym for LENGTH().\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/string-functions.html\n\n','','http://dev.mysql.com/doc/refman/5.1/en/string-functions.html'),(442,'UTC_TIMESTAMP',31,'Syntax:\nUTC_TIMESTAMP, UTC_TIMESTAMP()\n\nReturns the current UTC date and time as a value in \'YYYY-MM-DD\nHH:MM:SS\' or YYYYMMDDHHMMSS.uuuuuu format, depending on whether the\nfunction is used in a string or numeric context.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/date-and-time-functions.html\n\n','mysql> SELECT UTC_TIMESTAMP(), UTC_TIMESTAMP() + 0;\n -> \'2003-08-14 18:08:04\', 20030814180804.000000\n','http://dev.mysql.com/doc/refman/5.1/en/date-and-time-functions.html'),(443,'AES_ENCRYPT',12,'Syntax:\nAES_ENCRYPT(str,key_str)\n\nAES_ENCRYPT() and AES_DECRYPT() allow encryption and decryption of data\nusing the official AES (Advanced Encryption Standard) algorithm,\npreviously known as \"Rijndael.\" Encoding with a 128-bit key length is\nused, but you can extend it up to 256 bits by modifying the source. We\nchose 128 bits because it is much faster and it is secure enough for\nmost purposes.\n\nAES_ENCRYPT() encrypts a string and returns a binary string.\nAES_DECRYPT() decrypts the encrypted string and returns the original\nstring. The input arguments may be any length. If either argument is\nNULL, the result of this function is also NULL.\n\nBecause AES is a block-level algorithm, padding is used to encode\nuneven length strings and so the result string length may be calculated\nusing this formula:\n\n16 * (trunc(string_length / 16) + 1)\n\nIf AES_DECRYPT() detects invalid data or incorrect padding, it returns\nNULL. However, it is possible for AES_DECRYPT() to return a non-NULL\nvalue (possibly garbage) if the input data or the key is invalid.\n\nYou can use the AES functions to store data in an encrypted form by\nmodifying your queries:\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/encryption-functions.html\n\n','INSERT INTO t VALUES (1,AES_ENCRYPT(\'text\',\'password\'));\n','http://dev.mysql.com/doc/refman/5.1/en/encryption-functions.html'),(444,'+',4,'Syntax:\n+\n\nAddition:\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/arithmetic-functions.html\n\n','mysql> SELECT 3+5;\n -> 8\n','http://dev.mysql.com/doc/refman/5.1/en/arithmetic-functions.html'),(445,'INET_NTOA',15,'Syntax:\nINET_NTOA(expr)\n\nGiven a numeric network address in network byte order (4 or 8 byte),\nreturns the dotted-quad representation of the address as a string.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/miscellaneous-functions.html\n\n','mysql> SELECT INET_NTOA(3520061480);\n -> \'209.207.224.40\'\n','http://dev.mysql.com/doc/refman/5.1/en/miscellaneous-functions.html'),(446,'ACOS',4,'Syntax:\nACOS(X)\n\nReturns the arc cosine of X, that is, the value whose cosine is X.\nReturns NULL if X is not in the range -1 to 1.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/mathematical-functions.html\n\n','mysql> SELECT ACOS(1);\n -> 0\nmysql> SELECT ACOS(1.0001);\n -> NULL\nmysql> SELECT ACOS(0);\n -> 1.5707963267949\n','http://dev.mysql.com/doc/refman/5.1/en/mathematical-functions.html'),(447,'ISOLATION',8,'Syntax:\nSET [GLOBAL | SESSION] TRANSACTION ISOLATION LEVEL\n {\n READ UNCOMMITTED\n | READ COMMITTED\n | REPEATABLE READ\n | SERIALIZABLE\n }\n\nThis statement sets the transaction isolation level globally, for the\ncurrent session, or for the next transaction:\n\no With the GLOBAL keyword, the statement sets the default transaction\n level globally for all subsequent sessions. Existing sessions are\n unaffected.\n\no With the SESSION keyword, the statement sets the default transaction\n level for all subsequent transactions performed within the current\n session.\n\no Without any SESSION or GLOBAL keyword, the statement sets the\n isolation level for the next (not started) transaction performed\n within the current session.\n\nA change to the global default isolation level requires the SUPER\nprivilege. Any session is free to change its session isolation level\n(even in the middle of a transaction), or the isolation level for its\nnext transaction.\n\nSET TRANSACTION ISOLATION LEVEL without GLOBAL or SESSION is not\nallowed while there is an active transaction:\n\nmysql> START TRANSACTION;\nQuery OK, 0 rows affected (0.02 sec)\n\nmysql> SET TRANSACTION ISOLATION LEVEL SERIALIZABLE;\nERROR 1568 (25001): Transaction isolation level can\'t be changed\nwhile a transaction is in progress\n\nTo set the global default isolation level at server startup, use the\n--transaction-isolation=level option to mysqld on the command line or\nin an option file. Values of level for this option use dashes rather\nthan spaces, so the allowable values are READ-UNCOMMITTED,\nREAD-COMMITTED, REPEATABLE-READ, or SERIALIZABLE. For example, to set\nthe default isolation level to REPEATABLE READ, use these lines in the\n[mysqld] section of an option file:\n\n[mysqld]\ntransaction-isolation = REPEATABLE-READ\n\nTo determine the global and session transaction isolation levels at\nruntime, check the value of the tx_isolation system variable:\n\nSELECT @@GLOBAL.tx_isolation, @@tx_isolation;\n\nInnoDB supports each of the translation isolation levels described here\nusing different locking strategies. The default level is REPEATABLE\nREAD. For additional information about InnoDB record-level locks and\nhow it uses them to execute various types of statements, see\nhttp://dev.mysql.com/doc/refman/5.1/en/innodb-record-level-locks.html,\nand http://dev.mysql.com/doc/refman/5.1/en/innodb-locks-set.html.\n\nThe following list describes how MySQL supports the different\ntransaction levels:\n\no READ UNCOMMITTED\n\n SELECT statements are performed in a nonlocking fashion, but a\n possible earlier version of a row might be used. Thus, using this\n isolation level, such reads are not consistent. This is also called a\n \"dirty read.\" Otherwise, this isolation level works like READ\n COMMITTED.\n\no READ COMMITTED\n\n A somewhat Oracle-like isolation level with respect to consistent\n (nonlocking) reads: Each consistent read, even within the same\n transaction, sets and reads its own fresh snapshot. See\n http://dev.mysql.com/doc/refman/5.1/en/innodb-consistent-read.html.\n\n For locking reads (SELECT with FOR UPDATE or LOCK IN SHARE MODE),\n InnoDB locks only index records, not the gaps before them, and thus\n allows the free insertion of new records next to locked records. For\n UPDATE and DELETE statements, locking depends on whether the\n statement uses a unique index with a unique search condition (such as\n WHERE id = 100), or a range-type search condition (such as WHERE id >\n 100). For a unique index with a unique search condition, InnoDB locks\n only the index record found, not the gap before it. For range-type\n searches, InnoDB locks the index range scanned, using gap locks or\n next-key (gap plus index-record) locks to block insertions by other\n sessions into the gaps covered by the range. This is necessary\n because \"phantom rows\" must be blocked for MySQL replication and\n recovery to work.\n\n *Note*: In MySQL 5.1, if the READ COMMITTED isolation level is used\n or the innodb_locks_unsafe_for_binlog system variable is enabled,\n there is no InnoDB gap locking except for foreign-key constraint\n checking and duplicate-key checking. Also, record locks for\n nonmatching rows are released after MySQL has evaluated the WHERE\n condition. As of MySQL 5.1, if you use READ COMMITTED or enable\n innodb_locks_unsafe_for_binlog, you must use row-based binary\n logging.\n\no REPEATABLE READ\n\n This is the default isolation level for InnoDB. For consistent reads,\n there is an important difference from the READ COMMITTED isolation\n level: All consistent reads within the same transaction read the\n snapshot established by the first read. This convention means that if\n you issue several plain (nonlocking) SELECT statements within the\n same transaction, these SELECT statements are consistent also with\n respect to each other. See\n http://dev.mysql.com/doc/refman/5.1/en/innodb-consistent-read.html.\n\n For locking reads (SELECT with FOR UPDATE or LOCK IN SHARE MODE),\n UPDATE, and DELETE statements, locking depends on whether the\n statement uses a unique index with a unique search condition, or a\n range-type search condition. For a unique index with a unique search\n condition, InnoDB locks only the index record found, not the gap\n before it. For other search conditions, InnoDB locks the index range\n scanned, using gap locks or next-key (gap plus index-record) locks to\n block insertions by other sessions into the gaps covered by the\n range.\n\no SERIALIZABLE\n\n This level is like REPEATABLE READ, but InnoDB implicitly converts\n all plain SELECT statements to SELECT ... LOCK IN SHARE MODE if\n autocommit is disabled. If autocommit is enabled, the SELECT is its\n own transaction. It therefore is known to be read only and can be\n serialized if performed as a consistent (nonlocking) read and need\n not block for other transactions. (This means that to force a plain\n SELECT to block if other transactions have modified the selected\n rows, you should disable autocommit.)\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/set-transaction.html\n\n','','http://dev.mysql.com/doc/refman/5.1/en/set-transaction.html'),(448,'CEILING',4,'Syntax:\nCEILING(X)\n\nReturns the smallest integer value not less than X.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/mathematical-functions.html\n\n','mysql> SELECT CEILING(1.23);\n -> 2\nmysql> SELECT CEILING(-1.23);\n -> -1\n','http://dev.mysql.com/doc/refman/5.1/en/mathematical-functions.html'),(449,'SIN',4,'Syntax:\nSIN(X)\n\nReturns the sine of X, where X is given in radians.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/mathematical-functions.html\n\n','mysql> SELECT SIN(PI());\n -> 1.2246063538224e-16\nmysql> SELECT ROUND(SIN(PI()));\n -> 0\n','http://dev.mysql.com/doc/refman/5.1/en/mathematical-functions.html'),(450,'DAYOFWEEK',31,'Syntax:\nDAYOFWEEK(date)\n\nReturns the weekday index for date (1 = Sunday, 2 = Monday, ..., 7 =\nSaturday). These index values correspond to the ODBC standard.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/date-and-time-functions.html\n\n','mysql> SELECT DAYOFWEEK(\'2007-02-03\');\n -> 7\n','http://dev.mysql.com/doc/refman/5.1/en/date-and-time-functions.html'),(451,'SHOW PROCESSLIST',26,'Syntax:\nSHOW [FULL] PROCESSLIST\n\nSHOW PROCESSLIST shows you which threads are running. You can also get\nthis information from the INFORMATION_SCHEMA PROCESSLIST table or the\nmysqladmin processlist command. If you have the PROCESS privilege, you\ncan see all threads. Otherwise, you can see only your own threads (that\nis, threads associated with the MySQL account that you are using). If\nyou do not use the FULL keyword, only the first 100 characters of each\nstatement are shown in the Info field.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/show-processlist.html\n\n','','http://dev.mysql.com/doc/refman/5.1/en/show-processlist.html'),(452,'LINEFROMWKB',32,'LineFromWKB(wkb[,srid]), LineStringFromWKB(wkb[,srid])\n\nConstructs a LINESTRING value using its WKB representation and SRID.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/creating-spatial-values.html#gis-wkb-functions\n\n','','http://dev.mysql.com/doc/refman/5.1/en/creating-spatial-values.html#gis-wkb-functions'),(453,'GEOMETRYTYPE',35,'GeometryType(g)\n\nReturns as a string the name of the geometry type of which the geometry\ninstance g is a member. The name corresponds to one of the instantiable\nGeometry subclasses.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/geometry-property-functions.html#general-geometry-property-functions\n\n','mysql> SELECT GeometryType(GeomFromText(\'POINT(1 1)\'));\n+------------------------------------------+\n| GeometryType(GeomFromText(\'POINT(1 1)\')) |\n+------------------------------------------+\n| POINT |\n+------------------------------------------+\n','http://dev.mysql.com/doc/refman/5.1/en/geometry-property-functions.html#general-geometry-property-functions'),(454,'CREATE VIEW',38,'Syntax:\nCREATE\n [OR REPLACE]\n [ALGORITHM = {UNDEFINED | MERGE | TEMPTABLE}]\n [DEFINER = { user | CURRENT_USER }]\n [SQL SECURITY { DEFINER | INVOKER }]\n VIEW view_name [(column_list)]\n AS select_statement\n [WITH [CASCADED | LOCAL] CHECK OPTION]\n\nThe CREATE VIEW statement creates a new view, or replaces an existing\none if the OR REPLACE clause is given. If the view does not exist,\nCREATE OR REPLACE VIEW is the same as CREATE VIEW. If the view does\nexist, CREATE OR REPLACE VIEW is the same as ALTER VIEW.\n\nThe select_statement is a SELECT statement that provides the definition\nof the view. (When you select from the view, you select in effect using\nthe SELECT statement.) select_statement can select from base tables or\nother views.\n\nThe view definition is \"frozen\" at creation time, so changes to the\nunderlying tables afterward do not affect the view definition. For\nexample, if a view is defined as SELECT * on a table, new columns added\nto the table later do not become part of the view.\n\nThe ALGORITHM clause affects how MySQL processes the view. The DEFINER\nand SQL SECURITY clauses specify the security context to be used when\nchecking access privileges at view invocation time. The WITH CHECK\nOPTION clause can be given to constrain inserts or updates to rows in\ntables referenced by the view. These clauses are described later in\nthis section.\n\nThe CREATE VIEW statement requires the CREATE VIEW privilege for the\nview, and some privilege for each column selected by the SELECT\nstatement. For columns used elsewhere in the SELECT statement you must\nhave the SELECT privilege. If the OR REPLACE clause is present, you\nmust also have the DROP privilege for the view. CREATE VIEW might also\nrequire the SUPER privilege, depending on the DEFINER value, as\ndescribed later in this section.\n\nWhen a view is referenced, privilege checking occurs as described later\nin this section.\n\nA view belongs to a database. By default, a new view is created in the\ndefault database. To create the view explicitly in a given database,\nspecify the name as db_name.view_name when you create it:\n\nmysql> CREATE VIEW test.v AS SELECT * FROM t;\n\nWithin a database, base tables and views share the same namespace, so a\nbase table and a view cannot have the same name.\n\nColumns retrieved by the SELECT statement can be simple references to\ntable columns. They can also be expressions that use functions,\nconstant values, operators, and so forth.\n\nViews must have unique column names with no duplicates, just like base\ntables. By default, the names of the columns retrieved by the SELECT\nstatement are used for the view column names. To define explicit names\nfor the view columns, the optional column_list clause can be given as a\nlist of comma-separated identifiers. The number of names in column_list\nmust be the same as the number of columns retrieved by the SELECT\nstatement.\n\n*Note*: Prior to MySQL 5.1.29, when you modify an existing view, the\nserver saves a backup of the current view definition under the view\ndatabase directory, in a subdirectory named arc. The backup file for a\nview v is named v.frm-00001. If you alter the view again, the next\nbackup is named v.frm-00002. The three latest view backup definitions\nare stored. Backed up view definitions are not preserved by mysqldump,\nor any other such programs, but you can retain them using a file copy\noperation. However, they are not needed for anything but to provide you\nwith a backup of your previous view definition. It is safe to remove\nthese backup definitions, but only while mysqld is not running. If you\ndelete the arc subdirectory or its files while mysqld is running, an\nerror occurs the next time you try to alter the view: mysql> ALTER VIEW\nv AS SELECT * FROM t; ERROR 6 (HY000): Error on delete of\n\'.\\test\\arc/v.frm-0004\' (Errcode: 2)\n\nUnqualified table or view names in the SELECT statement are interpreted\nwith respect to the default database. A view can refer to tables or\nviews in other databases by qualifying the table or view name with the\nproper database name.\n\nA view can be created from many kinds of SELECT statements. It can\nrefer to base tables or other views. It can use joins, UNION, and\nsubqueries. The SELECT need not even refer to any tables. The following\nexample defines a view that selects two columns from another table, as\nwell as an expression calculated from those columns:\n\nmysql> CREATE TABLE t (qty INT, price INT);\nmysql> INSERT INTO t VALUES(3, 50);\nmysql> CREATE VIEW v AS SELECT qty, price, qty*price AS value FROM t;\nmysql> SELECT * FROM v;\n+------+-------+-------+\n| qty | price | value |\n+------+-------+-------+\n| 3 | 50 | 150 |\n+------+-------+-------+\n\nA view definition is subject to the following restrictions:\n\no The SELECT statement cannot contain a subquery in the FROM clause.\n\no The SELECT statement cannot refer to system or user variables.\n\no Within a stored program, the definition cannot refer to program\n parameters or local variables.\n\no The SELECT statement cannot refer to prepared statement parameters.\n\no Any table or view referred to in the definition must exist. However,\n after a view has been created, it is possible to drop a table or view\n that the definition refers to. In this case, use of the view results\n in an error. To check a view definition for problems of this kind,\n use the CHECK TABLE statement.\n\no The definition cannot refer to a TEMPORARY table, and you cannot\n create a TEMPORARY view.\n\no Any tables named in the view definition must exist at definition\n time.\n\no You cannot associate a trigger with a view.\n\no As of MySQL 5.1.23, aliases for column names in the SELECT statement\n are checked against the maximum column length of 64 characters (not\n the maximum alias length of 256 characters).\n\nORDER BY is allowed in a view definition, but it is ignored if you\nselect from a view using a statement that has its own ORDER BY.\n\nFor other options or clauses in the definition, they are added to the\noptions or clauses of the statement that references the view, but the\neffect is undefined. For example, if a view definition includes a LIMIT\nclause, and you select from the view using a statement that has its own\nLIMIT clause, it is undefined which limit applies. This same principle\napplies to options such as ALL, DISTINCT, or SQL_SMALL_RESULT that\nfollow the SELECT keyword, and to clauses such as INTO, FOR UPDATE,\nLOCK IN SHARE MODE, and PROCEDURE.\n\nIf you create a view and then change the query processing environment\nby changing system variables, that may affect the results that you get\nfrom the view:\n\nmysql> CREATE VIEW v (mycol) AS SELECT \'abc\';\nQuery OK, 0 rows affected (0.01 sec)\n\nmysql> SET sql_mode = \'\';\nQuery OK, 0 rows affected (0.00 sec)\n\nmysql> SELECT \"mycol\" FROM v;\n+-------+\n| mycol |\n+-------+\n| mycol |\n+-------+\n1 row in set (0.01 sec)\n\nmysql> SET sql_mode = \'ANSI_QUOTES\';\nQuery OK, 0 rows affected (0.00 sec)\n\nmysql> SELECT \"mycol\" FROM v;\n+-------+\n| mycol |\n+-------+\n| abc |\n+-------+\n1 row in set (0.00 sec)\n\nThe DEFINER and SQL SECURITY clauses determine which MySQL account to\nuse when checking access privileges for the view when a statement is\nexecuted that references the view. These clauses were addded in MySQL\n5.1.2. The legal SQL SECURITY characteristic values are DEFINER and\nINVOKER. These indicate that the required privileges must be held by\nthe user who defined or invoked the view, respectively. The default SQL\nSECURITY value is DEFINER.\n\nIf a user value is given for the DEFINER clause, it should be a MySQL\naccount specified as \'user_name\'@\'host_name\' (the same format used in\nthe GRANT statement), CURRENT_USER, or CURRENT_USER(). The default\nDEFINER value is the user who executes the CREATE VIEW statement. This\nis the same as specifying DEFINER = CURRENT_USER explicitly.\n\nIf you specify the DEFINER clause, these rules determine the legal\nDEFINER user values:\n\no If you do not have the SUPER privilege, the only legal user value is\n your own account, either specified literally or by using\n CURRENT_USER. You cannot set the definer to some other account.\n\no If you have the SUPER privilege, you can specify any syntactically\n legal account name. If the account does not actually exist, a warning\n is generated.\n\no Although it is possible to create a view with a nonexistent DEFINER\n account, an error occurs when the view is referenced if the SQL\n SECURITY value is DEFINER but the definer account does not exist.\n\nFor more information about view security, see\nhttp://dev.mysql.com/doc/refman/5.1/en/stored-programs-security.html.\n\nWithin a view definition, CURRENT_USER returns the view\'s DEFINER value\nby default as of MySQL 5.1.12. For older versions, and for views\ndefined with the SQL SECURITY INVOKER characteristic, CURRENT_USER\nreturns the account for the view\'s invoker. For information about user\nauditing within views, see\nhttp://dev.mysql.com/doc/refman/5.1/en/account-activity-auditing.html.\n\nWithin a stored routine that is defined with the SQL SECURITY DEFINER\ncharacteristic, CURRENT_USER returns the routine\'s DEFINER value. This\nalso affects a view defined within such a routine, if the view\ndefinition contains a DEFINER value of CURRENT_USER.\n\nAs of MySQL 5.1.2 (when the DEFINER and SQL SECURITY clauses were\nimplemented), view privileges are checked like this:\n\no At view definition time, the view creator must have the privileges\n needed to use the top-level objects accessed by the view. For\n example, if the view definition refers to table columns, the creator\n must have some privilege for each column in the select list of the\n definition, and the SELECT privilege for each column used elsewhere\n in the definition. If the definition refers to a stored function,\n only the privileges needed to invoke the function can be checked. The\n privileges required at function invocation time can be checked only\n as it executes: For different invocations, different execution paths\n within the function might be taken.\n\no The user who references a view must have appropriate privileges to\n access it (SELECT to select from it, INSERT to insert into it, and so\n forth.)\n\no When a view has been referenced, privileges for objects accessed by\n the view are checked against the privileges held by the view DEFINER\n account or invoker, depending on whether the SQL SECURITY\n characteristic is DEFINER or INVOKER, respectively.\n\no If reference to a view causes execution of a stored function,\n privilege checking for statements executed within the function depend\n on whether the function SQL SECURITY characteristic is DEFINER or\n INVOKER. If the security characteristic is DEFINER, the function runs\n with the privileges of the DEFINER account. If the characteristic is\n INVOKER, the function runs with the privileges determined by the\n view\'s SQL SECURITY characteristic.\n\nPrior to MySQL 5.1.2 (before the DEFINER and SQL SECURITY clauses were\nimplemented), privileges required for objects used in a view are\nchecked at view creation time.\n\nExample: A view might depend on a stored function, and that function\nmight invoke other stored routines. For example, the following view\ninvokes a stored function f():\n\nCREATE VIEW v AS SELECT * FROM t WHERE t.id = f(t.name);\n\nSuppose that f() contains a statement such as this:\n\nIF name IS NULL then\n CALL p1();\nELSE\n CALL p2();\nEND IF;\n\nThe privileges required for executing statements within f() need to be\nchecked when f() executes. This might mean that privileges are needed\nfor p1() or p2(), depending on the execution path within f(). Those\nprivileges must be checked at runtime, and the user who must possess\nthe privileges is determined by the SQL SECURITY values of the view v\nand the function f().\n\nThe DEFINER and SQL SECURITY clauses for views are extensions to\nstandard SQL. In standard SQL, views are handled using the rules for\nSQL SECURITY DEFINER. The standard says that the definer of the view,\nwhich is the same as the owner of the view\'s schema, gets applicable\nprivileges on the view (for example, SELECT) and may grant them. MySQL\nhas no concept of a schema \"owner\", so MySQL adds a clause to identify\nthe definer. The DEFINER clause is an extension where the intent is to\nhave what the standard has; that is, a permanent record of who defined\nthe view. This is why the default DEFINER value is the account of the\nview creator.\n\nIf you invoke a view that was created before MySQL 5.1.2, it is treated\nas though it was created with a SQL SECURITY DEFINER characteristic and\nwith a DEFINER value that is the same as your account. However, because\nthe actual definer is unknown, MySQL issues a warning. To eliminate the\nwarning, it is sufficient to re-create the view so that the view\ndefinition includes a DEFINER clause.\n\nThe optional ALGORITHM clause is a MySQL extension to standard SQL. It\naffects how MySQL processes the view. ALGORITHM takes three values:\nMERGE, TEMPTABLE, or UNDEFINED. The default algorithm is UNDEFINED if\nno ALGORITHM clause is present. For more information, see\nhttp://dev.mysql.com/doc/refman/5.1/en/view-algorithms.html.\n\nSome views are updatable. That is, you can use them in statements such\nas UPDATE, DELETE, or INSERT to update the contents of the underlying\ntable. For a view to be updatable, there must be a one-to-one\nrelationship between the rows in the view and the rows in the\nunderlying table. There are also certain other constructs that make a\nview nonupdatable.\n\nThe WITH CHECK OPTION clause can be given for an updatable view to\nprevent inserts or updates to rows except those for which the WHERE\nclause in the select_statement is true.\n\nIn a WITH CHECK OPTION clause for an updatable view, the LOCAL and\nCASCADED keywords determine the scope of check testing when the view is\ndefined in terms of another view. The LOCAL keyword restricts the CHECK\nOPTION only to the view being defined. CASCADED causes the checks for\nunderlying views to be evaluated as well. When neither keyword is\ngiven, the default is CASCADED.\n\nFor more information about updatable views and the WITH CHECK OPTION\nclause, see\nhttp://dev.mysql.com/doc/refman/5.1/en/view-updatability.html.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/create-view.html\n\n','','http://dev.mysql.com/doc/refman/5.1/en/create-view.html'),(455,'TRIM',36,'Syntax:\nTRIM([{BOTH | LEADING | TRAILING} [remstr] FROM] str), TRIM([remstr\nFROM] str)\n\nReturns the string str with all remstr prefixes or suffixes removed. If\nnone of the specifiers BOTH, LEADING, or TRAILING is given, BOTH is\nassumed. remstr is optional and, if not specified, spaces are removed.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/string-functions.html\n\n','mysql> SELECT TRIM(\' bar \');\n -> \'bar\'\nmysql> SELECT TRIM(LEADING \'x\' FROM \'xxxbarxxx\');\n -> \'barxxx\'\nmysql> SELECT TRIM(BOTH \'x\' FROM \'xxxbarxxx\');\n -> \'bar\'\nmysql> SELECT TRIM(TRAILING \'xyz\' FROM \'barxxyz\');\n -> \'barx\'\n','http://dev.mysql.com/doc/refman/5.1/en/string-functions.html'),(456,'IS',18,'Syntax:\nIS boolean_value\n\nTests a value against a boolean value, where boolean_value can be TRUE,\nFALSE, or UNKNOWN.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/comparison-operators.html\n\n','mysql> SELECT 1 IS TRUE, 0 IS FALSE, NULL IS UNKNOWN;\n -> 1, 1, 1\n','http://dev.mysql.com/doc/refman/5.1/en/comparison-operators.html'),(457,'GET_FORMAT',31,'Syntax:\nGET_FORMAT({DATE|TIME|DATETIME}, {\'EUR\'|\'USA\'|\'JIS\'|\'ISO\'|\'INTERNAL\'})\n\nReturns a format string. This function is useful in combination with\nthe DATE_FORMAT() and the STR_TO_DATE() functions.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/date-and-time-functions.html\n\n','mysql> SELECT DATE_FORMAT(\'2003-10-03\',GET_FORMAT(DATE,\'EUR\'));\n -> \'03.10.2003\'\nmysql> SELECT STR_TO_DATE(\'10.31.2003\',GET_FORMAT(DATE,\'USA\'));\n -> \'2003-10-31\'\n','http://dev.mysql.com/doc/refman/5.1/en/date-and-time-functions.html'),(458,'TINYBLOB',22,'TINYBLOB\n\nA BLOB column with a maximum length of 255 (28 - 1) bytes. Each\nTINYBLOB value is stored using a one-byte length prefix that indicates\nthe number of bytes in the value.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/string-type-overview.html\n\n','','http://dev.mysql.com/doc/refman/5.1/en/string-type-overview.html'),(459,'SAVEPOINT',8,'Syntax:\nSAVEPOINT identifier\nROLLBACK [WORK] TO [SAVEPOINT] identifier\nRELEASE SAVEPOINT identifier\n\nInnoDB supports the SQL statements SAVEPOINT, ROLLBACK TO SAVEPOINT,\nRELEASE SAVEPOINT and the optional WORK keyword for ROLLBACK.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/savepoint.html\n\n','','http://dev.mysql.com/doc/refman/5.1/en/savepoint.html'),(460,'USER',17,'Syntax:\nUSER()\n\nReturns the current MySQL user name and host name as a string in the\nutf8 character set.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/information-functions.html\n\n','mysql> SELECT USER();\n -> \'davida@localhost\'\n','http://dev.mysql.com/doc/refman/5.1/en/information-functions.html'),(461,'ALTER TABLE',38,'Syntax:\nALTER [ONLINE | OFFLINE] [IGNORE] TABLE tbl_name\n alter_specification [, alter_specification] ...\n\nalter_specification:\n table_options\n | ADD [COLUMN] col_name column_definition\n [FIRST | AFTER col_name ]\n | ADD [COLUMN] (col_name column_definition,...)\n | ADD {INDEX|KEY} [index_name]\n [index_type] (index_col_name,...) [index_option] ...\n | ADD [CONSTRAINT [symbol]] PRIMARY KEY\n [index_type] (index_col_name,...) [index_option] ...\n | ADD [CONSTRAINT [symbol]]\n UNIQUE [INDEX|KEY] [index_name]\n [index_type] (index_col_name,...) [index_option] ...\n | ADD FULLTEXT [INDEX|KEY] [index_name]\n (index_col_name,...) [index_option] ...\n | ADD SPATIAL [INDEX|KEY] [index_name]\n (index_col_name,...) [index_option] ...\n | ADD [CONSTRAINT [symbol]]\n FOREIGN KEY [index_name] (index_col_name,...)\n reference_definition\n | ALTER [COLUMN] col_name {SET DEFAULT literal | DROP DEFAULT}\n | CHANGE [COLUMN] old_col_name new_col_name column_definition\n [FIRST|AFTER col_name]\n | MODIFY [COLUMN] col_name column_definition\n [FIRST | AFTER col_name]\n | DROP [COLUMN] col_name\n | DROP PRIMARY KEY\n | DROP {INDEX|KEY} index_name\n | DROP FOREIGN KEY fk_symbol\n | DISABLE KEYS\n | ENABLE KEYS\n | RENAME [TO] new_tbl_name\n | ORDER BY col_name [, col_name] ...\n | CONVERT TO CHARACTER SET charset_name [COLLATE collation_name]\n | [DEFAULT] CHARACTER SET [=] charset_name [COLLATE [=] collation_name]\n | DISCARD TABLESPACE\n | IMPORT TABLESPACE\n | partition_options\n | ADD PARTITION (partition_definition)\n | DROP PARTITION partition_names\n | COALESCE PARTITION number\n | REORGANIZE PARTITION [partition_names INTO (partition_definitions)]\n | ANALYZE PARTITION {partition_names | ALL }\n | CHECK PARTITION {partition_names | ALL }\n | OPTIMIZE PARTITION {partition_names | ALL }\n | REBUILD PARTITION {partition_names | ALL }\n | REPAIR PARTITION {partition_names | ALL }\n | PARTITION BY partitioning_expression\n | REMOVE PARTITIONING\n\nindex_col_name:\n col_name [(length)] [ASC | DESC]\n\nindex_type:\n USING {BTREE | HASH | RTREE}\n\nindex_option:\n KEY_BLOCK_SIZE [=] value\n | index_type\n | WITH PARSER parser_name\n\ntable_options:\n table_option [[,] table_option] ... (see CREATE TABLE options)\n\nALTER TABLE enables you to change the structure of an existing table.\nFor example, you can add or delete columns, create or destroy indexes,\nchange the type of existing columns, or rename columns or the table\nitself. You can also change the comment for the table and type of the\ntable.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/alter-table.html\n\n','','http://dev.mysql.com/doc/refman/5.1/en/alter-table.html'),(462,'MPOINTFROMWKB',32,'MPointFromWKB(wkb[,srid]), MultiPointFromWKB(wkb[,srid])\n\nConstructs a MULTIPOINT value using its WKB representation and SRID.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/creating-spatial-values.html#gis-wkb-functions\n\n','','http://dev.mysql.com/doc/refman/5.1/en/creating-spatial-values.html#gis-wkb-functions'),(463,'CHAR BYTE',22,'The CHAR BYTE data type is an alias for the BINARY data type. This is a\ncompatibility feature.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/string-type-overview.html\n\n','','http://dev.mysql.com/doc/refman/5.1/en/string-type-overview.html'),(464,'REPAIR TABLE',20,'Syntax:\nREPAIR [NO_WRITE_TO_BINLOG | LOCAL] TABLE\n tbl_name [, tbl_name] ...\n [QUICK] [EXTENDED] [USE_FRM]\n\nREPAIR TABLE repairs a possibly corrupted table. By default, it has the\nsame effect as myisamchk --recover tbl_name. REPAIR TABLE works for\nMyISAM and for ARCHIVE tables. Starting with MySQL 5.1.9, REPAIR is\nalso valid for CSV tables. See\nhttp://dev.mysql.com/doc/refman/5.1/en/myisam-storage-engine.html, and\nhttp://dev.mysql.com/doc/refman/5.1/en/archive-storage-engine.html, and\nhttp://dev.mysql.com/doc/refman/5.1/en/csv-storage-engine.html\n\nThis statement requires SELECT and INSERT privileges for the table.\n\nBeginning with MySQL 5.1.27, REPAIR TABLE is also supported for\npartitioned tables. However, the USE_FRM option cannot be used with\nthis statement on a partitioned table.\n\nAlso beginning with MySQL 5.1.27, you can use ALTER TABLE ... REPAIR\nPARTITION to repair one or more partitions; for more information, see\n[HELP ALTER TABLE], and\nhttp://dev.mysql.com/doc/refman/5.1/en/partitioning-maintenance.html.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/repair-table.html\n\n','','http://dev.mysql.com/doc/refman/5.1/en/repair-table.html'),(465,'MERGE',38,'The MERGE storage engine, also known as the MRG_MyISAM engine, is a\ncollection of identical MyISAM tables that can be used as one.\n\"Identical\" means that all tables have identical column and index\ninformation. You cannot merge MyISAM tables in which the columns are\nlisted in a different order, do not have exactly the same columns, or\nhave the indexes in different order. However, any or all of the MyISAM\ntables can be compressed with myisampack. See\nhttp://dev.mysql.com/doc/refman/5.1/en/myisampack.html. Differences in\ntable options such as AVG_ROW_LENGTH, MAX_ROWS, or PACK_KEYS do not\nmatter.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/merge-storage-engine.html\n\n','mysql> CREATE TABLE t1 (\n -> a INT NOT NULL AUTO_INCREMENT PRIMARY KEY,\n -> message CHAR(20)) ENGINE=MyISAM;\nmysql> CREATE TABLE t2 (\n -> a INT NOT NULL AUTO_INCREMENT PRIMARY KEY,\n -> message CHAR(20)) ENGINE=MyISAM;\nmysql> INSERT INTO t1 (message) VALUES (\'Testing\'),(\'table\'),(\'t1\');\nmysql> INSERT INTO t2 (message) VALUES (\'Testing\'),(\'table\'),(\'t2\');\nmysql> CREATE TABLE total (\n -> a INT NOT NULL AUTO_INCREMENT,\n -> message CHAR(20), INDEX(a))\n -> ENGINE=MERGE UNION=(t1,t2) INSERT_METHOD=LAST;\n','http://dev.mysql.com/doc/refman/5.1/en/merge-storage-engine.html'),(466,'CREATE TABLE',38,'Syntax:\nCREATE [TEMPORARY] TABLE [IF NOT EXISTS] tbl_name\n (create_definition,...)\n [table_options]\n [partition_options]\n\nOr:\n\nCREATE [TEMPORARY] TABLE [IF NOT EXISTS] tbl_name\n [(create_definition,...)]\n [table_options]\n [partition_options]\n select_statement\n\nOr:\n\nCREATE [TEMPORARY] TABLE [IF NOT EXISTS] tbl_name\n { LIKE old_tbl_name | (LIKE old_tbl_name) }\n\ncreate_definition:\n col_name column_definition\n | [CONSTRAINT [symbol]] PRIMARY KEY [index_type] (index_col_name,...)\n [index_option] ...\n | {INDEX|KEY} [index_name] [index_type] (index_col_name,...)\n [index_option] ...\n | [CONSTRAINT [symbol]] UNIQUE [INDEX|KEY]\n [index_name] [index_type] (index_col_name,...)\n [index_option] ...\n | {FULLTEXT|SPATIAL} [INDEX|KEY] [index_name] (index_col_name,...)\n [index_option] ...\n | [CONSTRAINT [symbol]] FOREIGN KEY\n [index_name] (index_col_name,...) reference_definition\n | CHECK (expr)\n\ncolumn_definition:\n data_type [NOT NULL | NULL] [DEFAULT default_value]\n [AUTO_INCREMENT] [UNIQUE [KEY] | [PRIMARY] KEY]\n [COMMENT \'string\']\n [COLUMN_FORMAT {FIXED|DYNAMIC|DEFAULT}]\n [STORAGE {DISK|MEMORY|DEFAULT}]\n [reference_definition]\n\ndata_type:\n BIT[(length)]\n | TINYINT[(length)] [UNSIGNED] [ZEROFILL]\n | SMALLINT[(length)] [UNSIGNED] [ZEROFILL]\n | MEDIUMINT[(length)] [UNSIGNED] [ZEROFILL]\n | INT[(length)] [UNSIGNED] [ZEROFILL]\n | INTEGER[(length)] [UNSIGNED] [ZEROFILL]\n | BIGINT[(length)] [UNSIGNED] [ZEROFILL]\n | REAL[(length,decimals)] [UNSIGNED] [ZEROFILL]\n | DOUBLE[(length,decimals)] [UNSIGNED] [ZEROFILL]\n | FLOAT[(length,decimals)] [UNSIGNED] [ZEROFILL]\n | DECIMAL[(length[,decimals])] [UNSIGNED] [ZEROFILL]\n | NUMERIC[(length[,decimals])] [UNSIGNED] [ZEROFILL]\n | DATE\n | TIME\n | TIMESTAMP\n | DATETIME\n | YEAR\n | CHAR[(length)]\n [CHARACTER SET charset_name] [COLLATE collation_name]\n | VARCHAR(length)\n [CHARACTER SET charset_name] [COLLATE collation_name]\n | BINARY[(length)]\n | VARBINARY(length)\n | TINYBLOB\n | BLOB\n | MEDIUMBLOB\n | LONGBLOB\n | TINYTEXT [BINARY]\n [CHARACTER SET charset_name] [COLLATE collation_name]\n | TEXT [BINARY]\n [CHARACTER SET charset_name] [COLLATE collation_name]\n | MEDIUMTEXT [BINARY]\n [CHARACTER SET charset_name] [COLLATE collation_name]\n | LONGTEXT [BINARY]\n [CHARACTER SET charset_name] [COLLATE collation_name]\n | ENUM(value1,value2,value3,...)\n [CHARACTER SET charset_name] [COLLATE collation_name]\n | SET(value1,value2,value3,...)\n [CHARACTER SET charset_name] [COLLATE collation_name]\n | spatial_type\n\nindex_col_name:\n col_name [(length)] [ASC | DESC]\n\nindex_type:\n USING {BTREE | HASH | RTREE}\n\nindex_option:\n KEY_BLOCK_SIZE [=] value\n | index_type\n | WITH PARSER parser_name\n\nreference_definition:\n REFERENCES tbl_name (index_col_name,...)\n [MATCH FULL | MATCH PARTIAL | MATCH SIMPLE]\n [ON DELETE reference_option]\n [ON UPDATE reference_option]\n\nreference_option:\n RESTRICT | CASCADE | SET NULL | NO ACTION\n\ntable_options:\n table_option [[,] table_option] ...\n\ntable_option:\n ENGINE [=] engine_name\n | AUTO_INCREMENT [=] value\n | AVG_ROW_LENGTH [=] value\n | [DEFAULT] CHARACTER SET [=] charset_name\n | CHECKSUM [=] {0 | 1}\n | [DEFAULT] COLLATE [=] collation_name\n | COMMENT [=] \'string\'\n | CONNECTION [=] \'connect_string\'\n | DATA DIRECTORY [=] \'absolute path to directory\'\n | DELAY_KEY_WRITE [=] {0 | 1}\n | INDEX DIRECTORY [=] \'absolute path to directory\'\n | INSERT_METHOD [=] { NO | FIRST | LAST }\n | KEY_BLOCK_SIZE [=] value\n | MAX_ROWS [=] value\n | MIN_ROWS [=] value\n | PACK_KEYS [=] {0 | 1 | DEFAULT}\n | PASSWORD [=] \'string\'\n | ROW_FORMAT [=] {DEFAULT|DYNAMIC|FIXED|COMPRESSED|REDUNDANT|COMPACT}\n | TABLESPACE tablespace_name [STORAGE {DISK|MEMORY|DEFAULT}]\n | UNION [=] (tbl_name[,tbl_name]...)\n\npartition_options:\n PARTITION BY\n { [LINEAR] HASH(expr)\n | [LINEAR] KEY(column_list)\n | RANGE(expr)\n | LIST(expr) }\n [PARTITIONS num]\n [SUBPARTITION BY\n { [LINEAR] HASH(expr)\n | [LINEAR] KEY(column_list) }\n [SUBPARTITIONS num]\n ]\n [(partition_definition [, partition_definition] ...)]\n\npartition_definition:\n PARTITION partition_name\n [VALUES {LESS THAN {(expr) | MAXVALUE} | IN (value_list)}]\n [[STORAGE] ENGINE [=] engine_name]\n [COMMENT [=] \'comment_text\' ]\n [DATA DIRECTORY [=] \'data_dir\']\n [INDEX DIRECTORY [=] \'index_dir\']\n [MAX_ROWS [=] max_number_of_rows]\n [MIN_ROWS [=] min_number_of_rows]\n [TABLESPACE [=] tablespace_name]\n [NODEGROUP [=] node_group_id]\n [(subpartition_definition [, subpartition_definition] ...)]\n\nsubpartition_definition:\n SUBPARTITION logical_name\n [[STORAGE] ENGINE [=] engine_name]\n [COMMENT [=] \'comment_text\' ]\n [DATA DIRECTORY [=] \'data_dir\']\n [INDEX DIRECTORY [=] \'index_dir\']\n [MAX_ROWS [=] max_number_of_rows]\n [MIN_ROWS [=] min_number_of_rows]\n [TABLESPACE [=] tablespace_name]\n [NODEGROUP [=] node_group_id]\n\nselect_statement:\n [IGNORE | REPLACE] [AS] SELECT ... (Some legal select statement)\n\nCREATE TABLE creates a table with the given name. You must have the\nCREATE privilege for the table.\n\nRules for allowable table names are given in\nhttp://dev.mysql.com/doc/refman/5.1/en/identifiers.html. By default,\nthe table is created in the default database. An error occurs if the\ntable exists, if there is no default database, or if the database does\nnot exist.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/create-table.html\n\n','','http://dev.mysql.com/doc/refman/5.1/en/create-table.html'),(467,'>',18,'Syntax:\n>\n\nGreater than:\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/comparison-operators.html\n\n','mysql> SELECT 2 > 2;\n -> 0\n','http://dev.mysql.com/doc/refman/5.1/en/comparison-operators.html'),(468,'ANALYZE TABLE',20,'Syntax:\nANALYZE [NO_WRITE_TO_BINLOG | LOCAL] TABLE\n tbl_name [, tbl_name] ...\n\nANALYZE TABLE analyzes and stores the key distribution for a table.\nDuring the analysis, the table is locked with a read lock for MyISAM.\nFor InnoDB the table is locked with a write lock. This statement works\nwith MyISAM and InnoDB tables. For MyISAM tables, this statement is\nequivalent to using myisamchk --analyze.\n\nFor more information on how the analysis works within InnoDB, see\nhttp://dev.mysql.com/doc/refman/5.1/en/innodb-restrictions.html.\n\nMySQL uses the stored key distribution to decide the order in which\ntables should be joined when you perform a join on something other than\na constant. In addition, key distributions can be used when deciding\nwhich indexes to use for a specific table within a query.\n\nThis statement requires SELECT and INSERT privileges for the table.\n\nBeginning with MySQL 5.1.27, ANALYZE TABLE is also supported for\npartitioned tables. Also beginning with MySQL 5.1.27, you can use ALTER\nTABLE ... ANALYZE PARTITION to analyze one or more partitions; for more\ninformation, see [HELP ALTER TABLE], and\nhttp://dev.mysql.com/doc/refman/5.1/en/partitioning-maintenance.html.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/analyze-table.html\n\n','','http://dev.mysql.com/doc/refman/5.1/en/analyze-table.html'),(469,'MICROSECOND',31,'Syntax:\nMICROSECOND(expr)\n\nReturns the microseconds from the time or datetime expression expr as a\nnumber in the range from 0 to 999999.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/date-and-time-functions.html\n\n','mysql> SELECT MICROSECOND(\'12:00:00.123456\');\n -> 123456\nmysql> SELECT MICROSECOND(\'2009-12-31 23:59:59.000010\');\n -> 10\n','http://dev.mysql.com/doc/refman/5.1/en/date-and-time-functions.html'),(470,'CONSTRAINT',38,'InnoDB supports foreign key constraints. The syntax for a foreign key\nconstraint definition in InnoDB looks like this:\n\n[CONSTRAINT [symbol]] FOREIGN KEY\n [index_name] (index_col_name, ...)\n REFERENCES tbl_name (index_col_name,...)\n [ON DELETE reference_option]\n [ON UPDATE reference_option]\n\nreference_option:\n RESTRICT | CASCADE | SET NULL | NO ACTION\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/innodb-foreign-key-constraints.html\n\n','CREATE TABLE product (category INT NOT NULL, id INT NOT NULL,\n price DECIMAL,\n PRIMARY KEY(category, id)) ENGINE=INNODB;\nCREATE TABLE customer (id INT NOT NULL,\n PRIMARY KEY (id)) ENGINE=INNODB;\nCREATE TABLE product_order (no INT NOT NULL AUTO_INCREMENT,\n product_category INT NOT NULL,\n product_id INT NOT NULL,\n customer_id INT NOT NULL,\n PRIMARY KEY(no),\n INDEX (product_category, product_id),\n FOREIGN KEY (product_category, product_id)\n REFERENCES product(category, id)\n ON UPDATE CASCADE ON DELETE RESTRICT,\n INDEX (customer_id),\n FOREIGN KEY (customer_id)\n REFERENCES customer(id)) ENGINE=INNODB;\n','http://dev.mysql.com/doc/refman/5.1/en/innodb-foreign-key-constraints.html'),(471,'CREATE SERVER',38,'Syntax:\nCREATE SERVER server_name\n FOREIGN DATA WRAPPER wrapper_name\n OPTIONS (option [, option] ...)\n\noption:\n { HOST character-literal\n | DATABASE character-literal\n | USER character-literal\n | PASSWORD character-literal\n | SOCKET character-literal\n | OWNER character-literal\n | PORT numeric-literal }\n\nThis statement creates the definition of a server for use with the\nFEDERATED storage engine. The CREATE SERVER statement creates a new row\nwithin the servers table within the mysql database. This statement\nrequires the SUPER privilege.\n\nThe server_name should be a unique reference to the server. Server\ndefinitions are global within the scope of the server, it is not\npossible to qualify the server definition to a specific database.\nserver_name has a maximum length of 64 characters (names longer than 64\ncharacters are silently truncated), and is case insensitive. You may\nspecify the name as a quoted string.\n\nThe wrapper_name should be mysql, and may be quoted with single\nquotation marks. Other values for wrapper_name are not currently\nsupported.\n\nFor each option you must specify either a character literal or numeric\nliteral. Character literals are UTF-8, support a maximum length of 64\ncharacters and default to a blank (empty) string. String literals are\nsilently truncated to 64 characters. Numeric literals must be a number\nbetween 0 and 9999, default value is 0.\n\n*Note*: Note that the OWNER option is currently not applied, and has no\neffect on the ownership or operation of the server connection that is\ncreated.\n\nThe CREATE SERVER statement creates an entry in the mysql.servers table\nthat can later be used with the CREATE TABLE statement when creating a\nFEDERATED table. The options that you specify will be used to populate\nthe columns in the mysql.servers table. The table columns are\nServer_name, Host, Db, Username, Password, Port and Socket.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/create-server.html\n\n','CREATE SERVER s\nFOREIGN DATA WRAPPER mysql\nOPTIONS (USER \'Remote\', HOST \'192.168.1.106\', DATABASE \'test\');\n','http://dev.mysql.com/doc/refman/5.1/en/create-server.html'),(472,'FIELD',36,'Syntax:\nFIELD(str,str1,str2,str3,...)\n\nReturns the index (position) of str in the str1, str2, str3, ... list.\nReturns 0 if str is not found.\n\nIf all arguments to FIELD() are strings, all arguments are compared as\nstrings. If all arguments are numbers, they are compared as numbers.\nOtherwise, the arguments are compared as double.\n\nIf str is NULL, the return value is 0 because NULL fails equality\ncomparison with any value. FIELD() is the complement of ELT().\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/string-functions.html\n\n','mysql> SELECT FIELD(\'ej\', \'Hej\', \'ej\', \'Heja\', \'hej\', \'foo\');\n -> 2\nmysql> SELECT FIELD(\'fo\', \'Hej\', \'ej\', \'Heja\', \'hej\', \'foo\');\n -> 0\n','http://dev.mysql.com/doc/refman/5.1/en/string-functions.html'),(473,'MAKETIME',31,'Syntax:\nMAKETIME(hour,minute,second)\n\nReturns a time value calculated from the hour, minute, and second\narguments.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/date-and-time-functions.html\n\n','mysql> SELECT MAKETIME(12,15,30);\n -> \'12:15:30\'\n','http://dev.mysql.com/doc/refman/5.1/en/date-and-time-functions.html'),(474,'CURDATE',31,'Syntax:\nCURDATE()\n\nReturns the current date as a value in \'YYYY-MM-DD\' or YYYYMMDD format,\ndepending on whether the function is used in a string or numeric\ncontext.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/date-and-time-functions.html\n\n','mysql> SELECT CURDATE();\n -> \'2008-06-13\'\nmysql> SELECT CURDATE() + 0;\n -> 20080613\n','http://dev.mysql.com/doc/refman/5.1/en/date-and-time-functions.html'),(475,'SET PASSWORD',10,'Syntax:\nSET PASSWORD [FOR user] =\n {\n PASSWORD(\'some password\')\n | OLD_PASSWORD(\'some password\')\n | \'encrypted password\'\n }\n\nThe SET PASSWORD statement assigns a password to an existing MySQL user\naccount.\n\nIf the password is specified using the PASSWORD() or OLD_PASSWORD()\nfunction, the literal text of the password should be given. If the\npassword is specified without using either function, the password\nshould be the already-encrypted password value as returned by\nPASSWORD().\n\nWith no FOR clause, this statement sets the password for the current\nuser. Any client that has connected to the server using a nonanonymous\naccount can change the password for that account.\n\nWith a FOR clause, this statement sets the password for a specific\naccount on the current server host. Only clients that have the UPDATE\nprivilege for the mysql database can do this. The user value should be\ngiven in user_name@host_name format, where user_name and host_name are\nexactly as they are listed in the User and Host columns of the\nmysql.user table entry. For example, if you had an entry with User and\nHost column values of \'bob\' and \'%.loc.gov\', you would write the\nstatement like this:\n\nSET PASSWORD FOR \'bob\'@\'%.loc.gov\' = PASSWORD(\'newpass\');\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/set-password.html\n\n','','http://dev.mysql.com/doc/refman/5.1/en/set-password.html'),(476,'ALTER TABLESPACE',38,'Syntax:\nALTER TABLESPACE tablespace_name\n {ADD|DROP} DATAFILE \'file_name\'\n [INITIAL_SIZE [=] size]\n [WAIT]\n ENGINE [=] engine_name\n\nThis statement can be used either to add a new data file, or to drop a\ndata file from a tablespace.\n\nThe ADD DATAFILE variant allows you to specify an initial size using an\nINITIAL_SIZE clause, where size is measured in bytes; the default value\nis 128M (128 megabytes). You may optionally follow this integer value\nwith a one-letter abbreviation for an order of magnitude, similar to\nthose used in my.cnf. Generally, this is one of the letters M (for\nmegabytes) or G (for gigabytes).\n\n*Note*: All MySQL Cluster Disk Data objects share the same namespace.\nThis means that each Disk Data object must be uniquely named (and not\nmerely each Disk Data object of a given type). For example, you cannot\nhave a tablespace and an data file with the same name, or an undo log\nfile and a with the same name.\n\nPrior to MySQL Cluster NDB 6.2.17, 6.3.23, and 6.4.3, path and file\nnames for data files could not be longer than 128 characters.\n(Bug#31770 (http://bugs.mysql.com/bug.php?id=31770))\n\nOn 32-bit systems, the maximum supported value for INITIAL_SIZE is 4G.\n(Bug#29186 (http://bugs.mysql.com/bug.php?id=29186))\n\nINITIAL_SIZE is rounded as for CREATE TABLESPACE. Beginning with MySQL\nCluster NDB 6.2.19, MySQL Cluster NDB 6.3.32, MySQL Cluster NDB 7.0.13,\nand MySQL Cluster NDB 7.1.2, this rounding is done explicitly (also as\nwith CREATE TABLESPACE).\n\nOnce a data file has been created, its size cannot be changed; however,\nyou can add more data files to the tablespace using additional ALTER\nTABLESPACE ... ADD DATAFILE statements.\n\nUsing DROP DATAFILE with ALTER TABLESPACE drops the data file\n\'file_name\' from the tablespace. This file must already have been added\nto the tablespace using CREATE TABLESPACE or ALTER TABLESPACE;\notherwise an error will result.\n\nBoth ALTER TABLESPACE ... ADD DATAFILE and ALTER TABLESPACE ... DROP\nDATAFILE require an ENGINE clause which specifies the storage engine\nused by the tablespace. In MySQL 5.1, the only accepted values for\nengine_name are NDB and NDBCLUSTER.\n\nWAIT is parsed but otherwise ignored, and so has no effect in MySQL\n5.1. It is intended for future expansion.\n\nWhen ALTER TABLESPACE ... ADD DATAFILE is used with ENGINE = NDB, a\ndata file is created on each Cluster data node. You can verify that the\ndata files were created and obtain information about them by querying\nthe INFORMATION_SCHEMA.FILES table. For example, the following query\nshows all data files belonging to the tablespace named newts:\n\nmysql> SELECT LOGFILE_GROUP_NAME, FILE_NAME, EXTRA\n -> FROM INFORMATION_SCHEMA.FILES\n -> WHERE TABLESPACE_NAME = \'newts\' AND FILE_TYPE = \'DATAFILE\';\n+--------------------+--------------+----------------+\n| LOGFILE_GROUP_NAME | FILE_NAME | EXTRA |\n+--------------------+--------------+----------------+\n| lg_3 | newdata.dat | CLUSTER_NODE=3 |\n| lg_3 | newdata.dat | CLUSTER_NODE=4 |\n| lg_3 | newdata2.dat | CLUSTER_NODE=3 |\n| lg_3 | newdata2.dat | CLUSTER_NODE=4 |\n+--------------------+--------------+----------------+\n2 rows in set (0.03 sec)\n\nSee http://dev.mysql.com/doc/refman/5.1/en/files-table.html.\n\nALTER TABLESPACE was added in MySQL 5.1.6. In MySQL 5.1, it is useful\nonly with Disk Data storage for MySQL Cluster. See\nhttp://dev.mysql.com/doc/refman/5.1/en/mysql-cluster-disk-data.html.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/alter-tablespace.html\n\n','','http://dev.mysql.com/doc/refman/5.1/en/alter-tablespace.html'),(477,'IF FUNCTION',7,'Syntax:\nIF(expr1,expr2,expr3)\n\nIf expr1 is TRUE (expr1 <> 0 and expr1 <> NULL) then IF() returns\nexpr2; otherwise it returns expr3. IF() returns a numeric or string\nvalue, depending on the context in which it is used.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/control-flow-functions.html\n\n','mysql> SELECT IF(1>2,2,3);\n -> 3\nmysql> SELECT IF(1<2,\'yes\',\'no\');\n -> \'yes\'\nmysql> SELECT IF(STRCMP(\'test\',\'test1\'),\'no\',\'yes\');\n -> \'no\'\n','http://dev.mysql.com/doc/refman/5.1/en/control-flow-functions.html'),(478,'ENUM',22,'ENUM(\'value1\',\'value2\',...) [CHARACTER SET charset_name] [COLLATE\ncollation_name]\n\nAn enumeration. A string object that can have only one value, chosen\nfrom the list of values \'value1\', \'value2\', ..., NULL or the special \'\'\nerror value. An ENUM column can have a maximum of 65,535 distinct\nvalues. ENUM values are represented internally as integers.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/string-type-overview.html\n\n','','http://dev.mysql.com/doc/refman/5.1/en/string-type-overview.html'),(479,'DATABASE',17,'Syntax:\nDATABASE()\n\nReturns the default (current) database name as a string in the utf8\ncharacter set. If there is no default database, DATABASE() returns\nNULL. Within a stored routine, the default database is the database\nthat the routine is associated with, which is not necessarily the same\nas the database that is the default in the calling context.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/information-functions.html\n\n','mysql> SELECT DATABASE();\n -> \'test\'\n','http://dev.mysql.com/doc/refman/5.1/en/information-functions.html'),(480,'POINTFROMWKB',32,'PointFromWKB(wkb[,srid])\n\nConstructs a POINT value using its WKB representation and SRID.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/creating-spatial-values.html#gis-wkb-functions\n\n','','http://dev.mysql.com/doc/refman/5.1/en/creating-spatial-values.html#gis-wkb-functions'),(481,'POWER',4,'Syntax:\nPOWER(X,Y)\n\nThis is a synonym for POW().\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/mathematical-functions.html\n\n','','http://dev.mysql.com/doc/refman/5.1/en/mathematical-functions.html'),(482,'ATAN',4,'Syntax:\nATAN(X)\n\nReturns the arc tangent of X, that is, the value whose tangent is X.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/mathematical-functions.html\n\n','mysql> SELECT ATAN(2);\n -> 1.1071487177941\nmysql> SELECT ATAN(-2);\n -> -1.1071487177941\n','http://dev.mysql.com/doc/refman/5.1/en/mathematical-functions.html'),(483,'STRCMP',36,'Syntax:\nSTRCMP(expr1,expr2)\n\nSTRCMP() returns 0 if the strings are the same, -1 if the first\nargument is smaller than the second according to the current sort\norder, and 1 otherwise.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/string-comparison-functions.html\n\n','mysql> SELECT STRCMP(\'text\', \'text2\');\n -> -1\nmysql> SELECT STRCMP(\'text2\', \'text\');\n -> 1\nmysql> SELECT STRCMP(\'text\', \'text\');\n -> 0\n','http://dev.mysql.com/doc/refman/5.1/en/string-comparison-functions.html'),(484,'INSERT DELAYED',27,'Syntax:\nINSERT DELAYED ...\n\nThe DELAYED option for the INSERT statement is a MySQL extension to\nstandard SQL that is very useful if you have clients that cannot or\nneed not wait for the INSERT to complete. This is a common situation\nwhen you use MySQL for logging and you also periodically run SELECT and\nUPDATE statements that take a long time to complete.\n\nWhen a client uses INSERT DELAYED, it gets an okay from the server at\nonce, and the row is queued to be inserted when the table is not in use\nby any other thread.\n\nAnother major benefit of using INSERT DELAYED is that inserts from many\nclients are bundled together and written in one block. This is much\nfaster than performing many separate inserts.\n\nNote that INSERT DELAYED is slower than a normal INSERT if the table is\nnot otherwise in use. There is also the additional overhead for the\nserver to handle a separate thread for each table for which there are\ndelayed rows. This means that you should use INSERT DELAYED only when\nyou are really sure that you need it.\n\nThe queued rows are held only in memory until they are inserted into\nthe table. This means that if you terminate mysqld forcibly (for\nexample, with kill -9) or if mysqld dies unexpectedly, any queued rows\nthat have not been written to disk are lost.\n\nThere are some constraints on the use of DELAYED:\n\no INSERT DELAYED works only with MyISAM, MEMORY, ARCHIVE, and (as of\n MySQL 5.1.19) BLACKHOLE tables. For engines that do not support\n DELAYED, an error occurs.\n\no An error occurs for INSERT DELAYED if used with a table that has been\n locked with LOCK TABLES because the insert must be handled by a\n separate thread, not by the session that holds the lock.\n\no For MyISAM tables, if there are no free blocks in the middle of the\n data file, concurrent SELECT and INSERT statements are supported.\n Under these circumstances, you very seldom need to use INSERT DELAYED\n with MyISAM.\n\no INSERT DELAYED should be used only for INSERT statements that specify\n value lists. The server ignores DELAYED for INSERT ... SELECT or\n INSERT ... ON DUPLICATE KEY UPDATE statements.\n\no Because the INSERT DELAYED statement returns immediately, before the\n rows are inserted, you cannot use LAST_INSERT_ID() to get the\n AUTO_INCREMENT value that the statement might generate.\n\no DELAYED rows are not visible to SELECT statements until they actually\n have been inserted.\n\no INSERT DELAYED is treated as a normal INSERT if the statement inserts\n multiple rows and binary logging is enabled and the global logging\n format is to use statement-based logging (binlog_format is set to\n STATEMENT). This restriction does not apply to row-based binary\n logging.\n\no DELAYED is ignored on slave replication servers, so that INSERT\n DELAYED is treated as a normal INSERT on slaves. This is because\n DELAYED could cause the slave to have different data than the master.\n\no Pending INSERT DELAYED statements are lost if a table is write locked\n and ALTER TABLE is used to modify the table structure.\n\no INSERT DELAYED is not supported for views.\n\no INSERT DELAYED is not supported for partitioned tables.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/insert-delayed.html\n\n','','http://dev.mysql.com/doc/refman/5.1/en/insert-delayed.html'),(485,'SHOW PROFILE',26,'Syntax:\nSHOW PROFILES\n\nThe SHOW PROFILE statement display profiling information that indicates\nresource usage for statements executed during the course of the current\nsession. It is used together with SHOW PROFILES; see [HELP SHOW\nPROFILES].\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/show-profile.html\n\n','','http://dev.mysql.com/doc/refman/5.1/en/show-profile.html'),(486,'SHOW PROCEDURE CODE',26,'Syntax:\nSHOW PROCEDURE CODE proc_name\n\nThis statement is a MySQL extension that is available only for servers\nthat have been built with debugging support. It displays a\nrepresentation of the internal implementation of the named stored\nprocedure. A similar statement, SHOW FUNCTION CODE, displays\ninformation about stored functions (see [HELP SHOW FUNCTION CODE]).\n\nBoth statements require that you be the owner of the routine or have\nSELECT access to the mysql.proc table.\n\nIf the named routine is available, each statement produces a result\nset. Each row in the result set corresponds to one \"instruction\" in the\nroutine. The first column is Pos, which is an ordinal number beginning\nwith 0. The second column is Instruction, which contains an SQL\nstatement (usually changed from the original source), or a directive\nwhich has meaning only to the stored-routine handler.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/show-procedure-code.html\n\n','mysql> DELIMITER //\nmysql> CREATE PROCEDURE p1 ()\n -> BEGIN\n -> DECLARE fanta INT DEFAULT 55;\n -> DROP TABLE t2;\n -> LOOP\n -> INSERT INTO t3 VALUES (fanta);\n -> END LOOP;\n -> END//\nQuery OK, 0 rows affected (0.00 sec)\n\nmysql> SHOW PROCEDURE CODE p1//\n+-----+----------------------------------------+\n| Pos | Instruction |\n+-----+----------------------------------------+\n| 0 | set fanta@0 55 |\n| 1 | stmt 9 \"DROP TABLE t2\" |\n| 2 | stmt 5 \"INSERT INTO t3 VALUES (fanta)\" |\n| 3 | jump 2 |\n+-----+----------------------------------------+\n4 rows in set (0.00 sec)\n','http://dev.mysql.com/doc/refman/5.1/en/show-procedure-code.html'),(487,'MEDIUMTEXT',22,'MEDIUMTEXT [CHARACTER SET charset_name] [COLLATE collation_name]\n\nA TEXT column with a maximum length of 16,777,215 (224 - 1) characters.\nThe effective maximum length is less if the value contains multi-byte\ncharacters. Each MEDIUMTEXT value is stored using a three-byte length\nprefix that indicates the number of bytes in the value.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/string-type-overview.html\n\n','','http://dev.mysql.com/doc/refman/5.1/en/string-type-overview.html'),(488,'LN',4,'Syntax:\nLN(X)\n\nReturns the natural logarithm of X; that is, the base-e logarithm of X.\nIf X is less than or equal to 0, then NULL is returned.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/mathematical-functions.html\n\n','mysql> SELECT LN(2);\n -> 0.69314718055995\nmysql> SELECT LN(-2);\n -> NULL\n','http://dev.mysql.com/doc/refman/5.1/en/mathematical-functions.html'),(489,'RETURN',23,'Syntax:\nRETURN expr\n\nThe RETURN statement terminates execution of a stored function and\nreturns the value expr to the function caller. There must be at least\none RETURN statement in a stored function. There may be more than one\nif the function has multiple exit points.\n\nThis statement is not used in stored procedures, triggers, or events.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/return.html\n\n','','http://dev.mysql.com/doc/refman/5.1/en/return.html'),(490,'SHOW COLLATION',26,'Syntax:\nSHOW COLLATION\n [LIKE \'pattern\' | WHERE expr]\n\nThis statement lists collations supported by the server. By default,\nthe output from SHOW COLLATION includes all available collations. The\nLIKE clause, if present, indicates which collation names to match. The\nWHERE clause can be given to select rows using more general conditions,\nas discussed in\nhttp://dev.mysql.com/doc/refman/5.1/en/extended-show.html. For example:\n\nmysql> SHOW COLLATION LIKE \'latin1%\';\n+-------------------+---------+----+---------+----------+---------+\n| Collation | Charset | Id | Default | Compiled | Sortlen |\n+-------------------+---------+----+---------+----------+---------+\n| latin1_german1_ci | latin1 | 5 | | | 0 |\n| latin1_swedish_ci | latin1 | 8 | Yes | Yes | 0 |\n| latin1_danish_ci | latin1 | 15 | | | 0 |\n| latin1_german2_ci | latin1 | 31 | | Yes | 2 |\n| latin1_bin | latin1 | 47 | | Yes | 0 |\n| latin1_general_ci | latin1 | 48 | | | 0 |\n| latin1_general_cs | latin1 | 49 | | | 0 |\n| latin1_spanish_ci | latin1 | 94 | | | 0 |\n+-------------------+---------+----+---------+----------+---------+\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/show-collation.html\n\n','','http://dev.mysql.com/doc/refman/5.1/en/show-collation.html'),(491,'LOG',4,'Syntax:\nLOG(X), LOG(B,X)\n\nIf called with one parameter, this function returns the natural\nlogarithm of X. If X is less than or equal to 0, then NULL is returned.\n\nThe inverse of this function (when called with a single argument) is\nthe EXP() function.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/mathematical-functions.html\n\n','mysql> SELECT LOG(2);\n -> 0.69314718055995\nmysql> SELECT LOG(-2);\n -> NULL\n','http://dev.mysql.com/doc/refman/5.1/en/mathematical-functions.html'),(492,'SET SQL_LOG_BIN',26,'Syntax:\nSET sql_log_bin = {0|1}\n\nDisables or enables binary logging for the current session (sql_log_bin\nis a session variable) if the client has the SUPER privilege. The\nstatement fails with an error if the client does not have that\nprivilege.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/set-sql-log-bin.html\n\n','','http://dev.mysql.com/doc/refman/5.1/en/set-sql-log-bin.html'),(493,'!=',18,'Syntax:\n<>, !=\n\nNot equal:\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/comparison-operators.html\n\n','mysql> SELECT \'.01\' <> \'0.01\';\n -> 1\nmysql> SELECT .01 <> \'0.01\';\n -> 0\nmysql> SELECT \'zapp\' <> \'zappp\';\n -> 1\n','http://dev.mysql.com/doc/refman/5.1/en/comparison-operators.html'),(494,'WHILE',23,'Syntax:\n[begin_label:] WHILE search_condition DO\n statement_list\nEND WHILE [end_label]\n\nThe statement list within a WHILE statement is repeated as long as the\nsearch_condition is true. statement_list consists of one or more\nstatements.\n\nA WHILE statement can be labeled. See [HELP BEGIN END] for the rules\nregarding label use.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/while-statement.html\n\n','CREATE PROCEDURE dowhile()\nBEGIN\n DECLARE v1 INT DEFAULT 5;\n\n WHILE v1 > 0 DO\n ...\n SET v1 = v1 - 1;\n END WHILE;\nEND\n','http://dev.mysql.com/doc/refman/5.1/en/while-statement.html'),(495,'AES_DECRYPT',12,'Syntax:\nAES_DECRYPT(crypt_str,key_str)\n\nThis function allows decryption of data using the official AES\n(Advanced Encryption Standard) algorithm. For more information, see the\ndescription of AES_ENCRYPT().\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/encryption-functions.html\n\n','','http://dev.mysql.com/doc/refman/5.1/en/encryption-functions.html'),(496,'DAYNAME',31,'Syntax:\nDAYNAME(date)\n\nReturns the name of the weekday for date. As of MySQL 5.1.12, the\nlanguage used for the name is controlled by the value of the\nlc_time_names system variable\n(http://dev.mysql.com/doc/refman/5.1/en/locale-support.html).\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/date-and-time-functions.html\n\n','mysql> SELECT DAYNAME(\'2007-02-03\');\n -> \'Saturday\'\n','http://dev.mysql.com/doc/refman/5.1/en/date-and-time-functions.html'),(497,'COERCIBILITY',17,'Syntax:\nCOERCIBILITY(str)\n\nReturns the collation coercibility value of the string argument.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/information-functions.html\n\n','mysql> SELECT COERCIBILITY(\'abc\' COLLATE latin1_swedish_ci);\n -> 0\nmysql> SELECT COERCIBILITY(USER());\n -> 3\nmysql> SELECT COERCIBILITY(\'abc\');\n -> 4\n','http://dev.mysql.com/doc/refman/5.1/en/information-functions.html'),(498,'INT',22,'INT[(M)] [UNSIGNED] [ZEROFILL]\n\nA normal-size integer. The signed range is -2147483648 to 2147483647.\nThe unsigned range is 0 to 4294967295.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/numeric-type-overview.html\n\n','','http://dev.mysql.com/doc/refman/5.1/en/numeric-type-overview.html'),(499,'GLENGTH',13,'GLength(ls)\n\nReturns as a double-precision number the length of the LineString value\nls in its associated spatial reference.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/geometry-property-functions.html#linestring-property-functions\n\n','mysql> SET @ls = \'LineString(1 1,2 2,3 3)\';\nmysql> SELECT GLength(GeomFromText(@ls));\n+----------------------------+\n| GLength(GeomFromText(@ls)) |\n+----------------------------+\n| 2.8284271247462 |\n+----------------------------+\n','http://dev.mysql.com/doc/refman/5.1/en/geometry-property-functions.html#linestring-property-functions'),(500,'RADIANS',4,'Syntax:\nRADIANS(X)\n\nReturns the argument X, converted from degrees to radians. (Note that\nπ radians equals 180 degrees.)\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/mathematical-functions.html\n\n','mysql> SELECT RADIANS(90);\n -> 1.5707963267949\n','http://dev.mysql.com/doc/refman/5.1/en/mathematical-functions.html'),(501,'COLLATION',17,'Syntax:\nCOLLATION(str)\n\nReturns the collation of the string argument.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/information-functions.html\n\n','mysql> SELECT COLLATION(\'abc\');\n -> \'latin1_swedish_ci\'\nmysql> SELECT COLLATION(_utf8\'abc\');\n -> \'utf8_general_ci\'\n','http://dev.mysql.com/doc/refman/5.1/en/information-functions.html'),(502,'COALESCE',18,'Syntax:\nCOALESCE(value,...)\n\nReturns the first non-NULL value in the list, or NULL if there are no\nnon-NULL values.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/comparison-operators.html\n\n','mysql> SELECT COALESCE(NULL,1);\n -> 1\nmysql> SELECT COALESCE(NULL,NULL,NULL);\n -> NULL\n','http://dev.mysql.com/doc/refman/5.1/en/comparison-operators.html'),(503,'VERSION',17,'Syntax:\nVERSION()\n\nReturns a string that indicates the MySQL server version. The string\nuses the utf8 character set.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/information-functions.html\n\n','mysql> SELECT VERSION();\n -> \'5.1.49-standard\'\n','http://dev.mysql.com/doc/refman/5.1/en/information-functions.html'),(504,'MAKE_SET',36,'Syntax:\nMAKE_SET(bits,str1,str2,...)\n\nReturns a set value (a string containing substrings separated by \",\"\ncharacters) consisting of the strings that have the corresponding bit\nin bits set. str1 corresponds to bit 0, str2 to bit 1, and so on. NULL\nvalues in str1, str2, ... are not appended to the result.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/string-functions.html\n\n','mysql> SELECT MAKE_SET(1,\'a\',\'b\',\'c\');\n -> \'a\'\nmysql> SELECT MAKE_SET(1 | 4,\'hello\',\'nice\',\'world\');\n -> \'hello,world\'\nmysql> SELECT MAKE_SET(1 | 4,\'hello\',\'nice\',NULL,\'world\');\n -> \'hello\'\nmysql> SELECT MAKE_SET(0,\'a\',\'b\',\'c\');\n -> \'\'\n','http://dev.mysql.com/doc/refman/5.1/en/string-functions.html'),(505,'FIND_IN_SET',36,'Syntax:\nFIND_IN_SET(str,strlist)\n\nReturns a value in the range of 1 to N if the string str is in the\nstring list strlist consisting of N substrings. A string list is a\nstring composed of substrings separated by \",\" characters. If the first\nargument is a constant string and the second is a column of type SET,\nthe FIND_IN_SET() function is optimized to use bit arithmetic. Returns\n0 if str is not in strlist or if strlist is the empty string. Returns\nNULL if either argument is NULL. This function does not work properly\nif the first argument contains a comma (\",\") character.\n\nURL: http://dev.mysql.com/doc/refman/5.1/en/string-functions.html\n\n','mysql> SELECT FIND_IN_SET(\'b\',\'a,b,c,d\');\n -> 2\n','http://dev.mysql.com/doc/refman/5.1/en/string-functions.html'); /*!40000 ALTER TABLE `help_topic` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `host` -- DROP TABLE IF EXISTS `host`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `host` ( `Host` char(60) COLLATE utf8_bin NOT NULL DEFAULT '', `Db` char(64) COLLATE utf8_bin NOT NULL DEFAULT '', `Select_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N', `Insert_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N', `Update_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N', `Delete_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N', `Create_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N', `Drop_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N', `Grant_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N', `References_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N', `Index_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N', `Alter_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N', `Create_tmp_table_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N', `Lock_tables_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N', `Create_view_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N', `Show_view_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N', `Create_routine_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N', `Alter_routine_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N', `Execute_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N', `Trigger_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N', PRIMARY KEY (`Host`,`Db`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_bin COMMENT='Host privileges; Merged with database privileges'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `host` -- LOCK TABLES `host` WRITE; /*!40000 ALTER TABLE `host` DISABLE KEYS */; /*!40000 ALTER TABLE `host` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `ndb_binlog_index` -- DROP TABLE IF EXISTS `ndb_binlog_index`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `ndb_binlog_index` ( `Position` bigint(20) unsigned NOT NULL, `File` varchar(255) NOT NULL, `epoch` bigint(20) unsigned NOT NULL, `inserts` bigint(20) unsigned NOT NULL, `updates` bigint(20) unsigned NOT NULL, `deletes` bigint(20) unsigned NOT NULL, `schemaops` bigint(20) unsigned NOT NULL, PRIMARY KEY (`epoch`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `ndb_binlog_index` -- LOCK TABLES `ndb_binlog_index` WRITE; /*!40000 ALTER TABLE `ndb_binlog_index` DISABLE KEYS */; /*!40000 ALTER TABLE `ndb_binlog_index` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `plugin` -- DROP TABLE IF EXISTS `plugin`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `plugin` ( `name` char(64) COLLATE utf8_bin NOT NULL DEFAULT '', `dl` char(128) COLLATE utf8_bin NOT NULL DEFAULT '', PRIMARY KEY (`name`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_bin COMMENT='MySQL plugins'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `plugin` -- LOCK TABLES `plugin` WRITE; /*!40000 ALTER TABLE `plugin` DISABLE KEYS */; /*!40000 ALTER TABLE `plugin` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `proc` -- DROP TABLE IF EXISTS `proc`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `proc` ( `db` char(64) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL DEFAULT '', `name` char(64) NOT NULL DEFAULT '', `type` enum('FUNCTION','PROCEDURE') NOT NULL, `specific_name` char(64) NOT NULL DEFAULT '', `language` enum('SQL') NOT NULL DEFAULT 'SQL', `sql_data_access` enum('CONTAINS_SQL','NO_SQL','READS_SQL_DATA','MODIFIES_SQL_DATA') NOT NULL DEFAULT 'CONTAINS_SQL', `is_deterministic` enum('YES','NO') NOT NULL DEFAULT 'NO', `security_type` enum('INVOKER','DEFINER') NOT NULL DEFAULT 'DEFINER', `param_list` blob NOT NULL, `returns` longblob NOT NULL, `body` longblob NOT NULL, `definer` char(77) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL DEFAULT '', `created` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, `modified` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00', `sql_mode` set('REAL_AS_FLOAT','PIPES_AS_CONCAT','ANSI_QUOTES','IGNORE_SPACE','NOT_USED','ONLY_FULL_GROUP_BY','NO_UNSIGNED_SUBTRACTION','NO_DIR_IN_CREATE','POSTGRESQL','ORACLE','MSSQL','DB2','MAXDB','NO_KEY_OPTIONS','NO_TABLE_OPTIONS','NO_FIELD_OPTIONS','MYSQL323','MYSQL40','ANSI','NO_AUTO_VALUE_ON_ZERO','NO_BACKSLASH_ESCAPES','STRICT_TRANS_TABLES','STRICT_ALL_TABLES','NO_ZERO_IN_DATE','NO_ZERO_DATE','INVALID_DATES','ERROR_FOR_DIVISION_BY_ZERO','TRADITIONAL','NO_AUTO_CREATE_USER','HIGH_NOT_PRECEDENCE','NO_ENGINE_SUBSTITUTION','PAD_CHAR_TO_FULL_LENGTH') NOT NULL DEFAULT '', `comment` char(64) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL DEFAULT '', `character_set_client` char(32) CHARACTER SET utf8 COLLATE utf8_bin DEFAULT NULL, `collation_connection` char(32) CHARACTER SET utf8 COLLATE utf8_bin DEFAULT NULL, `db_collation` char(32) CHARACTER SET utf8 COLLATE utf8_bin DEFAULT NULL, `body_utf8` longblob, PRIMARY KEY (`db`,`name`,`type`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Stored Procedures'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `proc` -- LOCK TABLES `proc` WRITE; /*!40000 ALTER TABLE `proc` DISABLE KEYS */; /*!40000 ALTER TABLE `proc` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `procs_priv` -- DROP TABLE IF EXISTS `procs_priv`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `procs_priv` ( `Host` char(60) COLLATE utf8_bin NOT NULL DEFAULT '', `Db` char(64) COLLATE utf8_bin NOT NULL DEFAULT '', `User` char(16) COLLATE utf8_bin NOT NULL DEFAULT '', `Routine_name` char(64) CHARACTER SET utf8 NOT NULL DEFAULT '', `Routine_type` enum('FUNCTION','PROCEDURE') COLLATE utf8_bin NOT NULL, `Grantor` char(77) COLLATE utf8_bin NOT NULL DEFAULT '', `Proc_priv` set('Execute','Alter Routine','Grant') CHARACTER SET utf8 NOT NULL DEFAULT '', `Timestamp` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, PRIMARY KEY (`Host`,`Db`,`User`,`Routine_name`,`Routine_type`), KEY `Grantor` (`Grantor`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_bin COMMENT='Procedure privileges'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `procs_priv` -- LOCK TABLES `procs_priv` WRITE; /*!40000 ALTER TABLE `procs_priv` DISABLE KEYS */; /*!40000 ALTER TABLE `procs_priv` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `servers` -- DROP TABLE IF EXISTS `servers`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `servers` ( `Server_name` char(64) NOT NULL DEFAULT '', `Host` char(64) NOT NULL DEFAULT '', `Db` char(64) NOT NULL DEFAULT '', `Username` char(64) NOT NULL DEFAULT '', `Password` char(64) NOT NULL DEFAULT '', `Port` int(4) NOT NULL DEFAULT '0', `Socket` char(64) NOT NULL DEFAULT '', `Wrapper` char(64) NOT NULL DEFAULT '', `Owner` char(64) NOT NULL DEFAULT '', PRIMARY KEY (`Server_name`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='MySQL Foreign Servers table'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `servers` -- LOCK TABLES `servers` WRITE; /*!40000 ALTER TABLE `servers` DISABLE KEYS */; /*!40000 ALTER TABLE `servers` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tables_priv` -- DROP TABLE IF EXISTS `tables_priv`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `tables_priv` ( `Host` char(60) COLLATE utf8_bin NOT NULL DEFAULT '', `Db` char(64) COLLATE utf8_bin NOT NULL DEFAULT '', `User` char(16) COLLATE utf8_bin NOT NULL DEFAULT '', `Table_name` char(64) COLLATE utf8_bin NOT NULL DEFAULT '', `Grantor` char(77) COLLATE utf8_bin NOT NULL DEFAULT '', `Timestamp` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, `Table_priv` set('Select','Insert','Update','Delete','Create','Drop','Grant','References','Index','Alter','Create View','Show view','Trigger') CHARACTER SET utf8 NOT NULL DEFAULT '', `Column_priv` set('Select','Insert','Update','References') CHARACTER SET utf8 NOT NULL DEFAULT '', PRIMARY KEY (`Host`,`Db`,`User`,`Table_name`), KEY `Grantor` (`Grantor`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_bin COMMENT='Table privileges'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tables_priv` -- LOCK TABLES `tables_priv` WRITE; /*!40000 ALTER TABLE `tables_priv` DISABLE KEYS */; INSERT INTO `tables_priv` VALUES ('%','mysql','ODBC','user','admin@localhost','2011-05-15 21:40:12','Select',''),('%','mysql','ODBC','db','admin@localhost','2011-05-15 21:40:12','Select',''); /*!40000 ALTER TABLE `tables_priv` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `time_zone` -- DROP TABLE IF EXISTS `time_zone`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `time_zone` ( `Time_zone_id` int(10) unsigned NOT NULL AUTO_INCREMENT, `Use_leap_seconds` enum('Y','N') NOT NULL DEFAULT 'N', PRIMARY KEY (`Time_zone_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Time zones'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `time_zone` -- LOCK TABLES `time_zone` WRITE; /*!40000 ALTER TABLE `time_zone` DISABLE KEYS */; /*!40000 ALTER TABLE `time_zone` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `time_zone_leap_second` -- DROP TABLE IF EXISTS `time_zone_leap_second`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `time_zone_leap_second` ( `Transition_time` bigint(20) NOT NULL, `Correction` int(11) NOT NULL, PRIMARY KEY (`Transition_time`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Leap seconds information for time zones'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `time_zone_leap_second` -- LOCK TABLES `time_zone_leap_second` WRITE; /*!40000 ALTER TABLE `time_zone_leap_second` DISABLE KEYS */; /*!40000 ALTER TABLE `time_zone_leap_second` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `time_zone_name` -- DROP TABLE IF EXISTS `time_zone_name`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `time_zone_name` ( `Name` char(64) NOT NULL, `Time_zone_id` int(10) unsigned NOT NULL, PRIMARY KEY (`Name`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Time zone names'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `time_zone_name` -- LOCK TABLES `time_zone_name` WRITE; /*!40000 ALTER TABLE `time_zone_name` DISABLE KEYS */; /*!40000 ALTER TABLE `time_zone_name` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `time_zone_transition` -- DROP TABLE IF EXISTS `time_zone_transition`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `time_zone_transition` ( `Time_zone_id` int(10) unsigned NOT NULL, `Transition_time` bigint(20) NOT NULL, `Transition_type_id` int(10) unsigned NOT NULL, PRIMARY KEY (`Time_zone_id`,`Transition_time`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Time zone transitions'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `time_zone_transition` -- LOCK TABLES `time_zone_transition` WRITE; /*!40000 ALTER TABLE `time_zone_transition` DISABLE KEYS */; /*!40000 ALTER TABLE `time_zone_transition` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `time_zone_transition_type` -- DROP TABLE IF EXISTS `time_zone_transition_type`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `time_zone_transition_type` ( `Time_zone_id` int(10) unsigned NOT NULL, `Transition_type_id` int(10) unsigned NOT NULL, `Offset` int(11) NOT NULL DEFAULT '0', `Is_DST` tinyint(3) unsigned NOT NULL DEFAULT '0', `Abbreviation` char(8) NOT NULL DEFAULT '', PRIMARY KEY (`Time_zone_id`,`Transition_type_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Time zone transition types'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `time_zone_transition_type` -- LOCK TABLES `time_zone_transition_type` WRITE; /*!40000 ALTER TABLE `time_zone_transition_type` DISABLE KEYS */; /*!40000 ALTER TABLE `time_zone_transition_type` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `user` -- DROP TABLE IF EXISTS `user`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `user` ( `Host` char(60) COLLATE utf8_bin NOT NULL DEFAULT '', `User` char(16) COLLATE utf8_bin NOT NULL DEFAULT '', `Password` char(41) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', `Select_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N', `Insert_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N', `Update_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N', `Delete_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N', `Create_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N', `Drop_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N', `Reload_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N', `Shutdown_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N', `Process_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N', `File_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N', `Grant_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N', `References_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N', `Index_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N', `Alter_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N', `Show_db_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N', `Super_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N', `Create_tmp_table_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N', `Lock_tables_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N', `Execute_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N', `Repl_slave_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N', `Repl_client_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N', `Create_view_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N', `Show_view_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N', `Create_routine_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N', `Alter_routine_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N', `Create_user_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N', `Event_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N', `Trigger_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N', `ssl_type` enum('','ANY','X509','SPECIFIED') CHARACTER SET utf8 NOT NULL DEFAULT '', `ssl_cipher` blob NOT NULL, `x509_issuer` blob NOT NULL, `x509_subject` blob NOT NULL, `max_questions` int(11) unsigned NOT NULL DEFAULT '0', `max_updates` int(11) unsigned NOT NULL DEFAULT '0', `max_connections` int(11) unsigned NOT NULL DEFAULT '0', `max_user_connections` int(11) unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`Host`,`User`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_bin COMMENT='Users and global privileges'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `user` -- LOCK TABLES `user` WRITE; /*!40000 ALTER TABLE `user` DISABLE KEYS */; INSERT INTO `user` VALUES ('localhost','admin','51dfb51f6938a0d9','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','','','','',0,0,0,0),('localhost','horde','48ad242f708f64c6','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','','','','',0,0,0,0),('localhost','atmail','1f6c953c7b7d3188','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','','','','',0,0,0,0),('localhost','sitebuilder','571dc074252ac0b4','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','','','','',0,0,0,0),('localhost','mro','67435abd6a0dee56','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','','','','',0,0,0,0),('%','ODBC','7a0195d80b38f378','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','','','','',0,0,0,0); /*!40000 ALTER TABLE `user` ENABLE KEYS */; UNLOCK TABLES; -- -- Current Database: `niki` -- CREATE DATABASE /*!32312 IF NOT EXISTS*/ `niki` /*!40100 DEFAULT CHARACTER SET latin1 */; USE `niki`; -- -- Table structure for table `alldrivers` -- DROP TABLE IF EXISTS `alldrivers`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `alldrivers` ( `a_id` int(4) NOT NULL AUTO_INCREMENT, `a_lname` varchar(20) NOT NULL DEFAULT '', `a_fname` varchar(20) NOT NULL DEFAULT '', PRIMARY KEY (`a_id`) ) ENGINE=MyISAM AUTO_INCREMENT=850 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `alldrivers` -- LOCK TABLES `alldrivers` WRITE; /*!40000 ALTER TABLE `alldrivers` DISABLE KEYS */; INSERT INTO `alldrivers` VALUES (1,'ABATE','Carlo'),(2,'ABECASSIS','George'),(3,'ACHESON','Kenny'),(4,'ADAMS','Philippe'),(5,'ADER','Walt'),(6,'ADOLFF','Kurt'),(7,'AGABASHIAN','Fred'),(8,'AHRENS','Kurt Jr.'),(9,'ALBERS','Christijan'),(10,'ALBORETO','Michele'),(11,'ALESI','Jean'),(12,'ALGUERSUARI','Jaime'),(13,'ALLIOT','Philippe'),(14,'ALLISON','Cliff'),(15,'ALONSO','Fernando'),(16,'AMATI','Giovanna'),(17,'AMICK','George'),(18,'AMICK','Red'),(19,'AMON','Chris'),(20,'ANDERSON','Bob'),(21,'ANDERSSON','Conny'),(22,'ANDRETTI','Mario'),(23,'ANDRETTI','Michael'),(24,'ANDREWS','Keith'),(25,'APICELLA','Marco'),(26,'ARMI','Frank'),(27,'ARNOLD','Chuck'),(28,'ARNOUX','Rene'),(29,'ARUNDELL','Peter'),(30,'ASCARI','Alberto'),(31,'ASHDOWN','Peter'),(32,'ASHLEY','Ian'),(33,'ASHMORE','Gerry'),(34,'ASTON','Bill'),(35,'ATTWOOD','Richard'),(36,'AYULO','Manny'),(37,'BADOER','Luca'),(38,'BAGHETTI','Giancarlo'),(39,'BAILEY','Julian'),(40,'BALDI','Mauro'),(41,'BALL','Bobby'),(42,'BALSA','Marcel'),(43,'BANDINI','Lorenzo'),(44,'BANKS','Henry'),(45,'BARBAZZA','Fabrizio'),(46,'BARBER','John'),(47,'BARBER','Skip'),(48,'BARILLA','Paolo'),(49,'BARRICHELLO','Rubens'),(50,'BARTELS','Michael'),(51,'BARTH','Edgar'),(52,'BASSI','Giorgio'),(53,'BAUER','Erwin'),(54,'BAUMGARTNER','Zsolt'),(55,'BAYOL','Elie'),(56,'BEAUMAN','Don'),(57,'BECHEM','Karl–Guenther'),(58,'BEHRA','Jean'),(59,'BELL','Derek'),(60,'BELLOF','Stefan'),(61,'BELMONDO','Paul'),(62,'BELSO','Tom'),(63,'BELTOISE','Jean-Pierre'),(64,'BERETTA','Olivier'),(65,'BERG','Allen'),(66,'BERGER','Georges'),(67,'BERGER','Gerhard'),(68,'BERNARD','Eric'),(69,'BERNOLDI','Enrique'),(70,'BERTAGGIA','Enrico'),(71,'BETTENHAUSEN','Tony'),(72,'BEUTTLER','Mike'),(73,'BHANUBANDH','Birabongse'),(74,'BIANCHI','Lucien'),(75,'BIANCO','Gino'),(76,'BINDER','Hans'),(77,'BIONDETTI','Clemente'),(78,'BIRGER','Pablo'),(79,'BISCH','Art'),(80,'BLANCHARD','Harry'),(81,'BLEEKEMOLEN','Michael'),(82,'BLIGNAUT','Alex'),(83,'BLOKDYK','Trevor'),(84,'BLUNDELL','Mark'),(85,'BOESEL','Raul'),(86,'BOFFA','Menato'),(87,'BONDURANT','Bob'),(88,'BONETTO','Felice'),(89,'BONNIER','Jo'),(90,'BONOMI','Roberto'),(91,'BORDEU','Juan Manuel'),(92,'BORGUDD','Slim'),(93,'BOTHA','Luki'),(94,'BOULLION','Jean-Christophe'),(95,'BOURDAIS','Sebastien'),(96,'BOUTSEN','Thierry'),(97,'BOYD','Johnny'),(98,'BRABHAM','David'),(99,'BRABHAM','Gary'),(100,'BRABHAM','Jack'),(101,'BRACK','Bill'),(102,'BRAMBILLA','Ernesto'),(103,'BRAMBILLA','Vittorio'),(104,'BRANCA','Toni'),(105,'BRANCATELLI','Gianfranco'),(106,'BRANDON','Eric'),(107,'BRANSON','Don'),(108,'BRIDGER','Tom'),(109,'BRISE','Tony'),(110,'BRISTOW','Chris'),(111,'BROEKER','Peter'),(112,'BROOKS','Tony'),(113,'BROWN','Alan'),(114,'BROWN','Walt'),(115,'BROWN','Warwick'),(116,'BRUDES','Adolf'),(117,'BRUNDLE','Martin'),(118,'BRUNI','Gianmaria'),(119,'BRYAN','Jimmy'),(120,'BUCCI','Clemar'),(121,'BUCKNUM','Ronnie'),(122,'BUEB','Ivor'),(123,'BUEMI','Sebastien'),(124,'BUENO','Luiz'),(125,'BURGESS','Ian'),(126,'BURTI','Luciano'),(127,'BUSSINELLO','Roberto'),(128,'BUTTON','Jenson'),(129,'BYRNE','Tommy'),(130,'CABIANCA','Giulio'),(131,'CADE','Phil'),(132,'CAFFI','Alex'),(133,'CAMPBELL-JONES','John'),(134,'CAMPOS','Adrian'),(135,'CANNON','John'),(136,'CANTONI','Eitel'),(137,'CANTRELL','Bill'),(138,'CAPELLI','Ivan'),(139,'CARINI','Piero'),(140,'CARTER','Duane'),(141,'CASTELLOTTI','Eugenio'),(142,'CECOTTO','Johnny'),(143,'CEVERT','Francois'),(144,'CHABOUD','Eugène'),(145,'CHAMBERLAIN','Jay'),(146,'CHAPMAN','Colin'),(147,'CHARLTON','Dave'),(148,'CHAVES','Pedro Matos'),(149,'CHEESBOURG','Bill'),(150,'CHEEVER','Eddie'),(151,'CHIESA','Andrea'),(152,'CHIMERI','Ettore'),(153,'CHIRON','Louis'),(154,'CHITWOOD','Joie'),(155,'CHRISTIE','Bob'),(156,'CLAES','Johnny'),(157,'CLAPHAM','David'),(158,'CLARK','Jim'),(159,'COGAN','Kevin'),(160,'COLLINS','Peter'),(161,'COLLOMB','Bernard'),(162,'COLOMBO','Alberto'),(163,'COMAS','Erik'),(164,'COMOTTI','Franco'),(165,'CONNOR','George'),(166,'CONSTANTINE','George'),(167,'CORDTS','John'),(168,'COULTHARD','David'),(169,'COURAGE','Piers'),(170,'CRAFT','Chris'),(171,'CRAWFORD','Jim'),(172,'CRAWFORD','Ray'),(173,'CRESPO','Alberto'),(174,'CREUS','Antonio'),(175,'CROCKETT','Larry'),(176,'CROOK','Tony'),(177,'CROSS','Art'),(178,'CROSSLEY','Geoff'),(179,'DA MATTA','Cristiano'),(180,'DA SLIVA RAMOS','Hernando'),(181,'DAIGH','Chuck'),(182,'DALMAS','Yannick'),(183,'DALY','Derek'),(184,'DANNER','Christian'),(185,'DAPONTE','Jorge'),(186,'DAVIDSON','Anthony'),(187,'DAVIES','Jimmy'),(188,'DAVIS','Colin'),(189,'DAYWALT','Jimmy'),(190,'DE ADAMICH','Andrea'),(191,'DE ANGELIS','Elio'),(192,'DE ARAUJO CABRAL','Mario'),(193,'DE CESARIS','Andrea'),(194,'DE CHANGY','Alain'),(195,'DE DRYVER','Bernard'),(196,'DE FILIPPIS','Maria Teresa'),(197,'DE GRAFFENRIED','Emmanuel'),(198,'DE KLERK','Peter'),(199,'DE LA ROSA','Pedro'),(200,'DE PORTAGO','Alfonso'),(201,'DE RIU','Giovanni'),(202,'DE TOMASO','Alejandro'),(203,'DE TORNACO','Charles'),(204,'DE VILLOTA','Emilio'),(205,'DE VOS','Ernie'),(206,'DELETRAZ','Jean-Denis'),(207,'DEPAILLER','Patrick'),(208,'DINIZ','Pedro'),(209,'DINSMORE','Duke'),(210,'DOCHNAL','Frank'),(211,'DOLHEM','Jose'),(212,'DONNELLY','Martin'),(213,'DONOHUE','Mark'),(214,'DOORNBOS','Robert'),(215,'D\'OREY','Fritz'),(216,'DOWNING','Ken'),(217,'DRAKE','Bob'),(218,'DRIVER','Paddy'),(219,'DROGO','Piero'),(220,'DUKE','Geoff'),(221,'DUMFRIES','Johnny'),(222,'DUNCAN','Len'),(223,'DUSIO','Piero'),(224,'EATON','George'),(225,'ECCLESTONE','Bernie'),(226,'EDMUNDS','Don'),(227,'EDWARDS','Guy'),(228,'ELFORD','Vic'),(229,'ELISIAN','Ed'),(230,'EMERY','Paul'),(231,'ENGE','Tomas'),(232,'ENGLAND','Paul'),(233,'ERTL','Harald'),(234,'ESTEFANO','Nasif'),(235,'ETANCELIN','Philippe'),(236,'EVANS','Bob'),(237,'FABI','Corrado'),(238,'FABI','Teo'),(239,'FABRE','Pascal'),(240,'FACETTI','Carlo'),(241,'FAGIOLI','Luigi'),(242,'FAIRMAN','Jack'),(243,'FANGIO','Juan Manuel'),(244,'FARINA','Nino'),(245,'FAULKNER','Walt'),(246,'FERGUSON','William'),(247,'FIRMAN','Ralph'),(248,'FISCHER','Ludwig'),(249,'FISCHER','Rudi'),(250,'FISHER','Mike'),(251,'FISICHELLA','Giancarlo'),(252,'FITCH','John'),(253,'FITTIPALDI','Christian'),(254,'FITTIPALDI','Emerson'),(255,'FITTIPALDI','Wilson'),(256,'FITZAU','Theo'),(257,'FLAHERTY','Pat'),(258,'FLINTERMAN','Jan'),(259,'FLOCKHART','Ron'),(260,'FOHR','Myron'),(261,'FOITEK','Gregor'),(262,'FOLLMER','George'),(263,'FONDER','George'),(264,'FONTANA','Norberto'),(265,'FONTES BAYARDO','Azdrubal'),(266,'FORBERG','Carl'),(267,'FORCE','Gene'),(268,'FORINI','Franco'),(269,'FOTHERINGHAM-PARKER','Philip'),(270,'FOYT','A.J.'),(271,'FRANCIA','Giorgio'),(272,'FREELAND','Don'),(273,'FRENTZEN','Heinz-Harald'),(274,'FRERE','Paul'),(275,'FRIESACHER','Patrick'),(276,'FRY','Joe'),(277,'FUSHIDA','Hiroshi'),(278,'GABBIANI','Beppe'),(279,'GACHOT','Bertrand'),(280,'GAILLARD','Patrick'),(281,'GALICA','Divina'),(282,'GALLI','Nanni'),(283,'GALVEZ','Oscar Alfredo'),(284,'GAMBLE','Fred'),(285,'GANLEY','Howden'),(286,'GARDNER','Frank'),(287,'GARRETT','Billy'),(288,'GARTNER','Jo'),(289,'GAZE','Tony'),(290,'GEKI','NN'),(291,'GENDEBIEN','Olivier'),(292,'GENE','Marc'),(293,'GEORGE','Elmer'),(294,'GERARD','Bob'),(295,'GERINI','Gerino'),(296,'GETHIN','Peter'),(297,'GHINZANI','Piercarlo'),(298,'GIACOMELLI','Bruno'),(299,'GIBSON','Dick'),(300,'GINTHER','Richie'),(301,'GIRAUD-CABANTOUS','Yves'),(302,'GIUNTI','Ignazio'),(303,'GLOCK','Timo'),(304,'GLOECKLER','Helm'),(305,'GODIA','Paco'),(306,'GODIN DE BEAUFORT','Carel'),(307,'GOETHALS','Christian'),(308,'GOLDSMITH','Paul'),(309,'GONZALEZ','Jose Froilan'),(310,'GONZALEZ','Oscar'),(311,'GORDINI','Aldo'),(312,'GOULD','Horace'),(313,'GOUNON','Jean-Marc'),(314,'GREEN','Cecil'),(315,'GREENE','Keith'),(316,'GREGORY','Masten'),(317,'GRIFFITH','Cliff'),(318,'GRIGNARD','Georges'),(319,'GRIM','Bobby'),(320,'GROSJEAN','Romain'),(321,'GROUILLARD','Olivier'),(322,'GUBBY','Brian'),(323,'GUELFI','Andre'),(324,'GUERRA','Miguel Angel'),(325,'GUERRERO','Roberto'),(326,'GUGELMIN','Mauricio'),(327,'GURNEY','Dan'),(328,'HAHNE','Hubert'),(329,'HAILWOOD','Mike'),(330,'HAKKINEN','Mika'),(331,'HALFORD','Bruce'),(332,'HALL','Jim'),(333,'HAMILTON','Duncan'),(334,'HAMILTON','Lewis'),(335,'HAMPSHIRE','David'),(336,'HANKS','Sam'),(337,'HANSGEN','Walt'),(338,'HARRIS','Mike'),(339,'HARRISON','Cuth'),(340,'HART','Brian'),(341,'HARTLEY','Gene'),(342,'HASEMI','Masahiro'),(343,'HATTORI','Naoki'),(344,'HAWKINS','Paul'),(345,'HAWTHORN','Mike'),(346,'HAYJE','Boy'),(347,'HEEKS','Willi'),(348,'HEIDFELD','Nick'),(349,'HELFRICH','Theo'),(350,'HELLINGS','Mack'),(351,'HENTON','Brian'),(352,'HERBERT','Johnny'),(353,'HERMAN','Al'),(354,'HERRMANN','Hans'),(355,'HESNAULT','Francois'),(356,'HEYER','Hans'),(357,'HILL','Damon'),(358,'HILL','Graham'),(359,'HILL','Phil'),(360,'HIRT','Peter'),(361,'HOBBS','David'),(362,'HOCKING','Gary'),(363,'HOFFMANN','Ingo'),(364,'HOLLAND','Bill'),(365,'HOLMES','Jackie'),(366,'HOMEIER','Bill'),(367,'HOSHINO','Kazuyoshi'),(368,'HOYT','Jerry'),(369,'HULME','Denny'),(370,'HUNT','James'),(371,'HURTUBISE','Jim'),(372,'HUTCHISON','Gus'),(373,'ICKX','Jacky'),(374,'IDE','Yuji'),(375,'IGLESIAS','Jesus'),(376,'INOUE','Taki'),(377,'IRELAND','Innes'),(378,'IRVINE','Eddie'),(379,'IRWIN','Chris'),(380,'JABOUILLE','Jean-Pierre'),(381,'JACKSON','Jimmy'),(382,'JAMES','Joe'),(383,'JAMES','John'),(384,'JARIER','Jean-Pierre'),(385,'JEAN','Max'),(386,'JOHANSSON','Stefan'),(387,'JOHNSON','Eddie'),(388,'JOHNSON','Leslie'),(389,'JOHNSTONE','Bruce'),(390,'JONES','Alan'),(391,'JONES','Tom'),(392,'JOVER','Juan'),(393,'KARCH','Oswald'),(394,'KARTHIKEYAN','Narain'),(395,'KATAYAMA','Ukyo'),(396,'KAVANAGH','Ken'),(397,'KEEGAN','Rupert'),(398,'KEIZAN','Eddie'),(399,'KELLER','Al'),(400,'KELLY','Joe'),(401,'KENNEDY','Dave'),(402,'KESSEL','Loris'),(403,'KESSLER','Bruce'),(404,'KIESA','Nicolas'),(405,'KINNUNEN','Leo'),(406,'KLADIS','Danny'),(407,'KLENK','Hans'),(408,'KLIEN','Christian'),(409,'KLING','Karl'),(410,'KLODWIG','Ernst'),(411,'KOBAYASHI','Kamui'),(412,'KOINIGG','Helmuth'),(413,'KOVALAINEN','Heikki'),(414,'KOZAROWITZKY','Mikko'),(415,'KRAKAU','Willi'),(416,'KRAUSE','Rudolf'),(417,'KUBICA','Robert'),(418,'KUHNKE','Kurt'),(419,'KUWASHIMA','Masami'),(420,'LA CAZE','Robert'),(421,'LAFFITE','Jacques'),(422,'LAGORCE','Franck'),(423,'LAMMERS','Jan'),(424,'LAMY','Pedro'),(425,'LANDI','Chico'),(426,'LANG','Hermann'),(427,'LANGES','Claudio'),(428,'LARINI','Nicola'),(429,'LARRAURI','Oscar'),(430,'LARROUSSE','Gerard'),(431,'LARSON','Jud'),(432,'LAUDA','Niki'),(433,'LAURENT','Roger'),(434,'LAVAGGI','Giovanni'),(435,'LAWRENCE','Chris'),(436,'LECLERE','Michel'),(437,'LEDERLE','Neville'),(438,'LEES','Geoff'),(439,'LEGAT','Arthur'),(440,'LEHTO','JJ'),(441,'LEONI','Lamberto'),(442,'LESTON','Les'),(443,'LEVEGH','Pierre'),(444,'LEVRETT','Bayliss'),(445,'LEWIS','Jackie'),(446,'LEWIS-EVANS','Stuart'),(447,'LIGIER','Guy'),(448,'LINDEN','Andy'),(449,'LIPPI','Roberto'),(450,'LIUZZI','Vitantonio'),(451,'LOMBARDI','Lella'),(452,'LONDONO','Ricardo'),(453,'LOOF','Ernst'),(454,'LOUVEAU','Henri'),(455,'LOVE','John'),(456,'LOVELY','Pete'),(457,'LOYER','Roger'),(458,'LUCAS','Jean'),(459,'LUCIENBONNET','Jean'),(460,'LUNGER','Brett'),(461,'MACDOWEL','Mike'),(462,'MACKAY-FRASER','Herbert'),(463,'MACKEY','Bill'),(464,'MACKLIN','Lance'),(465,'MAGEE','Damien'),(466,'MAGGS','Tony'),(467,'MAGILL','Mike'),(468,'MAGLIOLI','Umberto'),(469,'MAGNUSSEN','Jan'),(470,'MAIRESSE','Guy'),(471,'MAIRESSE','Willy'),(472,'MANSELL','Nigel'),(473,'MANTOVANI','Sergio'),(474,'MANTZ','Johnny'),(475,'MANZON','Robert'),(476,'MARIMON','Onofre'),(477,'MARKO','Helmut'),(478,'MARQUES','Tarso'),(479,'MARR','Leslie'),(480,'MARSH','Tony'),(481,'MARTIN','Eugene'),(482,'MARTINI','Pierluigi'),(483,'MASS','Jochen'),(484,'MASSA','Felipe'),(485,'MAY','Michael'),(486,'MAYER','Timmy'),(487,'MAZET','Francois'),(488,'MAZZACANE','Gaston'),(489,'MCALPINE','Kenneth'),(490,'MCCARTHY','Perry'),(491,'MCCOY','Ernie'),(492,'MCDOWELL','Johnny'),(493,'MCGRATH','Jack'),(494,'MCGUIRE','Brian'),(495,'MCLAREN','Bruce'),(496,'MCNISH','Allan'),(497,'MCRAE','Graham'),(498,'MCWITHEY','Jim'),(499,'MENDITEGUY','Carlos'),(500,'MERKEL','Harry'),(501,'MERZARIO','Arturo'),(502,'MIERES','Roberto'),(503,'MIGAULT','Francois'),(504,'MILES','John'),(505,'MILES','Ken'),(506,'MILHOUX','Andre'),(507,'MILLER','Chet'),(508,'MITTER','Gerhard'),(509,'MODENA','Stefano'),(510,'MONARCH','Thomas'),(511,'MONTAGNY','Franck'),(512,'MONTEIRO','Tiago'),(513,'MONTERMINI','Andrea'),(514,'MONTEVERDI','Peter'),(515,'MONTGOMERIE-CHARRING','Robin'),(516,'MONTOYA','Juan Pablo'),(517,'MORBIDELLI','Gianni'),(518,'MORENO','Roberto'),(519,'MORGAN','Dave'),(520,'MOSER','Silvio'),(521,'MOSS','Bill'),(522,'MOSS','Stirling'),(523,'MUNARON','Gino'),(524,'MURRAY','David'),(525,'MUSSO','Luigi'),(526,'NAKAJIMA','Kazuki'),(527,'NAKAJIMA','Satoru'),(528,'NAKANO','Shinji'),(529,'NALON','Duke'),(530,'NANNINI','Alessandro'),(531,'NASPETTI','Emanuele'),(532,'NATILI','Massimo'),(533,'NAYLOR','Brian'),(534,'NAZARUK','Mike'),(535,'NEEDELL','Tiff'),(536,'NELLEMAN','Jac'),(537,'NEVE','Patrick'),(538,'NICHOLSON','John'),(539,'NIDAY','Cal'),(540,'NIEDERMAYR','Helmut'),(541,'NIEMANN','Brausch'),(542,'NILSSON','Gunnar'),(543,'NODA','Hideki'),(544,'NUCKEY','Rodney'),(545,'O\'BRIEN','Robert'),(546,'O\'CONNOR','Pat'),(547,'OLIVER','Jackie'),(548,'ONGAIS','Danny'),(549,'OPPITZHAUSER','Karl'),(550,'OWEN','Arthur'),(551,'PACE','Carlos'),(552,'PAGANI','Nello'),(553,'PALETTI','Riccardo'),(554,'PALM','Torsten'),(555,'PALMER','Jonathan'),(556,'PANIS','Olivier'),(557,'PANTANO','Giorgio'),(558,'PAPIS','Massimiliano'),(559,'PARKES','Mike'),(560,'PARNELL','Reg'),(561,'PARNELL','Tim'),(562,'PARSONS','Johnnie'),(563,'PATRESE','Riccardo'),(564,'PEASE','Al'),(565,'PENSKE','Roger'),(566,'PERDISA','Cesare'),(567,'PEREZ-SALA','Luis'),(568,'PERKINS','Larry'),(569,'PESCAROLO','Henri'),(570,'PESENTI-ROSSI','Alessandro'),(571,'PETERS','Josef'),(572,'PETERSON','Ronnie'),(573,'PIAN','Alfredo'),(574,'PICARD','Francois'),(575,'PIETERSE','Ernie'),(576,'PIETSCH','Paul'),(577,'PILETTE','Andre'),(578,'PILETTE','Teddy'),(579,'PIOTTI','Luigi'),(580,'PIPER','David'),(581,'PIQUET','Nelson'),(582,'PIQUET','Nelson Jr.'),(583,'PIROCCHI','Renato'),(584,'PIRONI','Didier'),(585,'PIRRO','Emanuele'),(586,'PIZZONIA','Antonio'),(587,'POLLET','Jacques'),(588,'PON','Ben'),(589,'POORE','Dennis'),(590,'POSEY','Sam'),(591,'POZZI','Charles'),(592,'PRETORIUS','Jackie'),(593,'PRINOTH','Ernesto'),(594,'PROPHET','David'),(595,'PROST','Alain'),(596,'PRYCE','Tom'),(597,'PURLEY','David'),(598,'PUZEY','Clive'),(599,'QUESTER','Dieter'),(600,'RABY','Ian'),(601,'RAHAL','Bobby'),(602,'RAIKKONEN','Kimi'),(603,'RAPHANEL','Pierre-Henri'),(604,'RATHMANN','Dick'),(605,'RATHMANN','Jim'),(606,'RATZENBERGER','Roland'),(607,'REBAQUE','Hector'),(608,'REDMAN','Brian'),(609,'REECE','Jimmy'),(610,'REED','Ray'),(611,'REES','Alan'),(612,'REGAZZONI','Clay'),(613,'REUTEMANN','Carlos'),(614,'REVENTLOW','Lance'),(615,'REVSON','Peter'),(616,'RHODES','John'),(617,'RIBEIRO','Alex'),(618,'RICHARDSON','Ken'),(619,'RIESS','Fritz'),(620,'RIGSBY','Jim'),(621,'RINDT','Jochen'),(622,'RISELEY-PRICHARD','John'),(623,'ROBARTS','Richard'),(624,'RODRIGUEZ','Pedro'),(625,'RODRIGUEZ','Ricardo'),(626,'RODRIGUEZ LARRETA','Alberto'),(627,'ROL','Franco'),(628,'ROLLINSON','Alan'),(629,'ROLT','Tony'),(630,'ROOS','Bertil'),(631,'ROSBERG','Keke'),(632,'ROSBERG','Nico'),(633,'ROSE','Mauri'),(634,'ROSIER','Louis'),(635,'ROSSET','Ricardo'),(636,'ROTHENGATTER','Huub'),(637,'RUBY','Lloyd'),(638,'RUDAZ','Jean-Claude'),(639,'RUSSO','Eddie'),(640,'RUSSO','Paul'),(641,'RUTTMAN','Troy'),(642,'RYAN','Peter'),(643,'SACHS','Eddie'),(644,'SAID','Bob'),(645,'SALAZAR','Eliseo'),(646,'SALO','Mika'),(647,'SALVADORI','Roy'),(648,'SANESI','Consalvo'),(649,'SARRAZIN','Stephane'),(650,'SATO','Takuma'),(651,'SCARBOROUGH','Carl'),(652,'SCARFIOTTI','Ludovico'),(653,'SCARLATTI','Giorgio'),(654,'SCHECKTER','Ian'),(655,'SCHECKTER','Jody'),(656,'SCHELL','Harry'),(657,'SCHENKEN','Tim'),(658,'SCHERRER','Albert'),(659,'SCHIATTARELLA','Domenico'),(660,'SCHILLER','Heinz'),(661,'SCHINDLER','Bill'),(662,'SCHLESSER','Jean-Louis'),(663,'SCHLESSER','Jo'),(664,'SCHNEIDER','Bernd'),(665,'SCHOELLER','Rudolf'),(666,'SCHROEDER','Rob'),(667,'SCHUMACHER','Michael'),(668,'SCHUMACHER','Ralf'),(669,'SCHUPPAN','Vern'),(670,'SCHWELM CRUZ','Adolfo'),(671,'SCOTT','Bob'),(672,'SCOTT BROWN','Archie'),(673,'SCOTTI','Piero'),(674,'SEIDEL','Wolfgang'),(675,'SEIFFERT','Guenther'),(676,'SENNA','Ayrton'),(677,'SERAFINI','Dorino'),(678,'SERRA','Chico'),(679,'SERRURIER','Doug'),(680,'SERVOZ-GAVIN','Johnny'),(681,'SETTEMBER','Tony'),(682,'SHARP','Hap'),(683,'SHAWE-TAYLOR','Brian'),(684,'SHELBY','Carroll'),(685,'SHELLY','Tony'),(686,'SIFFERT','Jo'),(687,'SIMON','Andre'),(688,'SLOTEMAKER','Rob'),(689,'SOLANA','Moises'),(690,'SOLER-ROIG','Alex'),(691,'SOMMER','Raymond'),(692,'SOSPIRI','Vincenzo'),(693,'SOUTH','Stephen'),(694,'SPARKEN','Mike'),(695,'SPEED','Scott'),(696,'SPENCE','Mike'),(697,'STACEY','Alan'),(698,'STARRABBA','Gaetano'),(699,'STEVENSON','Chuck'),(700,'STEWART','Ian'),(701,'STEWART','Jackie'),(702,'STEWART','Jimmy'),(703,'STOHR','Siegfried'),(704,'STOMMELEN','Rolf'),(705,'STREIFF','Philippe'),(706,'STUCK','Hans'),(707,'STUCK','Hans Joachim'),(708,'STUPPACHER','Otto'),(709,'SULLIVAN','Danny'),(710,'SURER','Marc'),(711,'SURTEES','John'),(712,'SUTCLIFFE','Andy'),(713,'SUTIL','Adrian'),(714,'SUTTON','Len'),(715,'SUZUKI','Aguri'),(716,'SUZUKI','Toshio'),(717,'SWATERS','Jacques'),(718,'SWEIKERT','Bob'),(719,'TAKAGI','Toranosuke'),(720,'TAKAHARA','Noritake'),(721,'TAKAHASHI','Kunimitsu'),(722,'TAMBAY','Patrick'),(723,'TARAMAZZO','Luigi'),(724,'TARQUINI','Gabriele'),(725,'TARUFFI','Piero'),(726,'TAYLOR','Dennis'),(727,'TAYLOR','Henry'),(728,'TAYLOR','John'),(729,'TAYLOR','Mike'),(730,'TAYLOR','Trevor'),(731,'TEAGUE','Marshall'),(732,'TEMPLEMAN','Shorty'),(733,'TERRA','Max de'),(734,'TESTUT','Andre'),(735,'THACKWELL','Mike'),(736,'THIELE','Alfonso'),(737,'THOMPSON','Eric'),(738,'THOMSON','Johnny'),(739,'THORNE','Leslie'),(740,'TINGELSTAD','Bud'),(741,'TINGLE','Sam'),(742,'TITTERINGTON','Desmond'),(743,'TOLAN','Johnnie'),(744,'TRIMMER','Tony'),(745,'TRINTIGNANT','Maurice'),(746,'TRULLI','Jarno'),(747,'TUERO','Esteban'),(748,'TUNMER','Guy'),(749,'TURNER','Jack'),(750,'ULMEN','Toni'),(751,'UNSER','Bobby'),(752,'UNSER','Jerry'),(753,'URIA','Alberto'),(754,'VACCARELLA','Nino'),(755,'VAN DE POELE','Eric'),(756,'VAN DER LOF','Dries'),(757,'VAN DER VYVER','Syd'),(758,'VAN LENNEP','Gijs'),(759,'VAN ROOYEN','Basil'),(760,'VEITH','Bob'),(761,'VERSTAPPEN','Jos'),(762,'VETTEL','Sebastian'),(763,'VILLENEUVE','Gilles'),(764,'VILLENEUVE','Jacques'),(765,'VILLENEUVE SR.','Jacques'),(766,'VILLORESI','Luigi'),(767,'VOLONTERIO','Ottorino'),(768,'VON OPEL','Rikky'),(769,'VON TRIPS','Wolfgang'),(770,'VONLANTHEN','Jo'),(771,'VUKOVICH','Bill'),(772,'WACKER','Fred'),(773,'WALKER','David'),(774,'WALKER','Peter'),(775,'WALLARD','Lee'),(776,'WALTER','Heini'),(777,'WARD','Rodger'),(778,'WARWICK','Derek'),(779,'WATSON','John'),(780,'WEBB','Spider'),(781,'WEBBER','Mark'),(782,'WEIDLER','Volker'),(783,'WEILER','Wayne'),(784,'WENDLINGER','Karl'),(785,'WESTBURY','Peter'),(786,'WEYANT','Chuck'),(787,'WHARTON','Ken'),(788,'WHITEAWAY','Ted'),(789,'WHITEHEAD','Graham'),(790,'WHITEHEAD','Peter'),(791,'WHITEHOUSE','Bill'),(792,'WIDDOWS','Robin'),(793,'WIETZES','Eppie'),(794,'WILDS','Mike'),(795,'WILLIAMS','Jonathan'),(796,'WILLIAMSON','Roger'),(797,'WILSON','Dempsey'),(798,'WILSON','Desire'),(799,'WILSON','Justin'),(800,'WILSON','Vic'),(801,'WINKELHOCK','Joachim'),(802,'WINKELHOCK','Manfred'),(803,'WINKELHOCK','Markus'),(804,'WISELL','Reine'),(805,'WUNDERINK','Roelof'),(806,'WURZ','Alexander'),(807,'YAMAMOTO','Sakon'),(808,'YOONG','Alex'),(809,'ZANARDI','Alex'),(810,'ZAPICO','Emilio'),(811,'ZONTA','Ricardo'),(812,'ZORZI','Renzo'),(813,'ZUNINO','Ricardo'),(814,'CHANDHOK','Karun'),(815,'DI GRASSI','Lucas'),(816,'HUELKENBERG','Nico'),(817,'PETROV','Vitaly'),(818,'SENNA','Bruno'),(819,'D\'AMBROSIO','Jerome'),(820,'DI RESTA','Paul'),(821,'MALDONADO','Pastor'),(822,'PEREZ','Sergio'),(823,'PIC','Charles'),(824,'RICCIARDO','Daniel'),(825,'VERGNE','Jean-Eric'),(826,'BIANCHI','Jules'),(827,'BOTTAS','Valtteri'),(828,'CHILTON','Max'),(829,'GUTIERREZ','Esteban'),(830,'VAN DER GARDE','Giedo'),(831,'ERICSSON','Marcus'),(832,'KVYAT','Daniil'),(833,'LOTTERER','Andre'),(834,'MAGNUSSEN','Kevin'),(835,'STEVENS','Will'),(836,'MERHI','Roberto'),(837,'NASR','Felipe'),(838,'ROSSI','Alexander'),(839,'SAINZ','Carlos Jr.'),(840,'VERSTAPPEN','Max'),(841,'HARYANTO','Rio'),(842,'OCON','Esteban'),(843,'PALMER','Jolyon'),(844,'VANDOORNE','Stoffel'),(845,'WEHRLEIN','Pascal'),(846,'GASLY','Pierre'),(847,'GIOVINAZZI','Antonio'),(848,'HARTLEY','Brendon'),(849,'STROLL','Lance'); /*!40000 ALTER TABLE `alldrivers` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `drivers` -- DROP TABLE IF EXISTS `drivers`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `drivers` ( `d_id` int(4) NOT NULL AUTO_INCREMENT, `d_lname` varchar(20) NOT NULL DEFAULT '', `d_fname` varchar(20) NOT NULL DEFAULT '', `d_currseason` int(1) NOT NULL DEFAULT '0', `d_miod` int(3) NOT NULL DEFAULT '0', `d_fa_id` int(3) NOT NULL DEFAULT '0', PRIMARY KEY (`d_id`) ) ENGINE=MyISAM AUTO_INCREMENT=52 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `drivers` -- LOCK TABLES `drivers` WRITE; /*!40000 ALTER TABLE `drivers` DISABLE KEYS */; INSERT INTO `drivers` VALUES (1,'HAMILTON','Lewis',1,30,11),(2,'BOTTAS','Valtteri',1,24,11),(3,'RICCIARDO','Daniel',1,29,28),(4,'VERSTAPPEN','Max',1,27,28),(5,'VETTEL','Sebastian',1,28,1),(6,'RAIKKONEN','Kimi',1,26,1),(7,'PEREZ','Sergio',1,25,14),(8,'OCON','Esteban',1,12,14),(9,'STROLL','Lance',1,11,23),(10,'MASSA','Felipe',1,21,23),(11,'ALONSO','Fernando',1,22,25),(12,'VANDOORNE','Stoffel',1,14,25),(13,'SAINZ','Carlos Jr.',1,20,4),(14,'KVYAT','Daniil',1,18,22),(15,'GROSJEAN','Romain',1,19,29),(16,'MAGNUSSEN','Kevin',1,17,29),(17,'HUELKENBERG','Nico',1,23,4),(18,'PALMER','Jolyon',0,16,4),(19,'ERICSSON','Marcus',1,13,12),(20,'WEHRLEIN','Pascal',1,15,12),(21,'GIOVINAZZI','Antonio',1,0,12),(22,'BUTTON','Jenson',1,0,25),(23,'DI RESTA','Paul',1,0,23),(24,'GASLY','Pierre',1,0,22),(25,'HARTLEY','Brendon',1,0,22); /*!40000 ALTER TABLE `drivers` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `events` -- DROP TABLE IF EXISTS `events`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `events` ( `e_id` int(2) NOT NULL AUTO_INCREMENT, `e_type` varchar(20) NOT NULL DEFAULT '', PRIMARY KEY (`e_id`) ) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `events` -- LOCK TABLES `events` WRITE; /*!40000 ALTER TABLE `events` DISABLE KEYS */; INSERT INTO `events` VALUES (1,'QUALIFYING'),(2,'RACE'); /*!40000 ALTER TABLE `events` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `fflassets` -- DROP TABLE IF EXISTS `fflassets`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `fflassets` ( `fa_id` int(4) NOT NULL AUTO_INCREMENT, `fa_currseason` int(1) NOT NULL DEFAULT '0', `fa_chassis` varchar(30) NOT NULL DEFAULT '', `fa_mioc` int(3) NOT NULL DEFAULT '0', `fa_engine` varchar(30) NOT NULL DEFAULT '', `fa_mioe` int(3) NOT NULL DEFAULT '0', PRIMARY KEY (`fa_id`) ) ENGINE=MyISAM AUTO_INCREMENT=32 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `fflassets` -- LOCK TABLES `fflassets` WRITE; /*!40000 ALTER TABLE `fflassets` DISABLE KEYS */; INSERT INTO `fflassets` VALUES (1,1,'Ferrari',28,'Ferrari (Ferrari)',27),(2,0,'McLaren',0,'Mercedes (McLaren)',0),(3,0,'BMW Sauber',0,'BMW (BMW Sauber)',0),(4,1,'Renault',22,'Renault (Renault)',23),(5,0,'Toyota',0,'Toyota (Toyota)',0),(6,0,'Toro Rosso',0,'Ferrari (Toro Rosso)',0),(7,0,'Red Bull',0,'Renault (Red Bull)',0),(8,0,'Williams',0,'Toyota (Williams)',0),(9,0,'Brawn',0,'Mercedes (Brawn)',0),(10,0,'Force India',0,'Ferrari (Force India)',0),(11,1,'Mercedes GP',30,'Mercedes (Mercedes GP)',30),(12,1,'Sauber',21,'Ferrari (Sauber)',25),(13,0,'Williams',0,'Cosworth (Williams)',0),(14,1,'Force India',27,'Mercedes (Force India)',29),(15,0,'Lotus',0,'Cosworth (Lotus)',0),(16,0,'HRT',0,'Cosworth (HRT)',0),(17,0,'Virgin',0,'Cosworth (Virgin)',0),(18,0,'Lotus',0,'Renault (Lotus)',0),(19,0,'Williams',0,'Renault (Williams)',0),(20,0,'Caterham',0,'Renault (Caterham)',0),(21,0,'Marussia',0,'Cosworth (Marussia)',0),(22,1,'Toro Rosso',24,'Renault (Toro Rosso)',22),(23,1,'Williams',26,'Mercedes (Williams)',28),(24,0,'Marussia',0,'Ferrari (Marussia)',0),(25,1,'McLaren',25,'Honda (McLaren)',21),(26,0,'Lotus',0,'Mercedes (Lotus)',0),(27,0,'Manor',0,'Ferrari (Manor)',0),(28,1,'Red Bull',29,'TAG Heuer (Red Bull)',24),(29,1,'Haas',23,'Ferrari (Haas)',26); /*!40000 ALTER TABLE `fflassets` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `fflpoints` -- DROP TABLE IF EXISTS `fflpoints`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `fflpoints` ( `fp_u_id` int(4) NOT NULL DEFAULT '0', `fp_g_id` int(4) NOT NULL DEFAULT '0', `fp_points` decimal(4,1) NOT NULL DEFAULT '0.0' ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `fflpoints` -- LOCK TABLES `fflpoints` WRITE; /*!40000 ALTER TABLE `fflpoints` DISABLE KEYS */; INSERT INTO `fflpoints` VALUES (1,1,'67.0'),(36,1,'89.0'),(12,1,'59.0'),(21,1,'66.0'),(10,1,'58.0'),(18,1,'74.0'),(1,2,'67.0'),(36,2,'64.0'),(12,2,'69.0'),(21,2,'66.0'),(10,2,'51.0'),(18,2,'67.0'),(1,3,'67.0'),(36,3,'89.0'),(12,3,'59.0'),(21,3,'66.0'),(10,3,'58.0'),(18,3,'70.0'),(1,4,'80.0'),(36,4,'91.0'),(12,4,'78.0'),(21,4,'74.0'),(10,4,'55.0'),(18,4,'71.0'),(1,5,'60.0'),(36,5,'36.0'),(12,5,'50.0'),(21,5,'50.0'),(10,5,'43.0'),(18,5,'49.0'),(1,6,'36.0'),(36,6,'98.0'),(12,6,'55.0'),(21,6,'36.0'),(10,6,'43.0'),(18,6,'69.0'),(1,7,'94.0'),(36,7,'56.0'),(12,7,'84.0'),(21,7,'88.0'),(10,7,'57.0'),(18,7,'61.0'),(1,8,'64.0'),(36,8,'57.0'),(12,8,'79.0'),(21,8,'71.0'),(10,8,'57.0'),(18,8,'44.0'),(1,9,'78.0'),(36,9,'82.0'),(12,9,'81.0'),(21,9,'75.0'),(10,9,'56.0'),(18,9,'65.0'),(1,10,'90.0'),(36,10,'60.0'),(12,10,'87.0'),(21,10,'86.0'),(10,10,'49.0'),(18,10,'64.0'),(1,11,'57.0'),(36,11,'101.0'),(12,11,'54.0'),(21,11,'55.0'),(10,11,'61.0'),(18,11,'76.0'),(1,12,'72.0'),(36,12,'70.0'),(12,12,'62.0'),(21,12,'70.0'),(10,12,'53.0'),(18,12,'66.0'),(1,13,'94.0'),(36,13,'74.0'),(12,13,'82.0'),(21,13,'92.0'),(10,13,'64.0'),(18,13,'68.0'),(1,14,'87.0'),(36,14,'19.0'),(12,14,'74.0'),(21,14,'90.0'),(10,14,'50.0'),(18,14,'52.0'),(1,15,'63.0'),(36,15,'38.0'),(12,15,'79.0'),(21,15,'66.0'),(10,15,'50.0'),(18,15,'40.0'),(1,16,'82.0'),(36,16,'32.0'),(12,16,'90.0'),(21,16,'74.0'),(10,16,'37.0'),(18,16,'47.0'),(21,17,'70.0'),(12,17,'65.0'),(36,17,'76.0'),(1,17,'78.0'),(18,17,'74.0'),(10,17,'53.0'),(1,18,'50.0'),(36,18,'80.0'),(12,18,'73.0'),(21,18,'48.0'),(10,18,'41.0'),(18,18,'47.0'),(1,19,'60.0'),(36,19,'98.0'),(12,19,'66.0'),(21,19,'60.0'),(10,19,'59.0'),(18,19,'70.0'),(1,20,'90.0'),(36,20,'79.0'),(12,20,'82.0'),(21,20,'86.0'),(10,20,'60.0'),(18,20,'70.0'); /*!40000 ALTER TABLE `fflpoints` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `fflresults` -- DROP TABLE IF EXISTS `fflresults`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `fflresults` ( `fr_season` int(4) NOT NULL DEFAULT '0', `fr_u_id` int(4) NOT NULL DEFAULT '0', `fr_ft_a_id_d1` int(4) NOT NULL DEFAULT '0', `fr_ft_a_id_d2` int(4) NOT NULL DEFAULT '0', `fr_fa_id_chassis` int(4) NOT NULL DEFAULT '0', `fr_fa_id_engine` int(4) NOT NULL DEFAULT '0', `fr_totalpoints` decimal(5,1) DEFAULT '0.0', PRIMARY KEY (`fr_season`,`fr_u_id`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `fflresults` -- LOCK TABLES `fflresults` WRITE; /*!40000 ALTER TABLE `fflresults` DISABLE KEYS */; INSERT INTO `fflresults` VALUES (2009,0,128,762,9,9,'523.0'),(2009,1,746,762,8,7,'304.5'),(2009,2,15,251,9,1,'276.0'),(2009,3,49,303,9,1,'343.0'),(2009,6,484,128,9,6,'297.0'),(2009,9,602,128,5,7,'356.0'),(2009,10,334,128,8,9,'350.5'),(2009,11,746,128,7,1,'351.0'),(2009,12,762,128,9,1,'421.0'),(2010,0,15,713,7,7,'1295.0'),(2010,1,334,411,11,7,'984.0'),(2010,4,484,762,17,7,'898.0'),(2010,6,484,713,7,6,'702.0'),(2010,9,816,15,11,2,'942.0'),(2010,10,417,303,2,7,'1088.0'),(2010,11,818,15,1,1,'1044.0'),(2010,12,15,816,11,7,'986.0'),(2010,13,49,818,1,6,'456.0'),(2011,6,713,348,2,7,'1223.0'),(2011,1,632,822,1,7,'1128.0'),(2011,12,667,820,7,1,'1128.0'),(2011,10,484,820,7,2,'1292.0'),(2011,0,128,820,7,7,'1597.0'),(2012,1,602,816,2,7,'1108.0'),(2012,12,15,320,2,7,'1212.0'),(2012,6,411,816,7,1,'983.0'),(2012,9,667,825,7,2,'903.0'),(2012,10,762,825,2,7,'1135.0'),(2012,2,762,394,18,7,'1044.0'),(2012,7,762,818,18,18,'918.0'),(2012,0,15,320,7,7,'1294.0'),(2013,1,762,828,1,7,'1347.0'),(2013,20,602,829,1,7,'1139.0'),(2013,12,602,829,1,7,'1139.0'),(2013,10,762,830,2,7,'1115.0'),(2013,18,15,826,19,1,'601.0'),(2013,0,15,828,7,7,'1434.0'),(2014,1,762,834,1,7,'843.0'),(2014,20,762,834,11,7,'1328.0'),(2014,12,602,832,11,7,'1169.0'),(2014,10,334,821,2,7,'972.0'),(2014,9,632,834,11,1,'1289.0'),(2014,0,824,834,11,11,'1695.0'),(2015,1,832,840,11,11,'1549.0'),(2015,20,602,839,11,11,'1574.0'),(2015,21,831,602,11,25,'889.0'),(2015,9,484,839,11,1,'1274.0'),(2015,10,762,840,11,7,'1216.0'),(2015,0,602,839,11,11,'1574.0'),(2016,1,840,843,11,11,'1735.0'),(2016,12,762,834,11,28,'1452.0'),(2016,21,834,15,11,11,'1591.0'),(2016,10,334,845,1,4,'787.0'),(2016,9,824,841,11,1,'1419.0'),(2016,18,15,839,11,1,'1263.0'),(2016,20,840,843,11,11,'1735.0'),(2016,0,840,843,11,11,'1735.0'),(2017,1,844,842,11,11,'1436.0'),(2017,36,827,849,1,1,'1389.0'),(2017,12,827,842,11,28,'1428.0'),(2017,21,844,849,11,11,'1389.0'),(2017,10,762,849,11,25,'1055.0'),(2017,18,839,831,11,1,'1244.0'),(2017,0,842,849,11,11,'1463.0'); /*!40000 ALTER TABLE `fflresults` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `fflteams` -- DROP TABLE IF EXISTS `fflteams`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `fflteams` ( `ft_u_id` int(4) NOT NULL DEFAULT '0', `ft_d_id_d1` int(4) NOT NULL DEFAULT '0', `ft_d_id_d2` int(4) NOT NULL DEFAULT '0', `ft_fa_id_chassis` int(4) NOT NULL DEFAULT '0', `ft_fa_id_engine` int(4) NOT NULL DEFAULT '0', PRIMARY KEY (`ft_u_id`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `fflteams` -- LOCK TABLES `fflteams` WRITE; /*!40000 ALTER TABLE `fflteams` DISABLE KEYS */; INSERT INTO `fflteams` VALUES (1,12,8,11,11),(36,2,9,1,1),(12,2,8,11,28),(21,12,9,11,11),(10,5,9,11,25),(18,13,19,11,1); /*!40000 ALTER TABLE `fflteams` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `gps` -- DROP TABLE IF EXISTS `gps`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `gps` ( `g_id` int(4) NOT NULL AUTO_INCREMENT, `g_name` varchar(40) NOT NULL DEFAULT '', `g_datetime_q` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `g_datetime_r` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `g_flag` varchar(20) NOT NULL DEFAULT '', `g_circuit` varchar(40) NOT NULL DEFAULT '', PRIMARY KEY (`g_id`) ) ENGINE=MyISAM AUTO_INCREMENT=22 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `gps` -- LOCK TABLES `gps` WRITE; /*!40000 ALTER TABLE `gps` DISABLE KEYS */; INSERT INTO `gps` VALUES (1,'AUSTRALIA (Melbourne)','2017-03-25 07:00:00','2017-03-26 07:00:00','flag_AUSTRALIA.gif','circuit_AUSTRALIA_new.jpg'),(2,'CHINA (Shanghai)','2017-04-08 09:00:00','2017-04-09 08:00:00','flag_CHINA.gif','circuit_CHINA_new.jpg'),(3,'BAHRAIN (Sakhir)','2017-04-15 17:00:00','2017-04-16 17:00:00','flag_BAHRAIN.gif','circuit_BAHRAIN_new.jpg'),(4,'RUSSIA (Sochi)','2017-04-29 14:00:00','2017-04-30 14:00:00','flag_RUSSIA.gif','circuit_RUSSIA_new.jpg'),(5,'SPAIN (Barcelona)','2017-05-13 14:00:00','2017-05-14 14:00:00','flag_SPAIN.gif','circuit_SPAIN_new.jpg'),(6,'MONACO (Monte Carlo)','2017-05-27 14:00:00','2017-05-28 14:00:00','flag_MONACO.gif','circuit_MONACO_new.jpg'),(7,'CANADA (Montreal)','2017-06-10 19:00:00','2017-06-11 20:00:00','flag_CANADA.gif','circuit_CANADA_new.jpg'),(8,'AZERBAIJAN (Baku)','2017-06-24 15:00:00','2017-06-25 15:00:00','flag_AZERBAIJAN.gif','circuit_AZERBAIJAN_new.jpg'),(9,'AUSTRIA (Spielberg)','2017-07-08 14:00:00','2017-07-09 14:00:00','flag_AUSTRIA.gif','circuit_AUSTRIA_new.jpg'),(10,'GREAT BRITAIN (Silverstone)','2017-07-15 14:00:00','2017-07-16 14:00:00','flag_UK.gif','circuit_UK_new.jpg'),(11,'HUNGARY (Budapest)','2017-07-29 14:00:00','2017-07-30 14:00:00','flag_HUNGARY.gif','circuit_HUNGARY_new.jpg'),(12,'BELGIUM (Spa)','2017-08-26 14:00:00','2017-08-27 14:00:00','flag_BELGIUM.gif','circuit_BELGIUM_new.jpg'),(13,'ITALY (Monza)','2017-09-02 14:00:00','2017-09-03 14:00:00','flag_ITALY.gif','circuit_ITALY_new.jpg'),(14,'SINGAPORE (Singapore)','2017-09-16 15:00:00','2017-09-17 14:00:00','flag_SINGAPORE.gif','circuit_SINGAPORE_new.jpg'),(15,'MALAYSIA (Sepang)','2017-09-30 11:00:00','2017-10-01 09:00:00','flag_MALAYSIA.gif','circuit_MALAYSIA_new.jpg'),(16,'JAPAN (Suzuka)','2017-10-07 08:00:00','2017-10-08 07:00:00','flag_JAPAN.gif','circuit_JAPAN_new.jpg'),(17,'USA (Austin)','2017-10-21 23:00:00','2017-10-22 20:00:00','flag_USA.gif','circuit_USA_new.jpg'),(18,'MEXICO (Mexico City)','2017-10-28 20:00:00','2017-10-29 21:00:00','flag_MEXICO.gif','circuit_MEXICO_new.jpg'),(19,'BRAZIL (Sao Paulo)','2017-11-11 17:00:00','2017-11-12 17:00:00','flag_BRAZIL.gif','circuit_BRAZIL_new.jpg'),(20,'UNITED ARAB EMIRATES (Abu Dhabi)','2017-11-25 14:00:00','2017-11-26 14:00:00','flag_UAE.gif','circuit_UAE_new.jpg'); /*!40000 ALTER TABLE `gps` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `results` -- DROP TABLE IF EXISTS `results`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `results` ( `r_g_id` int(4) NOT NULL DEFAULT '0', `r_e_id` int(2) NOT NULL DEFAULT '0', `r_d_id_p1` int(4) NOT NULL DEFAULT '0', `r_d_id_p2` int(4) NOT NULL DEFAULT '0', `r_d_id_p3` int(4) NOT NULL DEFAULT '0', `r_d_id_p4` int(4) NOT NULL DEFAULT '0', `r_d_id_p5` int(4) NOT NULL DEFAULT '0', `r_d_id_p6` int(4) NOT NULL DEFAULT '0', `r_d_id_p7` int(4) NOT NULL DEFAULT '0', `r_d_id_p8` int(4) NOT NULL DEFAULT '0', `r_d_id_p9` int(4) NOT NULL DEFAULT '0', `r_d_id_p10` int(4) NOT NULL DEFAULT '0', `r_fl` int(4) NOT NULL DEFAULT '0', `r_firstout` varchar(20) NOT NULL DEFAULT '0', `r_bestcup` varchar(20) NOT NULL DEFAULT '0', `r_bestteam` varchar(20) DEFAULT '0', `r_sc` int(2) NOT NULL DEFAULT '-1', `r_hp` int(1) NOT NULL DEFAULT '0', PRIMARY KEY (`r_g_id`,`r_e_id`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `results` -- LOCK TABLES `results` WRITE; /*!40000 ALTER TABLE `results` DISABLE KEYS */; INSERT INTO `results` VALUES (1,1,1,5,2,0,0,0,0,0,0,0,0,'0','0','0',-1,0),(1,2,5,1,2,6,4,10,7,13,14,8,6,'15','12','0',0,0),(2,1,1,5,2,0,0,0,0,0,0,0,0,'0','0','0',-1,0),(2,2,1,5,4,3,6,2,13,16,7,8,1,'9','4','0',1,0),(3,1,2,1,5,0,0,0,0,0,0,0,0,'0','0','0',-1,0),(3,2,5,1,2,6,3,10,7,15,17,8,1,'16','7','0',1,0),(4,1,5,6,2,0,0,0,0,0,0,0,0,'0','0','0',-1,0),(4,2,2,5,6,1,4,7,8,17,10,13,6,'15,18','12','0',1,0),(5,1,1,5,2,0,0,0,0,0,0,0,0,'0','0','0',-1,0),(5,2,1,5,3,7,8,17,13,20,14,15,1,'6','14','0',1,0),(6,1,6,5,2,0,0,0,0,0,0,0,0,'0','0','0',-1,0),(6,2,5,6,3,2,4,13,1,15,10,16,7,'17','1','0',1,0),(7,1,1,5,2,0,0,0,0,0,0,0,0,'0','0','0',-1,0),(7,2,1,2,3,5,7,8,6,17,9,15,1,'10,13','9','0',1,0),(8,1,1,2,6,0,0,0,0,0,0,0,0,'0','0','0',-1,0),(8,2,3,2,9,5,1,8,16,13,11,20,5,'18','11','0',1,0),(9,1,2,5,1,0,0,0,0,0,0,0,0,'0','0','0',-1,0),(9,2,2,5,3,1,6,15,7,8,10,9,1,'11,4','10,9','0',0,0),(10,1,1,6,5,0,0,0,0,0,0,0,0,'0','0','0',-1,0),(10,2,1,2,6,4,3,17,5,8,7,10,1,'13','3','0',1,0),(11,1,5,6,2,0,0,0,0,0,0,0,0,'0','0','0',-1,0),(11,2,5,6,2,1,4,11,13,7,8,12,11,'3','14,7','0',1,0),(12,1,1,5,2,0,0,0,0,0,0,0,0,'0','0','0',-1,0),(12,2,1,5,3,6,2,17,15,10,8,13,5,'20','10','0',1,0),(13,1,1,4,3,0,0,0,0,0,0,0,0,'0','0','0',-1,0),(13,2,1,2,5,3,6,8,9,10,7,4,3,'18','3','0',0,0),(14,1,5,4,3,0,0,0,0,0,0,0,0,'0','0','0',-1,0),(14,2,1,3,2,13,7,18,12,9,15,8,1,'6,4','9','0',1,0),(15,1,1,6,4,0,0,0,0,0,0,0,0,'0','0','0',-1,0),(15,2,4,1,3,5,2,7,12,9,10,8,5,'13','5','0',0,0),(16,1,1,2,5,0,0,0,0,0,0,0,0,'0','0','0',-1,0),(16,2,1,4,3,2,6,8,7,16,15,10,2,'13','11','0',1,0),(17,1,1,5,2,0,0,0,0,0,0,0,0,'0','0','0',-1,0),(17,2,1,5,6,4,2,8,13,7,10,14,5,'17','4','0',0,0),(18,1,5,4,1,0,0,0,0,0,0,0,0,'0','0','0',-1,0),(18,2,4,2,6,5,8,9,7,16,1,11,5,'3','11','0',1,0),(19,1,2,5,6,0,0,0,0,0,0,0,0,'0','0','0',-1,0),(19,2,5,2,6,1,4,3,10,11,7,17,4,'12','1','0',1,0),(20,1,2,1,5,0,0,0,0,0,0,0,0,'0','0','0',-1,0),(20,2,2,1,5,6,4,17,7,8,11,10,2,'3','15,25','0',0,0); /*!40000 ALTER TABLE `results` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tips` -- DROP TABLE IF EXISTS `tips`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `tips` ( `t_u_id` int(4) NOT NULL DEFAULT '0', `t_g_id` int(4) NOT NULL DEFAULT '0', `t_e_id` int(2) NOT NULL DEFAULT '0', `t_d_id_p1` int(4) NOT NULL DEFAULT '0', `t_d_id_p2` int(4) NOT NULL DEFAULT '0', `t_d_id_p3` int(4) NOT NULL DEFAULT '0', `t_fl` int(4) NOT NULL DEFAULT '0', `t_firstout` int(4) NOT NULL DEFAULT '0', `t_bestcup` int(4) NOT NULL DEFAULT '0', `t_bestteam` int(4) DEFAULT '0', `t_sc` int(2) NOT NULL DEFAULT '0', `t_timestamp` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `t_score` int(4) NOT NULL DEFAULT '0', PRIMARY KEY (`t_u_id`,`t_g_id`,`t_e_id`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tips` -- LOCK TABLES `tips` WRITE; /*!40000 ALTER TABLE `tips` DISABLE KEYS */; INSERT INTO `tips` VALUES (36,1,2,6,1,4,6,9,4,0,1,'2017-03-09 10:55:04',2),(36,1,1,1,6,2,0,0,0,0,0,'2017-03-09 10:55:23',4),(12,1,1,1,2,3,0,0,0,0,0,'2017-03-24 08:55:40',3),(21,1,1,1,2,5,0,0,0,0,0,'2017-03-24 16:05:39',4),(21,1,2,1,2,5,5,12,3,0,0,'2017-03-25 10:13:51',4),(1,1,1,1,5,2,0,0,0,0,0,'2017-03-24 19:29:41',6),(10,1,1,1,5,2,0,0,0,0,0,'2017-03-24 21:03:38',6),(7,1,1,1,5,2,0,0,0,0,0,'2017-03-24 22:43:33',6),(18,1,1,1,5,2,0,0,0,0,0,'2017-03-24 23:54:39',6),(12,1,2,1,5,2,1,3,16,0,1,'2017-03-25 08:20:12',3),(10,1,2,1,5,2,1,9,11,0,0,'2017-03-25 16:24:36',5),(1,1,2,1,5,6,1,19,3,0,1,'2017-03-25 17:47:26',1),(7,1,2,1,2,5,1,15,3,0,-1,'2017-03-25 19:03:14',6),(18,1,2,1,5,2,1,14,11,0,0,'2017-03-26 06:59:45',5),(7,2,1,1,5,2,0,0,0,0,0,'2017-04-07 08:18:29',6),(36,2,2,5,1,6,5,18,4,0,0,'2017-04-08 09:27:22',3),(36,2,1,5,2,1,0,0,0,0,0,'2017-04-08 08:56:53',3),(37,2,2,1,2,5,5,12,14,0,1,'2017-04-07 06:54:02',4),(12,2,1,1,2,5,0,0,0,0,0,'2017-04-07 12:54:22',4),(1,2,1,5,1,2,0,0,0,0,0,'2017-04-08 08:48:31',4),(21,2,1,5,1,6,0,0,0,0,0,'2017-04-08 07:05:57',2),(18,2,1,1,5,2,0,0,0,0,0,'2017-04-08 00:06:56',6),(10,2,1,5,2,1,0,0,0,0,0,'2017-04-08 08:50:16',3),(21,2,2,1,2,5,5,18,4,0,0,'2017-04-08 18:06:01',4),(12,2,2,1,5,2,1,4,15,0,1,'2017-04-08 19:43:02',6),(7,2,2,1,5,2,1,8,4,0,1,'2017-04-09 07:49:16',8),(1,2,2,5,1,2,1,19,4,0,1,'2017-04-08 22:10:14',6),(10,2,2,1,5,6,1,12,15,0,1,'2017-04-08 22:27:36',6),(18,2,2,1,5,6,1,12,4,0,1,'2017-04-09 07:59:49',8),(36,3,2,5,1,4,6,21,4,0,0,'2017-04-10 14:45:59',3),(36,3,1,1,5,2,0,0,0,0,0,'2017-04-10 14:45:52',3),(37,3,1,1,5,6,0,0,0,0,0,'2017-04-11 06:33:00',2),(7,3,1,5,3,2,0,0,0,0,0,'2017-04-14 21:06:16',2),(12,3,1,5,1,2,0,0,0,0,0,'2017-04-14 19:16:28',4),(1,3,1,1,5,2,0,0,0,0,0,'2017-04-15 08:03:04',3),(21,3,1,5,1,2,0,0,0,0,0,'2017-04-15 10:46:32',4),(10,3,1,1,5,2,0,0,0,0,0,'2017-04-15 16:06:49',3),(18,3,1,1,5,2,0,0,0,0,0,'2017-04-15 16:48:05',3),(12,3,2,1,2,5,1,19,13,0,0,'2017-04-15 18:18:42',3),(1,3,2,1,2,5,1,19,13,0,0,'2017-04-15 20:03:01',3),(7,3,2,5,1,3,1,16,18,0,0,'2017-04-16 15:04:10',7),(10,3,2,1,5,2,1,9,11,0,-1,'2017-04-16 11:03:55',5),(21,3,2,1,2,5,5,12,16,0,0,'2017-04-16 11:26:50',2),(18,3,2,1,2,5,1,16,7,0,-1,'2017-04-16 16:59:47',9),(36,4,2,5,6,2,5,16,10,0,1,'2017-04-29 15:15:55',4),(36,4,1,5,1,2,0,0,0,0,0,'2017-04-29 13:46:23',4),(12,4,1,5,6,1,0,0,0,0,0,'2017-04-28 20:00:55',4),(1,4,1,1,5,2,0,0,0,0,0,'2017-04-28 18:20:42',3),(21,4,1,5,6,2,0,0,0,0,0,'2017-04-28 18:49:18',6),(10,4,1,5,2,6,0,0,0,0,0,'2017-04-29 09:05:03',4),(7,4,1,5,6,1,0,0,0,0,0,'2017-04-29 12:22:14',4),(37,4,1,5,1,2,0,0,0,0,0,'2017-04-29 13:38:53',4),(18,4,1,5,1,6,0,0,0,0,0,'2017-04-29 13:45:45',3),(12,4,2,5,6,2,5,20,13,0,0,'2017-04-29 16:29:55',2),(1,4,2,5,1,6,5,16,15,0,1,'2017-04-29 18:34:59',4),(10,4,2,5,2,1,5,9,12,0,1,'2017-04-30 08:46:28',5),(21,4,2,5,6,2,5,11,15,0,1,'2017-04-30 10:18:41',4),(37,4,2,5,2,1,5,11,2,0,1,'2017-04-30 10:43:35',3),(18,4,2,5,2,6,5,12,14,0,0,'2017-04-30 13:59:10',3),(36,5,1,1,5,2,0,0,0,0,0,'2017-05-02 09:34:02',6),(36,5,2,5,1,2,1,9,4,0,0,'2017-05-02 09:34:59',2),(7,5,1,1,2,6,0,0,0,0,0,'2017-05-12 21:56:16',3),(7,5,2,5,1,2,5,9,14,0,1,'2017-05-14 08:33:50',5),(1,5,1,1,2,5,0,0,0,0,0,'2017-05-12 19:17:42',4),(12,5,1,1,2,6,0,0,0,0,0,'2017-05-13 13:57:43',3),(37,5,1,1,2,5,0,0,0,0,0,'2017-05-13 09:58:04',4),(21,5,1,1,2,6,0,0,0,0,0,'2017-05-13 13:08:38',3),(10,5,1,1,2,5,0,0,0,0,0,'2017-05-13 11:31:35',4),(18,5,1,1,5,2,0,0,0,0,0,'2017-05-13 13:50:22',6),(12,5,2,1,2,6,2,12,13,0,0,'2017-05-13 16:04:41',1),(37,5,2,1,2,5,5,9,2,0,0,'2017-05-13 18:07:08',2),(1,5,2,1,2,5,6,15,14,0,1,'2017-05-13 23:12:51',6),(10,5,2,5,1,2,5,20,17,0,-1,'2017-05-14 10:36:26',2),(21,5,2,1,2,5,5,12,14,0,1,'2017-05-14 12:46:59',6),(18,5,2,1,5,2,5,12,9,0,1,'2017-05-14 13:54:16',5),(36,6,2,5,6,2,6,9,1,0,1,'2017-05-28 09:35:59',7),(36,6,1,1,2,5,0,0,0,0,0,'2017-05-16 08:49:40',2),(21,6,1,1,5,4,0,0,0,0,0,'2017-05-26 08:30:26',2),(7,6,1,5,1,4,0,0,0,0,0,'2017-05-27 13:28:17',1),(12,6,1,5,6,2,0,0,0,0,0,'2017-05-27 08:52:19',4),(10,6,1,5,2,1,0,0,0,0,0,'2017-05-27 13:02:25',2),(1,6,1,5,6,2,0,0,0,0,0,'2017-05-27 13:14:39',4),(18,6,1,5,6,1,0,0,0,0,0,'2017-05-27 13:42:37',2),(12,6,2,5,6,2,5,12,1,0,1,'2017-05-27 15:34:30',7),(1,6,2,5,6,2,6,19,22,0,1,'2017-05-28 00:06:23',5),(21,6,2,6,5,4,1,12,1,0,1,'2017-05-28 09:36:18',5),(37,6,2,5,6,3,5,12,9999,0,1,'2017-05-28 12:23:33',7),(10,6,2,5,6,2,5,8,22,0,1,'2017-05-28 12:38:31',5),(7,6,2,5,6,2,5,18,1,0,1,'2017-05-28 13:24:32',7),(18,6,2,5,6,2,5,19,1,0,1,'2017-05-28 13:43:30',7),(36,7,2,1,5,2,1,12,6,0,1,'2017-06-08 14:22:16',5),(36,7,1,1,2,5,0,0,0,0,0,'2017-06-08 14:23:18',4),(12,7,1,1,2,5,0,0,0,0,0,'2017-06-09 18:10:01',4),(21,7,1,5,1,6,0,0,0,0,0,'2017-06-10 10:19:25',2),(37,7,1,1,6,5,0,0,0,0,0,'2017-06-10 11:09:06',3),(7,7,1,5,1,6,0,0,0,0,0,'2017-06-10 17:24:29',2),(7,7,2,1,5,6,5,19,9,0,1,'2017-06-11 19:25:56',5),(10,7,1,5,6,1,0,0,0,0,0,'2017-06-10 17:43:34',2),(1,7,1,5,1,6,0,0,0,0,0,'2017-06-10 18:03:37',2),(18,7,1,5,1,6,0,0,0,0,0,'2017-06-10 18:04:02',2),(1,7,2,1,5,2,5,15,16,0,1,'2017-06-10 20:37:04',4),(12,7,2,1,5,2,1,20,12,0,1,'2017-06-11 08:45:42',5),(37,7,2,1,5,2,5,9,6,0,1,'2017-06-11 09:58:07',4),(21,7,2,5,1,2,1,12,9,0,1,'2017-06-11 15:04:48',6),(10,7,2,1,5,6,1,13,20,0,1,'2017-06-11 19:19:53',7),(18,7,2,1,5,6,1,12,13,0,1,'2017-06-11 19:40:42',4),(36,8,1,5,2,6,0,0,0,0,0,'2017-06-14 09:56:03',4),(36,8,2,5,2,6,5,9,1,0,1,'2017-06-14 09:56:51',4),(7,8,1,2,5,1,0,0,0,0,0,'2017-06-24 14:28:19',2),(7,8,2,1,2,5,1,12,3,0,1,'2017-06-25 13:16:20',3),(12,8,1,5,1,4,0,0,0,0,0,'2017-06-23 15:31:22',1),(1,8,1,4,2,5,0,0,0,0,0,'2017-06-23 20:36:31',2),(10,8,1,5,1,4,0,0,0,0,0,'2017-06-24 11:06:05',1),(37,8,1,1,5,6,0,0,0,0,0,'2017-06-24 12:54:13',4),(18,8,1,5,6,1,0,0,0,0,0,'2017-06-24 13:18:58',2),(12,8,2,1,2,5,1,10,3,0,1,'2017-06-24 16:19:30',3),(1,8,2,1,2,5,1,15,3,0,1,'2017-06-25 00:58:09',3),(10,8,2,1,6,5,1,12,11,0,-1,'2017-06-25 09:59:45',2),(37,8,2,1,2,5,4,11,16,0,1,'2017-06-25 10:40:15',3),(18,8,2,1,6,5,5,18,11,0,1,'2017-06-25 13:58:38',7),(21,8,2,1,5,2,5,12,11,0,1,'2017-06-25 14:51:33',5),(7,9,1,5,2,1,0,0,0,0,0,'2017-07-08 13:41:30',4),(7,9,2,5,2,3,5,8,1,0,0,'2017-07-09 13:33:31',5),(36,9,1,5,1,2,0,0,0,0,0,'2017-07-07 11:47:05',3),(36,9,2,5,2,6,1,12,1,0,0,'2017-07-09 13:29:11',4),(37,9,1,1,5,2,0,0,0,0,0,'2017-07-07 18:33:34',4),(1,9,1,1,2,5,0,0,0,0,0,'2017-07-08 06:56:56',3),(21,9,1,1,5,2,0,0,0,0,0,'2017-07-08 07:43:35',4),(12,9,1,1,2,5,0,0,0,0,0,'2017-07-08 07:57:32',3),(18,9,1,1,5,2,0,0,0,0,0,'2017-07-08 12:48:47',4),(10,9,1,5,1,2,0,0,0,0,0,'2017-07-08 12:56:01',3),(1,9,2,2,5,1,1,8,16,0,1,'2017-07-08 17:28:13',4),(12,9,2,5,1,2,1,14,1,0,0,'2017-07-08 21:23:39',4),(21,9,2,5,1,2,1,12,16,0,1,'2017-07-09 13:59:26',2),(10,9,2,5,2,1,1,9,20,0,1,'2017-07-09 12:34:00',2),(18,9,2,2,5,1,1,15,1,0,1,'2017-07-09 13:54:03',4),(36,10,1,1,2,5,0,0,0,0,0,'2017-07-14 12:07:55',4),(36,10,2,1,5,6,1,12,3,0,1,'2017-07-16 13:26:14',8),(7,10,1,1,5,2,0,0,0,0,0,'2017-07-15 12:38:26',3),(1,10,1,1,2,5,0,0,0,0,0,'2017-07-15 07:00:08',4),(12,10,1,1,2,5,0,0,0,0,0,'2017-07-15 07:58:00',4),(10,10,1,5,1,2,0,0,0,0,0,'2017-07-15 09:09:19',2),(37,10,1,2,1,5,0,0,0,0,0,'2017-07-15 13:00:53',3),(18,10,1,1,2,5,0,0,0,0,0,'2017-07-15 13:34:35',4),(21,10,1,1,2,5,0,0,0,0,0,'2017-07-15 13:59:29',4),(12,10,2,1,2,5,5,11,3,0,1,'2017-07-15 21:41:33',7),(1,10,2,1,5,2,1,17,3,0,0,'2017-07-16 06:42:46',5),(7,10,2,1,6,2,6,14,3,0,0,'2017-07-16 08:57:44',5),(37,10,2,1,5,6,1,8,4,0,0,'2017-07-16 11:48:39',4),(10,10,2,1,5,6,1,9,11,0,1,'2017-07-16 12:23:27',6),(21,10,2,1,5,6,2,9,3,0,1,'2017-07-16 13:59:36',7),(18,10,2,1,5,6,1,12,3,0,1,'2017-07-16 13:55:17',8),(36,11,1,5,1,2,0,0,0,0,0,'2017-07-28 08:48:29',4),(36,11,2,5,1,6,5,18,4,0,0,'2017-07-28 08:49:11',2),(12,11,1,5,1,3,0,0,0,0,0,'2017-07-28 16:56:38',2),(1,11,1,5,2,1,0,0,0,0,0,'2017-07-29 13:32:49',3),(21,11,1,5,3,4,0,0,0,0,0,'2017-07-29 09:40:18',2),(7,11,1,5,6,1,0,0,0,0,0,'2017-07-29 12:50:19',4),(18,11,1,5,6,2,0,0,0,0,0,'2017-07-29 12:06:44',6),(10,11,1,5,2,6,0,0,0,0,0,'2017-07-29 13:14:55',4),(12,11,2,5,6,1,5,20,17,0,0,'2017-07-29 15:03:37',3),(1,11,2,5,6,1,1,14,9,0,1,'2017-07-29 16:01:52',5),(10,11,2,5,1,2,5,13,17,0,1,'2017-07-30 10:46:27',5),(7,11,2,5,6,1,5,4,14,0,0,'2017-07-30 13:32:35',5),(21,11,2,5,6,1,3,14,23,0,0,'2017-07-30 13:40:00',3),(18,11,2,5,2,6,5,9,7,0,0,'2017-07-30 13:56:35',5),(36,12,1,1,2,5,0,0,0,0,0,'2017-08-26 13:56:35',4),(36,12,2,5,1,2,1,12,10,0,1,'2017-08-27 13:46:28',5),(12,12,1,1,22,5,0,0,0,0,0,'2017-08-25 20:46:45',3),(7,12,1,5,6,1,0,0,0,0,0,'2017-08-26 13:53:45',2),(1,12,1,1,5,6,0,0,0,0,0,'2017-08-26 08:21:09',4),(10,12,1,1,2,5,0,0,0,0,0,'2017-08-26 09:33:18',4),(21,12,1,1,5,2,0,0,0,0,0,'2017-08-26 10:40:28',6),(37,12,1,1,2,6,0,0,0,0,0,'2017-08-26 11:19:46',3),(18,12,1,1,6,5,0,0,0,0,0,'2017-08-26 13:31:38',3),(12,12,2,1,5,2,1,12,9,0,1,'2017-08-26 15:29:39',5),(1,12,2,1,5,2,1,17,13,0,1,'2017-08-26 18:41:28',5),(7,12,2,1,2,5,6,19,14,0,-1,'2017-08-27 09:01:47',3),(37,12,2,5,2,3,1,8,4,0,1,'2017-08-27 09:52:15',4),(10,12,2,1,5,2,1,9,10,0,1,'2017-08-27 13:18:41',7),(21,12,2,1,5,2,1,11,12,0,1,'2017-08-27 13:44:10',5),(18,12,2,1,5,6,6,12,10,0,1,'2017-08-27 13:59:07',7),(36,13,1,1,2,5,0,0,0,0,0,'2017-08-28 15:02:37',2),(36,13,2,1,5,2,1,20,3,0,0,'2017-08-28 15:05:46',7),(21,13,1,1,2,5,0,0,0,0,0,'2017-09-01 14:05:37',2),(12,13,1,1,2,5,0,0,0,0,0,'2017-09-01 22:46:35',2),(37,13,1,1,5,2,0,0,0,0,0,'2017-09-02 07:13:10',2),(1,13,1,1,2,5,0,0,0,0,0,'2017-09-02 11:59:56',2),(7,13,1,1,2,5,0,0,0,0,0,'2017-09-02 12:04:49',2),(10,13,1,1,5,2,0,0,0,0,0,'2017-09-02 12:41:48',2),(18,13,1,5,1,6,0,0,0,0,0,'2017-09-02 13:58:42',1),(12,13,2,1,2,5,5,4,3,0,1,'2017-09-02 18:50:52',7),(1,13,2,1,2,5,1,10,3,0,0,'2017-09-02 22:10:37',9),(10,13,2,1,2,5,1,13,11,0,1,'2017-09-03 08:45:25',5),(21,13,2,1,2,5,1,12,3,0,0,'2017-09-03 10:25:01',9),(7,13,2,1,2,5,1,4,3,0,1,'2017-09-03 13:18:29',7),(37,13,2,1,5,2,2,8,4,0,1,'2017-09-03 13:37:22',3),(18,13,2,1,6,5,6,16,3,0,1,'2017-09-03 13:54:40',5),(36,14,2,5,4,3,4,20,10,0,1,'2017-09-17 13:14:37',2),(36,14,1,5,3,1,0,0,0,0,0,'2017-09-16 13:16:17',3),(37,14,1,3,5,4,0,0,0,0,0,'2017-09-15 18:10:57',3),(1,14,1,4,5,3,0,0,0,0,0,'2017-09-16 13:17:25',4),(12,14,1,3,1,4,0,0,0,0,0,'2017-09-15 23:43:04',2),(21,14,1,4,3,5,0,0,0,0,0,'2017-09-16 12:34:26',3),(18,14,1,5,1,4,0,0,0,0,0,'2017-09-16 14:16:57',3),(10,14,1,1,5,2,0,0,0,0,0,'2017-09-16 14:18:23',1),(7,14,1,3,4,1,0,0,0,0,0,'2017-09-16 14:29:34',3),(1,14,2,5,3,1,5,4,10,0,1,'2017-09-16 21:17:24',7),(12,14,2,5,3,4,5,10,9,0,1,'2017-09-16 22:17:11',5),(21,14,2,5,4,3,4,18,10,0,1,'2017-09-17 10:10:01',2),(10,14,2,5,4,1,5,9,10,0,1,'2017-09-17 10:12:28',2),(7,14,2,5,3,1,3,8,1,0,1,'2017-09-17 12:55:48',4),(18,14,2,5,3,6,3,18,19,0,1,'2017-09-17 13:59:12',3),(36,15,1,1,5,2,0,0,0,0,0,'2017-09-25 10:12:16',2),(36,15,2,1,4,3,5,6,5,0,1,'2017-10-01 08:58:12',6),(12,15,1,1,2,5,0,0,0,0,0,'2017-09-29 07:12:54',2),(21,15,1,1,4,5,0,0,0,0,0,'2017-09-29 09:59:43',3),(37,15,1,5,6,3,0,0,0,0,0,'2017-09-29 15:18:10',2),(1,15,1,5,6,1,0,0,0,0,0,'2017-09-29 20:57:04',3),(10,15,1,5,6,3,0,0,0,0,0,'2017-09-30 09:32:55',2),(7,15,2,1,6,3,1,8,5,0,1,'2017-10-01 07:33:09',4),(1,15,2,1,3,4,1,17,5,0,1,'2017-10-01 08:55:48',4),(12,15,2,1,3,4,5,6,5,0,1,'2017-09-30 19:49:21',5),(21,15,2,1,4,6,1,18,5,0,0,'2017-10-01 00:10:20',5),(18,15,2,1,6,3,3,24,5,0,1,'2017-10-01 08:03:38',4),(10,15,2,1,4,2,1,13,5,0,1,'2017-10-01 08:11:29',6),(37,15,2,1,3,2,1,15,24,0,1,'2017-10-01 08:55:13',1),(36,16,1,1,5,2,0,0,0,0,0,'2017-10-05 09:02:41',4),(36,16,2,1,5,3,1,18,2,0,0,'2017-10-07 18:28:59',3),(12,16,1,1,5,4,0,0,0,0,0,'2017-10-06 12:20:52',3),(37,16,1,1,5,4,0,0,0,0,0,'2017-10-06 14:57:07',3),(21,16,1,1,5,2,0,0,0,0,0,'2017-10-06 21:42:16',4),(1,16,1,1,5,3,0,0,0,0,0,'2017-10-06 21:49:54',3),(7,16,1,1,2,5,0,0,0,0,0,'2017-10-07 07:46:25',6),(18,16,1,1,2,5,0,0,0,0,0,'2017-10-07 07:58:43',6),(10,16,1,1,4,5,0,0,0,0,0,'2017-10-07 07:59:05',4),(12,16,2,1,5,4,1,10,13,0,1,'2017-10-07 09:14:23',4),(1,16,2,1,5,2,1,18,11,0,1,'2017-10-07 14:21:37',5),(21,16,2,1,5,2,5,18,11,0,0,'2017-10-07 17:22:02',3),(10,16,2,1,5,4,1,8,2,0,1,'2017-10-07 20:36:41',4),(7,16,2,1,5,3,2,8,2,0,-1,'2017-10-07 21:36:44',5),(37,16,2,1,5,3,1,15,4,0,0,'2017-10-07 22:25:38',3),(18,16,2,1,5,2,5,15,13,0,1,'2017-10-07 23:48:21',3),(21,17,1,1,5,2,0,0,0,0,0,'2017-10-20 12:58:03',6),(36,17,1,1,5,2,0,0,0,0,0,'2017-10-20 16:39:14',6),(36,17,2,1,5,3,1,20,4,0,0,'2017-10-22 20:41:14',7),(12,17,1,1,5,6,0,0,0,0,0,'2017-10-20 22:12:24',4),(1,17,1,1,2,5,0,0,0,0,0,'2017-10-21 21:38:26',4),(10,17,1,1,5,2,0,0,0,0,0,'2017-10-21 19:42:46',6),(37,17,1,1,5,2,0,0,0,0,0,'2017-10-21 20:21:31',6),(18,17,1,5,1,6,0,0,0,0,0,'2017-10-21 22:13:16',2),(1,17,2,1,2,5,1,15,4,0,1,'2017-10-22 00:08:21',4),(12,17,2,1,5,3,4,25,4,0,0,'2017-10-22 20:25:26',7),(7,17,2,1,2,5,1,9,4,0,-1,'2017-10-22 16:58:56',5),(21,17,2,5,1,2,1,17,4,0,0,'2017-10-22 17:31:01',8),(10,17,2,1,5,2,1,16,4,0,1,'2017-10-22 19:50:58',5),(37,17,2,1,5,2,5,4,3,0,1,'2017-10-22 20:20:15',4),(18,17,2,1,5,2,4,25,4,0,0,'2017-10-22 20:53:25',7),(36,18,1,1,5,2,0,0,0,0,0,'2017-10-23 15:37:05',2),(36,18,2,1,5,4,1,20,3,0,1,'2017-10-29 19:54:28',2),(21,18,1,3,1,4,0,0,0,0,0,'2017-10-28 12:41:46',2),(12,18,1,1,3,2,0,0,0,0,0,'2017-10-28 08:16:56',1),(7,18,1,1,2,3,0,0,0,0,0,'2017-10-28 13:59:37',1),(1,18,1,1,4,2,0,0,0,0,0,'2017-10-28 19:10:26',3),(10,18,1,1,4,2,0,0,0,0,0,'2017-10-28 14:43:08',3),(37,18,1,1,5,3,0,0,0,0,0,'2017-10-28 16:48:04',2),(18,18,1,1,5,4,0,0,0,0,0,'2017-10-28 19:14:57',3),(12,18,2,4,5,1,5,20,11,0,1,'2017-10-28 21:04:29',6),(1,18,2,4,5,1,5,17,3,0,1,'2017-10-29 19:58:52',4),(7,18,2,4,5,1,4,20,11,0,1,'2017-10-29 19:24:38',5),(21,18,2,4,1,5,3,24,3,0,1,'2017-10-29 18:13:01',3),(10,18,2,5,1,2,5,9,3,0,-1,'2017-10-29 18:54:07',2),(36,19,1,1,5,4,0,0,0,0,0,'2017-10-30 11:46:29',2),(36,19,2,4,5,2,1,20,1,0,0,'2017-11-12 16:59:21',3),(37,19,1,1,2,5,0,0,0,0,0,'2017-11-10 16:50:43',2),(18,19,1,1,2,5,0,0,0,0,0,'2017-11-11 08:11:49',2),(12,19,1,1,2,4,0,0,0,0,0,'2017-11-11 08:13:21',1),(1,19,1,1,2,5,0,0,0,0,0,'2017-11-11 13:41:56',2),(10,19,1,1,2,5,0,0,0,0,0,'2017-11-11 15:59:06',2),(21,19,1,1,2,3,0,0,0,0,0,'2017-11-11 16:02:13',1),(7,19,1,1,2,5,0,0,0,0,0,'2017-11-11 16:46:31',2),(7,19,2,2,5,6,5,15,1,0,1,'2017-11-11 18:36:07',7),(12,19,2,2,1,4,1,24,1,0,1,'2017-11-11 20:05:00',4),(21,19,2,2,5,4,1,24,1,0,0,'2017-11-12 15:43:55',3),(1,19,2,5,2,4,4,17,1,0,1,'2017-11-12 02:37:06',8),(10,19,2,2,5,4,2,8,1,0,0,'2017-11-12 10:57:57',3),(37,19,2,2,5,6,1,4,3,0,1,'2017-11-12 16:06:03',5),(18,19,2,5,2,4,5,6,1,0,1,'2017-11-12 16:58:03',7),(36,20,1,1,5,6,0,0,0,0,0,'2017-11-21 12:15:44',2),(36,20,2,1,2,5,1,20,11,0,1,'2017-11-26 13:58:40',3),(1,20,1,1,2,5,0,0,0,0,0,'2017-11-25 13:54:11',4),(12,20,1,1,2,4,0,0,0,0,0,'2017-11-24 22:45:29',2),(10,20,1,1,5,4,0,0,0,0,0,'2017-11-25 11:22:39',2),(7,20,1,1,2,5,0,0,0,0,0,'2017-11-25 12:25:23',4),(7,20,2,1,2,5,1,8,13,0,0,'2017-11-26 13:09:55',5),(18,20,1,1,2,5,0,0,0,0,0,'2017-11-25 13:04:06',4),(37,20,1,1,2,5,0,0,0,0,0,'2017-11-25 13:04:48',4),(12,20,2,1,2,5,1,11,13,0,0,'2017-11-25 17:04:06',5),(1,20,2,1,2,5,4,17,9,0,0,'2017-11-25 18:36:09',5),(10,20,2,1,2,5,2,16,11,0,1,'2017-11-26 10:52:37',4),(37,20,2,2,1,5,1,20,4,0,0,'2017-11-26 12:53:26',7),(18,20,2,2,1,5,3,15,13,0,1,'2017-11-26 13:58:01',5); /*!40000 ALTER TABLE `tips` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `users` -- DROP TABLE IF EXISTS `users`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `users` ( `u_id` int(11) NOT NULL AUTO_INCREMENT, `u_name` char(3) NOT NULL DEFAULT '', `u_passcode` varchar(41) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL DEFAULT '', `u_pic` varchar(40) DEFAULT NULL, `u_realname` varchar(40) NOT NULL DEFAULT '', `u_nickname` varchar(20) NOT NULL DEFAULT 'not revealed', `u_email` varchar(50) NOT NULL DEFAULT '', `u_emailreminder` int(1) NOT NULL DEFAULT '0', `u_nationality` varchar(20) NOT NULL DEFAULT 'not revealed', `u_favdriver` int(11) NOT NULL DEFAULT '0', `u_since` year(4) NOT NULL DEFAULT '0000', `u_gtwins` int(3) NOT NULL DEFAULT '0', `u_admin` int(1) NOT NULL DEFAULT '0', PRIMARY KEY (`u_id`) ) ENGINE=MyISAM AUTO_INCREMENT=38 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `users` -- LOCK TABLES `users` WRITE; /*!40000 ALTER TABLE `users` DISABLE KEYS */; INSERT INTO `users` VALUES (1,'MAM','18d022103920e120b2faabf4be68aa8f','pic_MAM.gif','Markus A. Mascelli','MAM','mam@heimam.at',0,'italian',602,2006,2,1),(2,'GUE','78918cecf8926d0cada4c5bc31af87a3','pic_GUE.gif','Guenther Schmidt','GueStar','guenther.schmidt@gmail.com',0,'austrian',15,2006,3,0),(3,'ZEI','8dad7cabce9c511bd4983e8dc96ea5da','pic_ZEI.gif','Christian Zeichmann','Zeichi','christian.zeichmann@kabelnet.at',0,'austrian',0,2007,1,0),(4,'AFG','8ff522cd1e5219541b2e945af0727d2b','pic_AFG.gif','Andrea F. Grohmann','','a.grohmann@gmx.at',0,'austrian',0,2007,0,0),(5,'JIR','8522c2ccfd6fc5d242ed16d168401fad','avatar.jpg','Juergen Iser','','j.iser@gmx.at',0,'austrian',602,2008,0,0),(6,'KAI','e5f4d97a4961dea1184bbbe847b591f3','avatar.jpg','Roman Kailbach','Kailo','kailo@gmx.at',0,'austrian',334,2008,0,0),(7,'WOB','776ad0ef27acc0602c337dc2736f3a97','300ende.jpg','Mhöb Gnagflow','WoB','wboehm@gmail.com',0,'austrian',762,2008,1,0),(8,'REG','776ad0ef27acc0602c337dc2736f3a97','yoshi1.jpg','Regina Boehm','','rboehm@gmail.com',0,'austrian',0,2008,0,0),(9,'ISA','3c4db9561aa2b8530d5c60014dbfbe86','isa_grid_kl_hp_3.jpg','Ildiko Samu-Puehringer','sam','ildikosamu.puehringer@gmail.com',0,'hungarian',667,2008,0,0),(10,'MRO','cda0fd2918d19e20ac871ed79a8d2bb0','pic_MRO.jpg','Martha Rossa','RoMa','rossama@yahoo.com',0,'austrian',334,2008,1,1),(11,'MPU','f9c17117b5b8dbf8cfa83d8057ee1a0b','mpu_grid_tip_blaukl.jpg','Michael Puehringer','','michael.puehringer@lotterien.at',0,'austrian',621,2008,0,0),(12,'RHA','9ced82c0515df69d4e3311f63d40ffa0','avatar.jpg','Robert Haller','','rr101088@gmail.com',0,'austrian',0,2008,0,0),(13,'FAN','33c2e20d31b3ae8f4564d7517738eb7d','extremeevil.gif','Georg Juren','Schurl','georg.juren@atos.net',0,'austrian',49,2009,0,0),(14,'MBR','f9c17117b5b8dbf8cfa83d8057ee1a0b','avatar.jpg','Markus Brenner','','m.brenn@gmx.net',0,'austrian',0,2009,0,0),(15,'RSC','d67ee0b6a91696158441100ba2e5a9b0','schicht_roman.jpg','Roman Schicht','','rschicht@yahoo.com',0,'austrian',0,2009,0,0),(16,'FAB','f9c17117b5b8dbf8cfa83d8057ee1a0b','avatar.jpg','Alexander Fabozzi','','alexander.fabozzi@gmx.at',0,'austrian',0,2010,0,0),(17,'MAR','776ad0ef27acc0602c337dc2736f3a97','avatar.jpg','Marina Boehm','','mboehm@gmail.com',0,'austrian',0,2010,0,0),(18,'IRS','8918b74d571421bcc47fc59816bf8fc2','foto_ivan.png','Ivan Rodriguez','','irodriguezs@hotmail.com',0,'spanish',15,2010,1,0),(19,'ALE','2ab3343875e56dc0a15cbb6a98570cf2','avatar.jpg','Alexander Doler','','alexander.doler@atos.net',0,'austrian',0,2012,0,0),(20,'STM','f078ea5db3ca0165e914bb82ea971755','avatar.jpg','Manfred Steinacher','','mst4711@gmx.at',0,'austrian',0,2013,0,0),(21,'MCL','02a8925e820f46c6c89d7a85a1285deb','avatar.jpg','Sasa Petrovic','Ayrton','sasa.petrovic@citrix.com',0,'serbian',676,2014,0,0),(22,'HOK','21e316792058f92b4873dff990619a94','avatar.jpg','Hoking','Hoking','samuel2f3@hotmail.com',0,'',833,2015,0,0),(36,'TOM','6b6817ae69fe2b011c7adb139a39d161','15409891.jpg','Thomas Reiter','raidaaa','t.reiter@gmx.at',0,'austrian',667,2017,0,0),(37,'JUF','bfdc65055698c17070dc805473c852f8','avatar.jpg','Juergen Finkes','jufi','juergen.finkes@kapsch.net',0,'austrian',0,2017,0,0); /*!40000 ALTER TABLE `users` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `winners` -- DROP TABLE IF EXISTS `winners`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `winners` ( `w_season` int(4) NOT NULL DEFAULT '0', `w_u_id` int(4) NOT NULL DEFAULT '0', PRIMARY KEY (`w_season`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `winners` -- LOCK TABLES `winners` WRITE; /*!40000 ALTER TABLE `winners` DISABLE KEYS */; INSERT INTO `winners` VALUES (2006,2),(2007,2),(2008,10),(2009,1),(2010,3),(2011,1),(2012,18),(2013,2),(2014,1),(2015,7),(2016,1),(2017,18); /*!40000 ALTER TABLE `winners` ENABLE KEYS */; UNLOCK TABLES; -- -- Current Database: `niki_2006` -- CREATE DATABASE /*!32312 IF NOT EXISTS*/ `niki_2006` /*!40100 DEFAULT CHARACTER SET latin1 */; USE `niki_2006`; -- -- Table structure for table `drivers` -- DROP TABLE IF EXISTS `drivers`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `drivers` ( `d_id` int(11) NOT NULL AUTO_INCREMENT, `d_lname` varchar(20) NOT NULL DEFAULT '', `d_fname` varchar(20) NOT NULL DEFAULT '', PRIMARY KEY (`d_id`) ) ENGINE=MyISAM AUTO_INCREMENT=27 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `drivers` -- LOCK TABLES `drivers` WRITE; /*!40000 ALTER TABLE `drivers` DISABLE KEYS */; INSERT INTO `drivers` VALUES (1,'ALONSO','Fernando'),(2,'FISICHELLA','Giancarlo'),(3,'RAIKKONEN','Kimi'),(4,'MONTOYA','Juan Pablo'),(5,'SCHUMACHER','Michael'),(6,'MASSA','Felipe'),(7,'SCHUMACHER','Ralf'),(8,'TRULLI','Jarno'),(9,'WEBBER','Mark'),(10,'ROSBERG','Nico'),(11,'BARRICHELLO','Rubens'),(12,'BUTTON','Jenson'),(13,'COULTHARD','David'),(14,'KLIEN','Christian'),(15,'HEIDFELD','Nick'),(16,'VILLENEUVE','Jacques'),(17,'MONTEIRO','Tiago'),(18,'ALBERS','Christijan'),(19,'LIUZZI','Vitantonio'),(20,'SPEED','Scott'),(21,'SATO','Takuma'),(22,'IDE','Yuji'),(23,'MONTAGNY','Franck'),(24,'DE LA ROSA','Pedro'),(25,'YAMAMOTO','Sakon'),(26,'KUBICA','Robert'); /*!40000 ALTER TABLE `drivers` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `events` -- DROP TABLE IF EXISTS `events`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `events` ( `e_id` int(11) NOT NULL AUTO_INCREMENT, `e_type` varchar(20) NOT NULL DEFAULT '', PRIMARY KEY (`e_id`) ) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `events` -- LOCK TABLES `events` WRITE; /*!40000 ALTER TABLE `events` DISABLE KEYS */; INSERT INTO `events` VALUES (1,'QUALIFYING'),(2,'RACE'); /*!40000 ALTER TABLE `events` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `gps` -- DROP TABLE IF EXISTS `gps`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `gps` ( `g_id` int(11) NOT NULL AUTO_INCREMENT, `g_name` varchar(40) NOT NULL DEFAULT '', `g_datetime` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `g_flag` varchar(20) NOT NULL DEFAULT '', `g_circuit` varchar(40) NOT NULL DEFAULT '', PRIMARY KEY (`g_id`) ) ENGINE=MyISAM AUTO_INCREMENT=19 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `gps` -- LOCK TABLES `gps` WRITE; /*!40000 ALTER TABLE `gps` DISABLE KEYS */; INSERT INTO `gps` VALUES (1,'BAHRAIN (Sakhir)','2006-03-12 13:30:00','flag_BAHRAIN.gif','circuit_BAHRAIN.gif'),(2,'MALAYSIA (Sepang)','2006-03-19 08:00:00','flag_MALAYSIA.gif','circuit_MALAYSIA.gif'),(3,'AUSTRALIA (Melbourne)','2006-04-02 04:00:00','flag_AUSTRALIA.gif','circuit_AUSTRALIA.gif'),(4,'SAN MARINO (Imola)','2006-04-23 14:00:00','flag_SANMARINO.gif','circuit_SANMARINO.gif'),(5,'EUROPE (Nuerburgring)','2006-05-07 14:00:00','flag_EUROPE.gif','circuit_GERMANY_(Nuerburgring).gif'),(6,'SPAIN (Barcelona)','2006-05-14 14:00:00','flag_SPAIN.gif','circuit_SPAIN.gif'),(7,'MONACO (Monte Carlo)','2006-05-28 14:00:00','flag_MONACO.gif','circuit_MONACO.gif'),(8,'GREAT BRITAIN (Silverstone)','2006-06-11 14:00:00','flag_UK.gif','circuit_UK.gif'),(9,'CANADA (Montreal)','2006-06-25 19:00:00','flag_CANADA.gif','circuit_CANADA.gif'),(10,'USA (Indianapolis)','2006-07-02 19:00:00','flag_USA.gif','circuit_USA.gif'),(11,'FRANCE (Magny-Cours)','2006-07-16 14:00:00','flag_FRANCE.gif','circuit_FRANCE.gif'),(12,'GERMANY (Hockenheim)','2006-07-30 14:00:00','flag_GERMANY.gif','circuit_GERMANY_(Hockenheim).gif'),(13,'HUNGARY (Budapest)','2006-08-06 14:00:00','flag_HUNGARY.gif','circuit_HUNGARY.gif'),(14,'TURKEY (Istanbul)','2006-08-27 14:00:00','flag_TURKEY.gif','circuit_TURKEY.gif'),(15,'ITALY (Monza)','2006-09-10 14:00:00','flag_ITALY.gif','circuit_ITALY.gif'),(16,'CHINA (Shanghai)','2006-10-01 08:00:00','flag_CHINA.gif','circuit_CHINA.gif'),(17,'JAPAN (Suzuka)','2006-10-08 07:00:00','flag_JAPAN.gif','circuit_JAPAN_(Suzuka).gif'),(18,'BRASIL (Sao Paolo)','2006-10-22 19:00:00','flag_BRASIL.gif','circuit_BRASIL.gif'); /*!40000 ALTER TABLE `gps` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `results` -- DROP TABLE IF EXISTS `results`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `results` ( `r_g_id` int(11) NOT NULL DEFAULT '0', `r_e_id` int(11) NOT NULL DEFAULT '0', `r_d_id_p1` int(11) NOT NULL DEFAULT '0', `r_d_id_p2` int(11) NOT NULL DEFAULT '0', `r_d_id_p3` int(11) NOT NULL DEFAULT '0', PRIMARY KEY (`r_g_id`,`r_e_id`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `results` -- LOCK TABLES `results` WRITE; /*!40000 ALTER TABLE `results` DISABLE KEYS */; INSERT INTO `results` VALUES (1,1,5,6,12),(1,2,1,5,3),(2,1,2,12,10),(2,2,2,1,12),(3,1,12,2,1),(3,2,1,3,7),(4,1,5,12,11),(4,2,5,1,4),(5,1,1,5,6),(5,2,5,1,6),(6,1,1,2,5),(6,2,1,5,2),(7,1,1,9,3),(7,2,1,4,13),(8,1,1,3,5),(8,2,1,5,3),(9,1,1,2,3),(9,2,1,5,3),(10,1,5,6,2),(10,2,5,6,2),(11,1,5,6,1),(11,2,5,1,6),(12,1,3,5,6),(12,2,5,6,3),(13,1,3,6,11),(13,2,12,24,15),(14,1,6,5,1),(14,2,6,1,5),(15,1,3,5,15),(15,2,5,3,26),(16,1,1,2,11),(16,2,5,1,2),(17,1,6,5,7),(17,2,1,6,2),(18,1,6,3,8),(18,2,6,1,12); /*!40000 ALTER TABLE `results` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tips` -- DROP TABLE IF EXISTS `tips`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `tips` ( `t_u_id` int(11) NOT NULL DEFAULT '0', `t_g_id` int(11) NOT NULL DEFAULT '0', `t_e_id` int(11) NOT NULL DEFAULT '0', `t_d_id_p1` int(11) NOT NULL DEFAULT '0', `t_d_id_p2` int(11) NOT NULL DEFAULT '0', `t_d_id_p3` int(11) NOT NULL DEFAULT '0', `t_timestamp` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `t_score` int(11) NOT NULL DEFAULT '0', PRIMARY KEY (`t_u_id`,`t_g_id`,`t_e_id`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tips` -- LOCK TABLES `tips` WRITE; /*!40000 ALTER TABLE `tips` DISABLE KEYS */; INSERT INTO `tips` VALUES (1,1,1,1,3,12,'2006-03-10 16:59:04',2),(1,1,2,1,5,4,'2006-03-11 18:21:05',4),(1,2,1,1,3,5,'2006-03-17 08:40:38',0),(1,2,2,3,1,4,'2006-03-18 09:56:09',2),(1,3,1,3,1,12,'2006-03-31 18:35:54',2),(1,3,2,3,1,12,'2006-04-01 09:37:37',2),(1,4,1,5,1,2,'2006-04-22 12:01:46',2),(1,4,2,5,1,3,'2006-04-22 16:52:27',4),(1,5,1,1,3,5,'2006-05-05 19:23:31',3),(1,5,2,1,5,3,'2006-05-06 15:16:55',2),(1,6,1,5,6,12,'2006-05-13 12:05:11',1),(1,6,2,1,5,2,'2006-05-13 15:14:14',6),(1,7,1,1,5,2,'2006-05-27 12:02:09',2),(1,7,2,1,3,4,'2006-05-28 10:27:25',3),(1,8,1,5,1,6,'2006-06-10 12:29:53',2),(1,8,2,1,5,2,'2006-06-10 14:44:01',4),(1,9,1,1,5,3,'2006-06-24 12:46:43',4),(1,9,2,1,3,2,'2006-06-24 22:56:48',3),(1,10,1,1,3,5,'2006-07-01 12:41:29',1),(1,10,2,5,2,1,'2006-07-01 20:09:39',3),(1,11,1,1,5,6,'2006-07-15 13:32:08',3),(1,11,2,5,1,3,'2006-07-15 15:17:12',4),(1,12,1,5,6,1,'2006-07-29 11:34:32',2),(1,12,2,5,3,6,'2006-07-29 15:13:10',4),(1,13,1,5,6,3,'2006-08-05 13:30:55',3),(1,13,2,3,6,2,'2006-08-06 12:43:51',0),(1,14,1,5,3,6,'2006-08-26 10:48:31',2),(1,14,2,5,6,1,'2006-08-27 13:59:01',3),(1,15,1,6,5,3,'2006-09-09 11:47:23',3),(1,15,2,3,5,6,'2006-09-10 07:39:25',2),(1,16,1,5,1,3,'2006-09-30 07:44:56',1),(1,16,2,1,3,5,'2006-09-30 09:16:46',2),(1,17,1,5,1,3,'2006-10-07 06:44:29',1),(1,17,2,5,6,1,'2006-10-07 09:35:18',3),(1,18,1,5,6,12,'2006-10-22 18:46:23',1),(1,18,2,6,3,1,'2006-10-22 13:00:28',3),(2,1,1,5,1,12,'2006-03-11 11:30:54',4),(2,1,2,4,1,6,'2006-03-12 11:03:00',1),(2,2,1,3,5,1,'2006-03-17 17:49:56',0),(2,2,2,4,3,2,'2006-03-18 18:25:06',1),(2,3,1,12,1,5,'2006-03-31 21:37:42',3),(2,3,2,1,3,2,'2006-04-01 09:36:21',4),(2,4,1,1,5,2,'2006-04-22 13:42:22',1),(2,4,2,5,1,12,'2006-04-23 11:34:47',4),(2,5,1,5,1,12,'2006-05-06 13:52:37',2),(2,5,2,5,1,3,'2006-05-06 15:17:22',4),(2,6,1,1,5,2,'2006-05-13 13:30:18',4),(2,6,2,1,5,6,'2006-05-13 15:10:34',4),(2,7,1,5,1,4,'2006-05-27 13:59:51',1),(2,7,2,5,1,3,'2006-05-27 15:07:51',1),(2,8,1,1,2,5,'2006-06-10 11:54:03',4),(2,8,2,3,1,5,'2006-06-11 12:22:39',3),(2,9,1,3,1,16,'2006-06-24 17:56:34',2),(2,9,2,1,2,3,'2006-06-24 20:01:03',4),(2,10,1,5,1,6,'2006-07-01 17:04:33',3),(2,10,2,5,6,2,'2006-07-01 20:08:13',6),(2,11,1,1,2,5,'2006-07-15 12:02:35',2),(2,11,2,1,5,6,'2006-07-16 13:46:40',4),(2,12,1,5,1,6,'2006-07-29 12:14:06',3),(2,12,2,5,6,3,'2006-07-29 15:09:17',6),(2,13,1,5,3,6,'2006-08-05 13:37:42',2),(2,13,2,3,6,24,'2006-08-06 12:44:37',1),(2,14,1,5,6,12,'2006-08-26 13:01:28',2),(2,14,2,5,1,6,'2006-08-27 13:59:23',4),(2,15,1,5,6,3,'2006-09-09 11:46:13',2),(2,15,2,3,5,1,'2006-09-10 13:34:04',2),(2,16,1,1,12,5,'2006-09-30 07:56:33',2),(2,16,2,1,2,3,'2006-10-01 07:47:41',2),(2,17,1,1,5,3,'2006-10-07 02:58:14',2),(2,17,2,5,6,7,'2006-10-08 05:54:14',2),(2,18,1,6,5,1,'2006-10-22 18:59:57',2),(2,18,2,6,1,5,'2006-10-22 18:40:52',4); /*!40000 ALTER TABLE `tips` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `users` -- DROP TABLE IF EXISTS `users`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `users` ( `u_id` int(11) NOT NULL AUTO_INCREMENT, `u_name` varchar(10) NOT NULL DEFAULT '', `u_passcode` varchar(20) NOT NULL DEFAULT '', `u_pic` varchar(20) NOT NULL DEFAULT '', PRIMARY KEY (`u_id`) ) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `users` -- LOCK TABLES `users` WRITE; /*!40000 ALTER TABLE `users` DISABLE KEYS */; INSERT INTO `users` VALUES (1,'MAM','mscmks','pic_MAM.gif'),(2,'GUE','guestar','pic_GUE.gif'); /*!40000 ALTER TABLE `users` ENABLE KEYS */; UNLOCK TABLES; -- -- Current Database: `niki_2007` -- CREATE DATABASE /*!32312 IF NOT EXISTS*/ `niki_2007` /*!40100 DEFAULT CHARACTER SET latin1 */; USE `niki_2007`; -- -- Table structure for table `drivers` -- DROP TABLE IF EXISTS `drivers`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `drivers` ( `d_id` int(11) NOT NULL AUTO_INCREMENT, `d_lname` varchar(20) NOT NULL DEFAULT '', `d_fname` varchar(20) NOT NULL DEFAULT '', PRIMARY KEY (`d_id`) ) ENGINE=MyISAM AUTO_INCREMENT=44 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `drivers` -- LOCK TABLES `drivers` WRITE; /*!40000 ALTER TABLE `drivers` DISABLE KEYS */; INSERT INTO `drivers` VALUES (1,'ALONSO','Fernando'),(2,'HAMILTON','Lewis'),(3,'FISICHELLA','Giancarlo'),(4,'KOVALAINEN','Heikki'),(5,'MASSA','Felipe'),(6,'RAIKKONEN','Kimi'),(7,'BUTTON','Jenson'),(8,'BARRICHELLO','Rubens'),(9,'HEIDFELD','Nick'),(10,'KUBICA','Robert'),(11,'SCHUMACHER','Ralf'),(12,'TRULLI','Jarno'),(14,'COULTHARD','David'),(15,'WEBBER','Mark'),(16,'ROSBERG','Nico'),(17,'WURZ','Alexander'),(18,'LIUZZI','Vitantonio'),(19,'SPEED','Scott'),(20,'ALBERS','Christijan'),(21,'SUTIL','Adrian'),(22,'SATO','Takuma'),(23,'DAVIDSON','Anthony'),(24,'DE LA ROSA','Pedro'),(25,'PAFFETT','Gary'),(26,'PIQUET','Nelson Jr.'),(27,'ZONTA','Ricardo'),(28,'BADOER','Luca'),(29,'KLIEN','Christian'),(30,'ROSSITER','James'),(31,'VETTEL','Sebastian'),(32,'GLOCK','Timo'),(33,'MONTAGNY','Franck'),(34,'DOORNBOS','Robert'),(35,'AMMERMUELLER','Michael'),(36,'KARTHIKEYAN','Narain'),(37,'NAKAJIMA','Kazuki'),(38,'JANI','Neel'),(39,'WINKELHOCK','Markus'),(40,'FAUZY','Fairuz'),(41,'VAN DER GARDE','Giedo'),(42,'VALLES','Adrian'),(43,'YAMAMOTO','Sakon'); /*!40000 ALTER TABLE `drivers` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `events` -- DROP TABLE IF EXISTS `events`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `events` ( `e_id` int(11) NOT NULL AUTO_INCREMENT, `e_type` varchar(20) NOT NULL DEFAULT '', PRIMARY KEY (`e_id`) ) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `events` -- LOCK TABLES `events` WRITE; /*!40000 ALTER TABLE `events` DISABLE KEYS */; INSERT INTO `events` VALUES (1,'QUALIFYING'),(2,'RACE'); /*!40000 ALTER TABLE `events` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `gps` -- DROP TABLE IF EXISTS `gps`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `gps` ( `g_id` int(11) NOT NULL AUTO_INCREMENT, `g_name` varchar(40) NOT NULL DEFAULT '', `g_datetime` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `g_flag` varchar(20) NOT NULL DEFAULT '', `g_circuit` varchar(40) NOT NULL DEFAULT '', PRIMARY KEY (`g_id`) ) ENGINE=MyISAM AUTO_INCREMENT=18 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `gps` -- LOCK TABLES `gps` WRITE; /*!40000 ALTER TABLE `gps` DISABLE KEYS */; INSERT INTO `gps` VALUES (1,'AUSTRALIA (Melbourne)','2007-03-18 04:00:00','flag_AUSTRALIA.gif','circuit_AUSTRALIA.gif'),(2,'MALAYSIA (Sepang)','2007-04-08 08:00:00','flag_MALAYSIA.gif','circuit_MALAYSIA.gif'),(3,'BAHRAIN (Sakhir)','2007-04-15 13:30:00','flag_BAHRAIN.gif','circuit_BAHRAIN.gif'),(4,'SPAIN (Barcelona)','2007-05-13 14:00:00','flag_SPAIN.gif','circuit_SPAIN.gif'),(5,'MONACO (Monte Carlo)','2007-05-27 14:00:00','flag_MONACO.gif','circuit_MONACO.gif'),(6,'CANADA (Montreal)','2007-06-10 19:00:00','flag_CANADA.gif','circuit_CANADA.gif'),(7,'USA (Indianapolis)','2007-06-17 19:00:00','flag_USA.gif','circuit_USA.gif'),(8,'FRANCE (Magny-Cours)','2007-07-01 14:00:00','flag_FRANCE.gif','circuit_FRANCE.gif'),(9,'GREAT BRITAIN (Silverstone)','2007-07-08 14:00:00','flag_UK.gif','circuit_UK.gif'),(10,'GERMANY (Nuerburgring)','2007-07-22 14:00:00','flag_GERMANY.gif','circuit_GERMANY_(Nuerburgring).gif'),(11,'HUNGARY (Budapest)','2007-08-05 14:00:00','flag_HUNGARY.gif','circuit_HUNGARY.gif'),(12,'TURKEY (Istanbul)','2007-08-26 14:00:00','flag_TURKEY.gif','circuit_TURKEY.gif'),(13,'ITALY (Monza)','2007-09-09 14:00:00','flag_ITALY.gif','circuit_ITALY.gif'),(14,'BELGIUM (Spa)','2007-09-16 14:00:00','flag_BELGIUM.gif','circuit_BELGIUM.gif'),(15,'JAPAN (Fuji)','2007-09-30 06:30:00','flag_JAPAN.gif','circuit_JAPAN_(Fuji).gif'),(16,'CHINA (Shanghai)','2007-10-07 08:00:00','flag_CHINA.gif','circuit_CHINA.gif'),(17,'BRASIL (Sao Paolo)','2007-10-21 18:00:00','flag_BRASIL.gif','circuit_BRASIL.gif'); /*!40000 ALTER TABLE `gps` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `results` -- DROP TABLE IF EXISTS `results`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `results` ( `r_g_id` int(11) NOT NULL DEFAULT '0', `r_e_id` int(11) NOT NULL DEFAULT '0', `r_d_id_p1` int(11) NOT NULL DEFAULT '0', `r_d_id_p2` int(11) NOT NULL DEFAULT '0', `r_d_id_p3` int(11) NOT NULL DEFAULT '0', `r_sc` int(11) NOT NULL DEFAULT '0', PRIMARY KEY (`r_g_id`,`r_e_id`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `results` -- LOCK TABLES `results` WRITE; /*!40000 ALTER TABLE `results` DISABLE KEYS */; INSERT INTO `results` VALUES (1,1,6,1,9,0),(1,2,6,1,2,0),(2,1,5,1,6,0),(2,2,1,2,6,0),(3,1,5,2,6,0),(3,2,5,2,6,1),(4,1,5,1,6,0),(4,2,5,2,1,0),(5,1,1,2,5,0),(5,2,1,2,5,0),(6,1,2,1,9,0),(6,2,2,9,17,1),(7,1,2,1,5,0),(7,2,2,1,5,0),(8,1,5,2,6,0),(8,2,6,5,2,0),(9,1,2,6,1,0),(9,2,6,1,2,0),(10,1,6,1,5,0),(10,2,1,5,15,1),(11,1,2,9,6,0),(11,2,2,6,9,0),(12,1,5,2,6,0),(12,2,5,6,1,0),(13,1,1,2,5,0),(13,2,1,2,6,1),(14,1,6,5,1,0),(14,2,6,5,1,0),(15,1,2,1,6,0),(15,2,2,4,6,1),(16,1,2,6,5,0),(16,2,6,1,5,0),(17,1,5,2,6,0),(17,2,6,5,1,0); /*!40000 ALTER TABLE `results` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tips` -- DROP TABLE IF EXISTS `tips`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `tips` ( `t_u_id` int(11) NOT NULL DEFAULT '0', `t_g_id` int(11) NOT NULL DEFAULT '0', `t_e_id` int(11) NOT NULL DEFAULT '0', `t_d_id_p1` int(11) NOT NULL DEFAULT '0', `t_d_id_p2` int(11) NOT NULL DEFAULT '0', `t_d_id_p3` int(11) NOT NULL DEFAULT '0', `t_sc` int(11) NOT NULL DEFAULT '0', `t_timestamp` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `t_score` int(11) NOT NULL DEFAULT '0', PRIMARY KEY (`t_u_id`,`t_g_id`,`t_e_id`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tips` -- LOCK TABLES `tips` WRITE; /*!40000 ALTER TABLE `tips` DISABLE KEYS */; INSERT INTO `tips` VALUES (4,1,1,6,5,1,0,'2007-03-15 08:41:10',3),(4,1,2,5,1,6,0,'2007-03-15 08:41:31',4),(2,1,1,5,6,17,0,'2007-03-16 17:19:52',1),(2,1,2,5,6,1,1,'2007-03-16 17:20:12',1),(1,1,1,5,6,1,0,'2007-03-17 00:09:21',2),(1,1,2,6,1,2,0,'2007-03-17 14:29:09',7),(3,1,2,6,3,8,-1,'2007-03-18 01:32:01',2),(1,2,1,5,6,1,0,'2007-04-06 19:58:14',4),(4,2,1,5,6,3,0,'2007-04-06 21:15:10',3),(2,2,1,6,5,2,0,'2007-04-07 07:48:55',2),(2,2,2,5,6,1,0,'2007-04-07 08:59:42',3),(1,2,2,6,5,1,0,'2007-04-07 09:16:15',3),(4,2,2,5,1,6,0,'2007-04-07 09:31:37',4),(4,3,1,6,2,5,0,'2007-04-13 21:03:59',4),(1,3,1,6,1,2,0,'2007-04-14 12:10:54',2),(2,3,1,5,2,6,0,'2007-04-14 12:52:10',6),(2,3,2,5,2,6,0,'2007-04-14 13:58:25',5),(1,3,2,2,6,1,0,'2007-04-14 13:59:53',1),(4,3,2,5,6,1,0,'2007-04-15 10:10:44',2),(4,4,1,1,5,6,0,'2007-05-11 17:26:24',4),(1,4,1,1,5,2,0,'2007-05-12 10:42:58',2),(2,4,1,6,2,1,0,'2007-05-12 13:55:14',2),(2,4,2,5,6,1,0,'2007-05-12 15:03:58',5),(4,4,2,1,5,6,0,'2007-05-13 10:21:21',3),(1,4,2,5,1,6,0,'2007-05-13 10:53:43',4),(4,5,1,1,6,2,0,'2007-05-25 16:52:38',3),(1,5,1,6,2,1,0,'2007-05-26 12:13:58',3),(2,5,1,6,1,2,0,'2007-05-26 12:59:10',2),(1,5,2,1,2,5,1,'2007-05-26 15:05:17',5),(4,5,2,5,1,2,1,'2007-05-26 15:09:43',2),(2,5,2,2,1,5,1,'2007-05-27 13:46:34',3),(1,6,1,1,2,5,0,'2007-06-09 09:29:44',2),(4,6,1,1,6,5,0,'2007-06-09 17:08:55',1),(2,6,1,6,2,1,0,'2007-06-09 18:40:52',2),(2,6,2,2,1,6,1,'2007-06-09 20:05:48',3),(1,6,2,1,2,6,1,'2007-06-09 20:08:15',2),(4,6,2,6,5,1,0,'2007-06-10 12:18:17',-1),(4,7,1,1,2,5,0,'2007-06-16 08:52:35',4),(1,7,1,2,1,9,0,'2007-06-16 18:37:17',4),(2,7,1,1,2,9,0,'2007-06-16 18:46:57',2),(2,7,2,2,1,5,1,'2007-06-16 20:01:45',5),(4,7,2,1,2,6,0,'2007-06-17 11:57:41',3),(1,7,2,2,1,6,0,'2007-06-17 15:44:03',5),(4,8,1,1,5,2,0,'2007-06-30 10:58:13',2),(1,8,1,2,5,6,0,'2007-06-30 12:05:57',4),(2,8,1,5,2,6,0,'2007-06-30 14:03:24',6),(2,8,2,5,2,6,0,'2007-06-30 15:01:03',4),(1,8,2,2,5,6,0,'2007-06-30 15:13:27',5),(4,8,2,6,10,1,1,'2007-06-30 17:56:36',1),(4,9,1,6,2,5,0,'2007-07-07 08:29:24',2),(1,9,1,6,1,5,0,'2007-07-07 12:00:55',2),(2,9,1,6,1,2,0,'2007-07-07 12:01:50',3),(4,9,2,2,6,5,0,'2007-07-07 15:03:00',3),(1,9,2,2,1,6,0,'2007-07-07 15:03:04',5),(2,9,2,6,1,2,0,'2007-07-08 13:52:16',7),(1,10,1,6,2,1,0,'2007-07-21 11:24:13',3),(4,10,1,2,6,1,0,'2007-07-21 13:47:43',2),(2,10,1,6,2,5,0,'2007-07-21 13:53:35',4),(2,10,2,6,1,5,0,'2007-07-21 15:33:38',1),(4,10,2,6,1,5,0,'2007-07-21 15:34:50',1),(1,10,2,6,5,1,0,'2007-07-22 12:21:10',2),(4,11,1,1,2,6,0,'2007-08-03 21:26:49',3),(4,11,2,1,6,2,0,'2007-08-03 21:27:03',4),(1,11,1,2,1,6,0,'2007-08-04 11:10:00',4),(2,11,1,5,1,6,0,'2007-08-04 12:08:47',2),(1,11,2,1,2,6,0,'2007-08-04 15:01:27',3),(2,11,2,2,6,9,0,'2007-08-05 13:31:34',7),(4,12,1,6,2,1,0,'2007-08-25 09:38:55',3),(2,12,1,2,1,5,0,'2007-08-25 11:03:02',2),(1,12,1,2,5,1,0,'2007-08-25 11:04:26',2),(1,12,2,2,6,5,0,'2007-08-25 14:15:02',4),(4,12,2,5,2,6,0,'2007-08-25 16:50:49',4),(2,12,2,6,1,5,0,'2007-08-26 13:40:41',4),(4,13,1,6,1,5,0,'2007-09-07 18:17:47',3),(1,13,1,1,2,5,0,'2007-09-08 11:57:01',6),(2,13,1,1,2,6,0,'2007-09-08 12:47:38',4),(4,13,2,1,2,5,0,'2007-09-08 14:41:22',3),(1,13,2,1,2,5,1,'2007-09-08 15:01:06',5),(2,13,2,1,2,5,0,'2007-09-09 13:38:32',3),(4,14,1,1,2,6,0,'2007-09-15 11:16:52',2),(1,14,1,6,1,2,0,'2007-09-15 11:58:48',3),(2,14,1,6,1,5,0,'2007-09-15 12:02:52',4),(2,14,2,6,5,1,0,'2007-09-15 15:02:04',7),(1,14,2,6,1,5,0,'2007-09-15 15:10:38',5),(4,14,2,1,6,2,0,'2007-09-16 13:07:04',3),(4,15,1,1,2,6,0,'2007-09-28 19:34:26',4),(1,15,1,2,1,6,0,'2007-09-28 22:23:11',6),(2,15,1,6,1,2,0,'2007-09-29 06:55:29',4),(1,15,2,2,1,6,1,'2007-09-29 08:07:06',5),(4,15,2,2,6,1,0,'2007-09-29 15:02:09',2),(2,15,2,1,2,6,1,'2007-09-30 05:46:28',4),(4,16,1,6,1,5,0,'2007-10-05 17:43:04',3),(1,16,1,6,1,2,0,'2007-10-06 06:40:21',2),(1,16,2,2,6,1,1,'2007-10-06 09:01:42',1),(4,16,2,2,1,6,1,'2007-10-06 12:06:33',2),(2,16,1,1,6,2,0,'2007-10-06 05:10:13',3),(2,16,2,6,2,5,1,'2007-10-07 07:45:30',3),(4,17,1,6,5,2,0,'2007-10-20 16:03:45',3),(1,17,1,5,2,6,0,'2007-10-20 16:22:50',6),(2,17,1,5,6,2,0,'2007-10-20 17:15:48',4),(1,17,2,6,2,5,0,'2007-10-20 19:09:35',4),(4,17,2,5,2,6,0,'2007-10-21 13:43:07',3),(2,17,2,6,5,2,0,'2007-10-21 17:42:45',5); /*!40000 ALTER TABLE `tips` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `users` -- DROP TABLE IF EXISTS `users`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `users` ( `u_id` int(11) NOT NULL AUTO_INCREMENT, `u_name` varchar(10) NOT NULL DEFAULT '', `u_passcode` varchar(20) NOT NULL DEFAULT '', `u_pic` varchar(20) NOT NULL DEFAULT '', PRIMARY KEY (`u_id`) ) ENGINE=MyISAM AUTO_INCREMENT=5 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `users` -- LOCK TABLES `users` WRITE; /*!40000 ALTER TABLE `users` DISABLE KEYS */; INSERT INTO `users` VALUES (1,'MAM','mscmks','pic_MAM.gif'),(2,'GUE','guestar','pic_GUE.gif'),(3,'AFG','schoki','pic_AFG.gif'),(4,'ZEI','zeichi','pic_ZEI.gif'); /*!40000 ALTER TABLE `users` ENABLE KEYS */; UNLOCK TABLES; -- -- Current Database: `niki_2008` -- CREATE DATABASE /*!32312 IF NOT EXISTS*/ `niki_2008` /*!40100 DEFAULT CHARACTER SET latin1 */; USE `niki_2008`; -- -- Table structure for table `drivers` -- DROP TABLE IF EXISTS `drivers`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `drivers` ( `d_id` int(11) NOT NULL AUTO_INCREMENT, `d_lname` varchar(20) NOT NULL DEFAULT '', `d_fname` varchar(20) NOT NULL DEFAULT '', PRIMARY KEY (`d_id`) ) ENGINE=MyISAM AUTO_INCREMENT=39 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `drivers` -- LOCK TABLES `drivers` WRITE; /*!40000 ALTER TABLE `drivers` DISABLE KEYS */; INSERT INTO `drivers` VALUES (1,'RAIKKONEN','Kimi'),(2,'MASSA','Felipe'),(3,'HEIDFELD','Nick'),(4,'KUBICA','Robert'),(5,'ALONSO','Fernando'),(6,'PIQUET','Nelson Jr.'),(7,'ROSBERG','Nico'),(8,'NAKAJIMA','Kazuki'),(9,'COULTHARD','David'),(10,'WEBBER','Mark'),(11,'TRULLI','Jarno'),(12,'GLOCK','Timo'),(14,'BOURDAIS','Sebastien'),(15,'VETTEL','Sebastian'),(16,'BUTTON','Jenson'),(17,'BARRICHELLO','Rubens'),(18,'SATO','Takuma'),(19,'DAVIDSON','Anthony'),(20,'SUTIL','Adrian'),(21,'FISICHELLA','Giancarlo'),(22,'HAMILTON','Lewis'),(23,'KOVALAINEN','Heikki'),(24,'BADOER','Luca'),(25,'GENE','Marc'),(26,'KLIEN','Christian'),(27,'ASMER','Marko'),(28,'GROSJEAN','Romain'),(29,'DI GRASSI','Lucas'),(30,'YAMAMOTO','Sakon'),(31,'HUELKENBERG','Nico'),(32,'BUEMI','Sebastien'),(33,'KOBAYASHI','Kamui'),(34,'WURZ','Alexander'),(35,'ROSSITER','James'),(36,'LIUZZI','Vitantonio'),(37,'DE LA ROSA','Pedro'),(38,'PAFFETT','Gary'); /*!40000 ALTER TABLE `drivers` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `events` -- DROP TABLE IF EXISTS `events`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `events` ( `e_id` int(11) NOT NULL AUTO_INCREMENT, `e_type` varchar(20) NOT NULL DEFAULT '', PRIMARY KEY (`e_id`) ) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `events` -- LOCK TABLES `events` WRITE; /*!40000 ALTER TABLE `events` DISABLE KEYS */; INSERT INTO `events` VALUES (1,'QUALIFYING'),(2,'RACE'); /*!40000 ALTER TABLE `events` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `gps` -- DROP TABLE IF EXISTS `gps`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `gps` ( `g_id` int(11) NOT NULL AUTO_INCREMENT, `g_name` varchar(40) NOT NULL DEFAULT '', `g_datetime_q` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `g_datetime_r` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `g_flag` varchar(20) NOT NULL DEFAULT '', `g_circuit` varchar(40) NOT NULL DEFAULT '', PRIMARY KEY (`g_id`) ) ENGINE=MyISAM AUTO_INCREMENT=19 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `gps` -- LOCK TABLES `gps` WRITE; /*!40000 ALTER TABLE `gps` DISABLE KEYS */; INSERT INTO `gps` VALUES (1,'AUSTRALIA (Melbourne)','2008-03-15 04:00:00','2008-03-16 05:30:00','flag_AUSTRALIA.gif','circuit_AUSTRALIA.gif'),(2,'MALAYSIA (Sepang)','2008-03-22 07:00:00','2008-03-23 08:00:00','flag_MALAYSIA.gif','circuit_MALAYSIA.gif'),(3,'BAHRAIN (Sakhir)','2008-04-05 13:00:00','2008-04-06 13:30:00','flag_BAHRAIN.gif','circuit_BAHRAIN.gif'),(4,'SPAIN (Barcelona)','2008-04-26 14:00:00','2008-04-27 14:00:00','flag_SPAIN.gif','circuit_SPAIN.gif'),(5,'TURKEY (Istanbul)','2008-05-10 13:00:00','2008-05-11 14:00:00','flag_TURKEY.gif','circuit_TURKEY.gif'),(6,'MONACO (Monte Carlo)','2008-05-24 14:00:00','2008-05-25 14:00:00','flag_MONACO.gif','circuit_MONACO.gif'),(7,'CANADA (Montreal)','2008-06-07 19:00:00','2008-06-08 19:00:00','flag_CANADA.gif','circuit_CANADA.gif'),(8,'FRANCE (Magny-Cours)','2008-06-21 14:00:00','2008-06-22 14:00:00','flag_FRANCE.gif','circuit_FRANCE.gif'),(9,'GREAT BRITAIN (Silverstone)','2008-07-05 14:00:00','2008-07-06 14:00:00','flag_UK.gif','circuit_UK.gif'),(10,'GERMANY (Hockenheim)','2008-07-19 14:00:00','2008-07-20 14:00:00','flag_GERMANY.gif','circuit_GERMANY_(Hockenheim).gif'),(11,'HUNGARY (Budapest)','2008-08-02 14:00:00','2008-08-03 14:00:00','flag_HUNGARY.gif','circuit_HUNGARY.gif'),(12,'EUROPE (Valencia)','2008-08-23 14:00:00','2008-08-24 14:00:00','flag_EUROPE.gif','circuit_EUROPE_(Valencia).gif'),(13,'BELGIUM (Spa)','2008-09-06 14:00:00','2008-09-07 14:00:00','flag_BELGIUM.gif','circuit_BELGIUM.gif'),(14,'ITALY (Monza)','2008-09-13 14:00:00','2008-09-14 14:00:00','flag_ITALY.gif','circuit_ITALY.gif'),(15,'SINGAPORE (Singapore)','2008-09-27 16:00:00','2008-09-28 14:00:00','flag_SINGAPORE.gif','circuit_SINGAPORE.gif'),(16,'JAPAN (Fuji)','2008-10-11 07:00:00','2008-10-12 06:30:00','flag_JAPAN.gif','circuit_JAPAN_(Fuji).gif'),(17,'CHINA (Shanghai)','2008-10-18 08:00:00','2008-10-19 09:00:00','flag_CHINA.gif','circuit_CHINA.gif'),(18,'BRASIL (Sao Paolo)','2008-11-01 17:00:00','2008-11-02 18:00:00','flag_BRASIL.gif','circuit_BRASIL.gif'); /*!40000 ALTER TABLE `gps` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `results` -- DROP TABLE IF EXISTS `results`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `results` ( `r_g_id` int(11) NOT NULL DEFAULT '0', `r_e_id` int(11) NOT NULL DEFAULT '0', `r_d_id_p1` int(11) NOT NULL DEFAULT '0', `r_d_id_p2` int(11) NOT NULL DEFAULT '0', `r_d_id_p3` int(11) NOT NULL DEFAULT '0', `r_fl` int(11) NOT NULL DEFAULT '0', `r_sc` int(11) NOT NULL DEFAULT '-1', PRIMARY KEY (`r_g_id`,`r_e_id`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `results` -- LOCK TABLES `results` WRITE; /*!40000 ALTER TABLE `results` DISABLE KEYS */; INSERT INTO `results` VALUES (1,1,22,4,23,0,-1),(1,2,22,3,7,23,1),(2,1,2,1,23,0,-1),(2,2,1,4,23,3,0),(3,1,4,2,22,0,-1),(3,2,2,1,4,23,0),(4,1,1,5,2,0,-1),(4,2,1,2,22,1,1),(5,1,2,23,22,0,-1),(5,2,2,22,1,1,1),(6,1,2,1,22,0,-1),(6,2,22,4,2,1,1),(7,1,22,4,1,0,-1),(7,2,4,3,9,1,1),(8,1,1,2,22,0,-1),(8,2,2,1,11,1,0),(9,1,23,10,1,0,-1),(9,2,22,3,17,1,0),(10,1,22,2,23,0,-1),(10,2,22,6,2,3,1),(11,1,22,23,2,0,-1),(11,2,23,12,1,1,0),(12,1,2,22,4,0,-1),(12,2,2,22,4,2,0),(13,1,22,2,23,0,-1),(13,2,2,3,22,1,0),(14,1,15,23,10,0,-1),(14,2,15,23,4,1,1),(15,1,2,22,1,0,-1),(15,2,5,7,22,1,1),(16,1,22,1,23,0,-1),(16,2,5,4,1,2,0),(17,1,22,1,2,0,-1),(17,2,22,2,1,22,0),(18,1,2,11,1,0,-1),(18,2,2,5,1,2,1); /*!40000 ALTER TABLE `results` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tips` -- DROP TABLE IF EXISTS `tips`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `tips` ( `t_u_id` int(11) NOT NULL DEFAULT '0', `t_g_id` int(11) NOT NULL DEFAULT '0', `t_e_id` int(11) NOT NULL DEFAULT '0', `t_d_id_p1` int(11) NOT NULL DEFAULT '0', `t_d_id_p2` int(11) NOT NULL DEFAULT '0', `t_d_id_p3` int(11) NOT NULL DEFAULT '0', `t_fl` int(11) NOT NULL DEFAULT '0', `t_sc` int(11) NOT NULL DEFAULT '0', `t_timestamp` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `t_score` int(11) NOT NULL DEFAULT '0', PRIMARY KEY (`t_u_id`,`t_g_id`,`t_e_id`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tips` -- LOCK TABLES `tips` WRITE; /*!40000 ALTER TABLE `tips` DISABLE KEYS */; INSERT INTO `tips` VALUES (7,1,1,1,22,2,0,0,'2008-03-14 11:25:18',1),(3,1,1,1,22,2,0,0,'2008-03-14 16:46:45',1),(8,1,1,1,22,2,0,0,'2008-03-14 17:20:45',1),(6,1,2,22,2,23,1,0,'2008-03-15 12:47:15',1),(9,1,1,22,2,23,0,0,'2008-03-14 17:27:34',4),(9,1,2,22,2,23,15,-1,'2008-03-15 12:38:04',2),(10,1,1,22,1,2,0,0,'2008-03-14 19:51:43',2),(11,1,1,22,1,2,0,0,'2008-03-14 21:11:04',2),(1,1,1,1,22,2,0,0,'2008-03-15 03:48:00',1),(7,1,2,22,4,2,22,0,'2008-03-15 13:36:31',1),(8,1,2,22,2,4,1,-1,'2008-03-15 14:44:44',2),(3,1,2,22,2,4,22,0,'2008-03-15 14:48:53',1),(1,1,2,2,22,23,1,1,'2008-03-15 19:35:15',2),(12,1,2,22,4,2,9999,-1,'2008-03-15 20:11:25',2),(10,1,2,22,2,4,1,0,'2008-03-15 20:22:24',1),(11,1,2,22,2,23,22,-1,'2008-03-15 22:06:27',2),(2,1,2,22,23,2,1,0,'2008-03-16 04:49:25',1),(9,2,1,22,23,2,0,0,'2008-03-21 12:33:54',2),(8,2,1,2,22,1,0,0,'2008-03-21 14:39:44',3),(10,2,1,2,22,1,0,0,'2008-03-21 18:08:50',3),(3,2,1,22,1,2,0,0,'2008-03-21 18:18:08',3),(12,2,1,22,1,23,0,0,'2008-03-21 20:52:33',4),(7,2,1,22,23,1,0,0,'2008-03-21 21:04:24',2),(11,2,1,22,2,23,0,0,'2008-03-21 21:55:54',3),(6,2,1,22,2,1,0,0,'2008-03-22 00:22:21',2),(1,2,1,22,1,2,0,0,'2008-03-22 06:24:22',3),(2,2,1,2,1,3,0,0,'2008-03-22 06:56:56',4),(3,2,2,1,22,2,22,-1,'2008-03-22 10:39:35',2),(6,2,2,2,1,22,2,-1,'2008-03-22 11:30:36',1),(1,2,2,1,2,3,1,1,'2008-03-22 19:24:01',1),(9,2,2,2,4,3,22,1,'2008-03-22 19:30:22',1),(8,2,2,2,3,23,2,1,'2008-03-22 19:35:32',1),(10,2,2,1,2,22,1,1,'2008-03-22 20:31:47',1),(7,2,2,2,1,4,2,-1,'2008-03-22 20:45:57',2),(12,2,2,1,22,23,1,-1,'2008-03-22 21:51:38',4),(11,2,2,1,2,3,22,-1,'2008-03-22 23:24:55',2),(2,2,2,1,2,3,1,1,'2008-03-23 07:48:45',1),(3,3,1,1,2,22,0,0,'2008-04-03 13:06:05',4),(7,3,1,1,2,22,0,0,'2008-04-04 23:26:28',4),(9,3,1,2,1,23,0,0,'2008-04-05 09:05:49',1),(8,3,1,2,1,22,0,0,'2008-04-05 09:06:31',3),(6,3,1,2,1,23,0,0,'2008-04-05 11:20:07',1),(10,3,1,2,1,4,0,0,'2008-04-05 11:45:31',2),(12,3,1,1,22,2,0,0,'2008-04-05 11:46:24',2),(11,3,1,2,1,23,0,0,'2008-04-05 12:35:11',1),(1,3,1,2,1,23,0,0,'2008-04-05 12:35:45',1),(2,3,1,2,1,11,0,0,'2008-04-05 12:49:00',1),(6,3,2,2,1,4,4,-1,'2008-04-05 14:11:56',6),(9,3,2,22,4,1,2,-1,'2008-04-05 19:29:32',2),(3,3,2,2,1,22,1,-1,'2008-04-05 19:33:50',4),(8,3,2,22,1,3,23,-1,'2008-04-05 19:47:38',3),(1,3,2,2,22,1,2,0,'2008-04-05 23:14:09',4),(11,3,2,2,22,4,4,0,'2008-04-05 23:27:41',5),(7,3,2,1,4,22,23,-1,'2008-04-06 10:36:15',3),(10,3,2,1,4,22,23,0,'2008-04-06 12:02:21',4),(12,3,2,2,4,22,1,-1,'2008-04-06 12:23:17',3),(2,3,2,1,2,4,2,0,'2008-04-06 13:29:58',5),(3,4,1,1,2,4,0,0,'2008-04-25 18:29:02',3),(7,4,1,1,2,22,0,0,'2008-04-25 18:42:54',3),(8,4,1,1,2,22,0,0,'2008-04-26 11:51:12',3),(9,4,1,1,2,4,0,0,'2008-04-26 11:55:43',3),(12,4,1,2,1,22,0,0,'2008-04-26 13:15:35',2),(10,4,1,1,4,2,0,0,'2008-04-26 13:15:36',4),(6,4,1,1,4,23,0,0,'2008-04-26 13:25:06',2),(1,4,1,1,2,22,0,0,'2008-04-26 13:31:48',3),(11,4,1,1,2,22,0,0,'2008-04-26 13:33:53',3),(2,4,1,1,2,4,0,0,'2008-04-26 14:00:09',3),(6,4,2,1,2,5,2,-1,'2008-04-26 15:16:54',4),(3,4,2,1,2,4,4,-1,'2008-04-26 15:36:59',4),(1,4,2,1,2,4,2,0,'2008-04-26 16:05:35',3),(7,4,2,1,2,4,1,-1,'2008-04-27 04:06:09',5),(4,4,2,1,4,5,4,0,'2008-04-27 09:14:01',1),(9,4,2,1,2,4,3,0,'2008-04-27 10:27:06',3),(8,4,2,1,4,5,3,1,'2008-04-27 10:28:31',3),(11,4,2,1,2,4,4,0,'2008-04-27 12:22:13',3),(10,4,2,1,4,5,1,0,'2008-04-27 13:29:03',2),(12,4,2,1,4,22,2,-1,'2008-04-27 13:29:57',4),(2,4,2,1,2,4,1,0,'2008-04-27 13:54:40',4),(7,5,1,2,23,1,0,0,'2008-05-10 00:27:59',4),(13,5,1,2,1,23,0,0,'2008-05-10 09:43:40',3),(3,5,1,1,22,2,0,0,'2008-05-10 10:42:54',2),(8,5,1,2,23,1,0,0,'2008-05-10 11:19:02',4),(9,5,1,1,2,22,0,0,'2008-05-10 11:20:42',3),(2,5,1,22,1,4,0,0,'2008-05-10 12:58:00',1),(1,5,1,1,2,22,0,0,'2008-05-10 12:58:13',3),(11,5,1,1,22,2,0,0,'2008-05-10 12:59:26',2),(10,5,1,4,2,1,0,0,'2008-05-10 12:44:02',1),(12,5,1,1,2,22,0,0,'2008-05-10 12:44:18',3),(3,5,2,2,22,1,2,0,'2008-05-10 15:07:15',5),(11,5,2,2,22,1,2,-1,'2008-05-10 22:31:57',6),(7,5,2,2,23,22,2,-1,'2008-05-11 00:59:17',3),(13,5,2,1,2,22,9999,-1,'2008-05-11 08:05:23',3),(8,5,2,2,22,1,1,-1,'2008-05-11 08:44:42',7),(9,5,2,2,23,22,1,0,'2008-05-11 08:47:48',3),(1,5,2,2,1,22,2,-1,'2008-05-11 12:08:58',4),(12,5,2,2,1,23,1,-1,'2008-05-11 12:41:40',4),(10,5,2,2,1,22,1,0,'2008-05-11 12:42:51',4),(2,5,2,2,1,23,2,1,'2008-05-11 13:52:57',4),(3,6,1,1,22,2,0,0,'2008-05-22 18:16:53',3),(7,6,1,1,22,23,0,0,'2008-05-24 01:47:43',2),(4,6,1,1,22,2,0,0,'2008-05-24 06:53:43',3),(1,6,1,22,1,2,0,0,'2008-05-24 12:23:01',4),(11,6,1,22,1,2,0,0,'2008-05-24 12:35:38',4),(8,6,1,1,22,3,0,0,'2008-05-24 12:44:02',2),(9,6,1,22,23,7,0,0,'2008-05-24 12:45:08',1),(6,6,1,23,1,22,0,0,'2008-05-24 12:46:34',4),(13,6,1,22,5,1,0,0,'2008-05-24 12:50:39',2),(10,6,1,22,7,1,0,0,'2008-05-24 13:10:22',2),(12,6,1,23,22,1,0,0,'2008-05-24 13:12:03',2),(2,6,1,22,1,7,0,0,'2008-05-24 13:29:38',3),(2,6,2,22,1,23,22,1,'2008-05-24 13:30:10',3),(3,6,2,1,2,22,1,1,'2008-05-24 15:06:51',4),(7,6,2,1,22,2,1,1,'2008-05-25 03:27:23',5),(13,6,2,2,1,22,7,1,'2008-05-25 07:11:10',3),(4,6,2,1,2,22,1,0,'2008-05-25 10:55:47',2),(1,6,2,2,22,1,22,1,'2008-05-25 12:20:48',3),(11,6,2,2,1,22,1,1,'2008-05-25 12:30:48',4),(12,6,2,2,1,22,2,-1,'2008-05-25 13:35:00',2),(10,6,2,2,1,22,1,1,'2008-05-25 13:40:57',4),(9,6,2,2,22,23,2,-1,'2008-05-25 13:45:29',2),(8,6,2,1,2,4,7,1,'2008-05-25 13:47:05',3),(3,7,1,22,1,2,0,0,'2008-06-06 17:21:11',3),(13,7,1,22,2,1,0,0,'2008-06-07 14:36:36',4),(7,7,1,22,4,1,0,0,'2008-06-07 16:53:29',6),(11,7,1,22,1,2,0,0,'2008-06-07 17:34:22',3),(1,7,1,22,1,2,0,0,'2008-06-07 17:34:50',3),(9,7,1,1,22,2,0,0,'2008-06-07 17:59:04',2),(8,7,1,22,1,4,0,0,'2008-06-07 18:01:34',4),(12,7,1,2,22,1,0,0,'2008-06-07 18:22:00',3),(10,7,1,4,2,22,0,0,'2008-06-07 18:23:00',2),(1,7,2,22,1,4,22,1,'2008-06-07 20:25:02',2),(3,7,2,22,1,4,1,-1,'2008-06-07 20:31:38',2),(7,7,2,22,1,4,22,-1,'2008-06-07 23:11:17',1),(13,7,2,22,1,4,9999,-1,'2008-06-08 10:40:06',1),(2,7,2,22,4,1,22,1,'2008-06-08 11:51:50',2),(8,7,2,4,22,2,3,-1,'2008-06-08 16:32:20',2),(9,7,2,22,1,4,7,-1,'2008-06-08 16:35:46',1),(11,7,2,22,1,4,1,1,'2008-06-08 17:45:01',3),(10,7,2,22,1,4,4,1,'2008-06-08 18:52:25',2),(12,7,2,22,1,4,22,1,'2008-06-08 18:56:59',2),(7,8,1,2,22,23,0,0,'2008-06-20 14:05:43',2),(13,8,1,4,22,2,0,0,'2008-06-20 15:32:21',2),(11,8,1,2,1,22,0,0,'2008-06-20 19:47:20',4),(1,8,1,1,2,4,0,0,'2008-06-20 19:47:50',4),(3,8,1,2,1,23,0,0,'2008-06-21 12:17:38',2),(8,8,1,2,5,23,0,0,'2008-06-21 13:02:58',1),(9,8,1,1,2,4,0,0,'2008-06-21 13:03:31',4),(10,8,1,2,22,1,0,0,'2008-06-21 13:34:49',3),(2,8,1,1,22,5,0,0,'2008-06-21 13:51:51',3),(3,8,2,1,2,22,1,-1,'2008-06-21 15:27:18',3),(13,8,2,1,2,4,9999,-1,'2008-06-22 08:02:13',2),(1,8,2,1,2,4,1,1,'2008-06-22 09:58:57',2),(12,8,2,1,2,23,1,-1,'2008-06-22 12:09:18',3),(10,8,2,1,2,4,1,-1,'2008-06-22 12:12:49',3),(9,8,2,2,1,23,22,0,'2008-06-22 12:24:42',5),(8,8,2,2,5,23,22,-1,'2008-06-22 12:52:48',2),(11,8,2,1,2,4,1,0,'2008-06-22 13:03:09',4),(2,8,2,1,2,5,1,0,'2008-06-22 13:38:18',4),(7,8,2,1,2,4,1,0,'2008-06-22 13:43:26',4),(7,9,1,2,22,1,0,0,'2008-07-04 16:26:26',2),(3,9,1,2,22,1,0,0,'2008-07-04 18:53:06',2),(9,9,1,23,2,22,0,0,'2008-07-05 08:57:20',2),(8,9,1,2,22,23,0,0,'2008-07-05 09:13:12',1),(13,9,1,1,23,22,0,0,'2008-07-05 10:13:20',2),(10,9,1,2,1,22,0,0,'2008-07-05 10:20:53',1),(12,9,1,22,1,4,0,0,'2008-07-05 10:21:30',1),(11,9,1,22,2,23,0,0,'2008-07-05 12:22:26',1),(1,9,1,22,2,1,0,0,'2008-07-05 12:40:10',2),(2,9,1,2,22,1,0,0,'2008-07-05 12:43:09',2),(7,9,2,1,22,23,23,-1,'2008-07-05 15:41:22',1),(1,9,2,23,22,1,22,1,'2008-07-05 17:25:34',0),(3,9,2,23,1,22,23,-1,'2008-07-05 17:28:36',1),(13,9,2,1,23,22,4,-1,'2008-07-05 22:14:26',1),(11,9,2,1,23,22,23,1,'2008-07-06 10:31:17',0),(8,9,2,1,22,3,2,1,'2008-07-06 11:23:17',1),(9,9,2,23,1,10,1,1,'2008-07-06 11:23:37',0),(10,9,2,1,22,23,1,-1,'2008-07-06 12:22:21',2),(12,9,2,1,22,23,1,1,'2008-07-06 12:22:31',1),(2,9,2,1,23,15,1,1,'2008-07-06 13:32:17',0),(13,10,2,22,2,23,4,1,'2008-07-13 08:09:19',4),(13,10,1,22,2,23,0,0,'2008-07-13 08:09:45',6),(3,10,1,22,2,1,0,0,'2008-07-18 19:49:43',4),(9,10,1,22,23,2,0,0,'2008-07-19 11:48:56',4),(8,10,1,22,1,23,0,0,'2008-07-19 11:50:37',4),(1,10,1,22,2,23,0,0,'2008-07-19 12:12:43',6),(11,10,1,22,2,23,0,0,'2008-07-19 12:13:29',6),(12,10,1,1,22,2,0,0,'2008-07-19 12:25:24',2),(10,10,1,2,22,1,0,0,'2008-07-19 12:25:25',2),(7,10,1,22,23,2,0,0,'2008-07-19 13:00:01',4),(2,10,1,22,2,23,0,0,'2008-07-19 13:56:56',6),(7,10,2,22,2,23,22,-1,'2008-07-19 16:01:35',3),(3,10,2,22,2,1,22,0,'2008-07-19 17:59:36',2),(1,10,2,22,2,1,2,0,'2008-07-20 11:08:40',2),(11,10,2,22,23,2,22,-1,'2008-07-20 11:52:52',4),(10,10,2,22,2,1,1,-1,'2008-07-20 12:59:19',3),(8,10,2,22,23,2,5,1,'2008-07-20 13:11:38',5),(9,10,2,23,2,1,1,-1,'2008-07-20 13:15:52',1),(2,10,2,22,2,1,2,0,'2008-07-20 13:57:34',2),(7,11,1,22,2,1,0,0,'2008-08-01 15:17:56',3),(3,11,1,22,2,1,0,0,'2008-08-02 09:49:24',3),(13,11,1,22,23,5,0,0,'2008-08-02 12:42:37',4),(9,11,1,22,23,3,0,0,'2008-08-02 12:45:51',4),(8,11,1,22,2,23,0,0,'2008-08-02 12:46:24',4),(1,11,1,22,2,23,0,0,'2008-08-02 13:26:52',4),(10,11,1,2,22,1,0,0,'2008-08-02 13:28:18',2),(11,11,1,22,23,2,0,0,'2008-08-02 13:30:10',6),(2,11,1,22,2,23,0,0,'2008-08-02 13:50:23',4),(1,11,2,22,2,23,22,0,'2008-08-02 15:17:11',2),(3,11,2,22,2,23,22,0,'2008-08-02 19:04:00',2),(7,11,2,22,2,4,22,0,'2008-08-03 05:49:49',1),(9,11,2,22,23,4,1,-1,'2008-08-03 10:08:12',2),(13,11,2,22,2,23,22,0,'2008-08-03 10:21:54',2),(8,11,2,22,4,23,2,-1,'2008-08-03 10:30:55',1),(10,11,2,22,2,4,1,-1,'2008-08-03 12:00:10',1),(11,11,2,22,23,2,22,0,'2008-08-03 13:00:32',2),(2,11,2,22,2,23,22,1,'2008-08-03 13:52:27',0),(3,12,1,1,22,2,0,0,'2008-08-22 21:18:30',3),(7,12,1,2,22,15,0,0,'2008-08-23 00:39:58',4),(13,12,2,22,2,5,2,1,'2008-08-23 08:01:42',2),(13,12,1,2,1,22,0,0,'2008-08-23 08:02:21',3),(8,12,1,4,1,2,0,0,'2008-08-23 12:38:44',2),(9,12,1,1,4,2,0,0,'2008-08-23 12:45:02',2),(1,12,1,2,22,1,0,0,'2008-08-23 13:10:05',4),(11,12,1,2,22,4,0,0,'2008-08-23 13:30:25',6),(2,12,1,1,22,2,0,0,'2008-08-23 13:38:45',3),(7,12,2,22,1,2,22,-1,'2008-08-23 15:09:43',2),(3,12,2,2,22,1,2,1,'2008-08-23 16:51:28',4),(9,12,2,2,4,23,1,1,'2008-08-24 10:45:44',2),(8,12,2,2,23,22,22,1,'2008-08-24 10:49:22',2),(1,12,2,2,22,1,1,1,'2008-08-24 11:55:50',3),(10,12,2,2,22,1,1,1,'2008-08-24 12:39:37',3),(12,12,2,2,22,1,1,-1,'2008-08-24 12:40:45',4),(2,12,2,2,22,1,1,1,'2008-08-24 13:45:38',3),(11,12,2,22,2,1,22,1,'2008-08-24 13:49:37',1),(7,13,1,2,1,22,0,0,'2008-09-05 15:24:44',2),(3,13,1,2,22,23,0,0,'2008-09-06 09:59:36',4),(10,13,1,1,2,22,0,0,'2008-09-06 11:21:15',3),(12,13,1,1,2,22,0,0,'2008-09-06 11:21:50',3),(11,13,1,2,22,23,0,0,'2008-09-06 11:54:10',4),(1,13,1,2,22,1,0,0,'2008-09-06 12:02:08',2),(9,13,1,2,23,22,0,0,'2008-09-06 13:41:52',3),(8,13,1,1,3,22,0,0,'2008-09-06 13:42:24',1),(2,13,1,22,2,1,0,0,'2008-09-06 13:48:19',4),(1,13,2,22,23,1,22,0,'2008-09-06 15:16:37',2),(7,13,2,22,2,1,22,0,'2008-09-06 15:59:14',3),(3,13,2,22,2,1,2,0,'2008-09-07 10:24:57',3),(9,13,2,22,23,1,1,-1,'2008-09-07 10:39:47',2),(10,13,2,2,22,1,1,0,'2008-09-07 11:00:29',5),(12,13,2,22,2,23,1,-1,'2008-09-07 11:01:10',3),(8,13,2,1,2,23,22,1,'2008-09-07 11:23:34',0),(11,13,2,22,2,23,22,1,'2008-09-07 13:29:07',1),(13,13,2,1,22,4,2,-1,'2008-09-07 13:34:05',1),(2,13,2,22,2,1,22,0,'2008-09-07 13:49:53',3),(13,14,1,1,22,2,0,0,'2008-09-12 09:59:43',0),(13,14,2,22,2,23,1,1,'2008-09-12 10:00:41',3),(7,14,1,1,22,2,0,0,'2008-09-12 15:50:31',0),(3,14,1,1,2,22,0,0,'2008-09-13 08:24:16',0),(10,14,1,2,1,22,0,0,'2008-09-13 11:38:17',0),(12,14,1,2,1,22,0,0,'2008-09-13 11:38:42',0),(9,14,1,2,1,22,0,0,'2008-09-13 12:42:26',0),(8,14,1,1,22,3,0,0,'2008-09-13 12:43:27',0),(2,14,1,22,1,15,0,0,'2008-09-13 13:30:58',1),(1,14,1,22,1,2,0,0,'2008-09-13 13:38:18',0),(11,14,1,22,2,4,0,0,'2008-09-13 13:44:31',0),(3,14,2,23,2,15,23,1,'2008-09-13 16:41:29',3),(7,14,2,15,23,2,2,1,'2008-09-14 08:29:51',5),(8,14,2,23,2,7,1,1,'2008-09-14 12:55:53',3),(9,14,2,23,2,15,2,-1,'2008-09-14 12:56:58',2),(1,14,2,23,2,3,22,1,'2008-09-14 13:02:28',2),(12,14,2,23,2,10,22,-1,'2008-09-14 13:35:18',1),(10,14,2,2,23,15,23,1,'2008-09-14 13:38:33',4),(11,14,2,23,15,2,23,1,'2008-09-14 13:42:54',3),(2,14,2,23,15,14,22,1,'2008-09-14 13:53:13',3),(13,15,1,22,1,2,0,0,'2008-09-26 13:22:15',3),(7,15,1,22,2,1,0,0,'2008-09-27 00:52:38',4),(3,15,1,22,2,1,0,0,'2008-09-27 09:57:15',4),(2,15,1,22,2,5,0,0,'2008-09-27 12:34:34',2),(9,15,1,2,22,23,0,0,'2008-09-27 13:59:57',4),(12,15,1,22,2,4,0,0,'2008-09-27 14:41:01',2),(10,15,1,22,2,4,0,0,'2008-09-27 14:41:34',2),(11,15,1,22,2,4,0,0,'2008-09-27 15:29:56',2),(1,15,1,22,2,23,0,0,'2008-09-27 15:35:22',2),(3,15,2,2,22,1,2,-1,'2008-09-27 18:01:02',1),(7,15,2,2,22,1,2,-1,'2008-09-27 23:14:29',1),(1,15,2,2,22,1,1,1,'2008-09-28 09:43:10',3),(11,15,2,22,2,1,1,1,'2008-09-28 11:36:30',3),(9,15,2,2,1,23,1,-1,'2008-09-28 12:22:12',1),(13,15,2,22,1,4,2,1,'2008-09-28 12:28:01',2),(8,15,2,2,22,23,5,-1,'2008-09-28 13:18:17',1),(12,15,2,2,1,22,1,-1,'2008-09-28 13:47:00',3),(10,15,2,2,1,22,1,1,'2008-09-28 13:47:53',4),(2,15,2,2,22,1,9999,-1,'2008-09-28 13:57:09',1),(13,16,1,22,2,5,0,0,'2008-10-10 15:11:02',2),(13,16,2,22,2,5,1,1,'2008-10-10 15:11:40',0),(7,16,1,22,2,23,0,0,'2008-10-10 15:13:27',4),(3,16,1,22,2,1,0,0,'2008-10-10 18:05:40',3),(1,16,1,22,2,1,0,0,'2008-10-10 23:54:32',3),(11,16,1,22,2,1,0,0,'2008-10-11 00:16:19',3),(3,16,2,22,2,1,22,-1,'2008-10-11 09:59:43',2),(7,16,2,22,2,1,22,0,'2008-10-11 16:58:40',3),(9,16,2,22,23,1,1,-1,'2008-10-11 20:04:07',2),(8,16,2,22,2,5,12,1,'2008-10-11 23:59:44',0),(11,16,2,22,2,1,1,0,'2008-10-12 00:24:14',3),(1,16,2,22,2,1,1,0,'2008-10-12 01:15:29',3),(2,16,2,22,23,2,22,0,'2008-10-12 06:25:26',1),(13,17,1,22,1,2,0,0,'2008-10-17 14:39:58',6),(3,17,1,22,2,1,0,0,'2008-10-17 16:44:37',4),(9,17,1,22,2,5,0,0,'2008-10-17 19:49:45',3),(8,17,1,22,5,2,0,0,'2008-10-17 20:07:50',4),(7,17,1,22,2,5,0,0,'2008-10-17 18:26:39',3),(1,17,1,22,2,1,0,0,'2008-10-17 20:33:56',4),(11,17,1,22,2,1,0,0,'2008-10-17 22:23:25',4),(2,17,1,22,5,23,0,0,'2008-10-18 07:58:06',2),(3,17,2,2,1,22,2,-1,'2008-10-18 10:53:00',3),(9,17,2,22,2,23,1,0,'2008-10-18 17:03:50',5),(7,17,2,22,2,5,22,-1,'2008-10-18 17:12:32',5),(8,17,2,2,5,22,4,0,'2008-10-18 17:23:18',3),(13,17,2,2,1,5,1,-1,'2008-10-18 20:00:39',2),(11,17,2,22,2,1,22,-1,'2008-10-18 21:47:55',7),(1,17,2,22,2,1,1,0,'2008-10-18 21:48:53',7),(2,17,2,22,2,1,22,0,'2008-10-19 08:49:19',8),(13,18,1,1,2,22,0,0,'2008-10-31 12:05:12',2),(7,18,1,2,22,5,0,0,'2008-11-01 00:16:21',2),(3,18,1,2,1,22,0,0,'2008-11-01 08:04:45',3),(8,18,1,22,2,1,0,0,'2008-11-01 14:46:39',3),(9,18,1,2,22,5,0,0,'2008-11-01 14:48:13',2),(2,18,1,2,5,22,0,0,'2008-11-01 15:27:01',2),(11,18,1,22,2,5,0,0,'2008-11-01 15:57:57',1),(1,18,1,2,22,5,0,0,'2008-11-01 16:29:12',2),(3,18,2,2,11,1,2,0,'2008-11-01 18:03:40',4),(1,18,2,2,1,22,1,0,'2008-11-02 07:05:19',2),(11,18,2,2,1,22,2,1,'2008-11-02 10:18:49',5),(9,18,2,2,1,5,1,0,'2008-11-02 12:23:25',3),(13,18,2,2,1,22,1,-1,'2008-11-02 12:42:13',3),(8,18,2,2,11,1,5,1,'2008-11-02 12:44:40',5),(7,18,2,2,1,22,2,-1,'2008-11-02 16:30:21',4),(2,18,2,2,1,22,22,1,'2008-11-02 17:57:13',4); /*!40000 ALTER TABLE `tips` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `users` -- DROP TABLE IF EXISTS `users`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `users` ( `u_id` int(11) NOT NULL AUTO_INCREMENT, `u_name` char(3) NOT NULL DEFAULT '', `u_passcode` varchar(41) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL DEFAULT '', `u_pic` varchar(20) NOT NULL DEFAULT '', `u_realname` varchar(40) NOT NULL DEFAULT '', `u_nickname` varchar(20) NOT NULL DEFAULT 'not revealed', `u_email` varchar(50) NOT NULL DEFAULT '', `u_emailreminder` int(1) NOT NULL DEFAULT '0', `u_nationality` varchar(20) NOT NULL DEFAULT 'not revealed', `u_favdriver` int(11) NOT NULL DEFAULT '0', `u_since` year(4) NOT NULL DEFAULT '0000', PRIMARY KEY (`u_id`) ) ENGINE=MyISAM AUTO_INCREMENT=14 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `users` -- LOCK TABLES `users` WRITE; /*!40000 ALTER TABLE `users` DISABLE KEYS */; INSERT INTO `users` VALUES (1,'MAM','5a9361b28ee51795f1e82d9054919034','pic_MAM.gif','Markus A. Mascelli','MAM','mam@heimam.at',0,'italian',1,2006),(2,'GUE','78918cecf8926d0cada4c5bc31af87a3','pic_GUE.gif','Guenther Schmidt','GueStar','guenther.schmidt@gmail.com',0,'austrian',0,2006),(3,'ZEI','8dad7cabce9c511bd4983e8dc96ea5da','pic_ZEI.gif','Christian Zeichmann','Zeichi','christian.zeichmann@inode.at',0,'austrian',0,2007),(4,'AFG','83384431390a14889c9955938bb5604f','pic_AFG.gif','Andrea F. Grohmann','','andrea.grohmann@chello.at',0,'austrian',0,2007),(6,'JIR','8522c2ccfd6fc5d242ed16d168401fad','avatar.jpg','Juergen Iser','','j.iser@gmx.at',0,'',1,2008),(7,'KAI','e5f4d97a4961dea1184bbbe847b591f3','avatar.jpg','Roman Kailbach','Kailo','kailo@gmx.at',0,'austrian',22,2008),(8,'WOB','776ad0ef27acc0602c337dc2736f3a97','avatar.jpg','Wolfgang Boehm','WoB','wboehm@gmail.com',0,'austrian',0,2008),(9,'REG','776ad0ef27acc0602c337dc2736f3a97','avatar.jpg','Regina Boehm','','wboehm@gmail.com',0,'austrian',0,2008),(10,'ISA','3c4db9561aa2b8530d5c60014dbfbe86','pic_ISA.jpg','Ildiko K. Samu','sam','ildiko.samu@gmx.at',0,'hungarian',1,2008),(11,'MRO','cda0fd2918d19e20ac871ed79a8d2bb0','pic_MRO.jpg','Martha Rossa','RoMa','rossama@yahoo.com',0,'austrian',22,2008),(12,'MPU','48d54f43c30a27137edb383de2605a86','avatar.jpg','Michael Puehringer','','michael.puehringer@atosorigin.com',0,'',6,2008),(13,'RHA','9ced82c0515df69d4e3311f63d40ffa0','avatar.jpg','Robert Haller','','Robert.Haller@kabsi.at',0,'',0,2008); /*!40000 ALTER TABLE `users` ENABLE KEYS */; UNLOCK TABLES; -- -- Current Database: `niki_2009` -- CREATE DATABASE /*!32312 IF NOT EXISTS*/ `niki_2009` /*!40100 DEFAULT CHARACTER SET latin1 */; USE `niki_2009`; -- -- Table structure for table `drivers` -- DROP TABLE IF EXISTS `drivers`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `drivers` ( `d_id` int(11) NOT NULL AUTO_INCREMENT, `d_lname` varchar(20) NOT NULL DEFAULT '', `d_fname` varchar(20) NOT NULL DEFAULT '', PRIMARY KEY (`d_id`) ) ENGINE=MyISAM AUTO_INCREMENT=39 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `drivers` -- LOCK TABLES `drivers` WRITE; /*!40000 ALTER TABLE `drivers` DISABLE KEYS */; INSERT INTO `drivers` VALUES (1,'HAMILTON','Lewis'),(2,'KOVALAINEN','Heikki'),(3,'MASSA','Felipe'),(4,'RAIKKONEN','Kimi'),(5,'KUBICA','Robert'),(6,'HEIDFELD','Nick'),(7,'ALONSO','Fernando'),(8,'PIQUET','Nelson Jr.'),(9,'TRULLI','Jarno'),(10,'GLOCK','Timo'),(11,'BOURDAIS','Sebastien'),(12,'BUEMI','Sebastien'),(14,'WEBBER','Mark'),(15,'VETTEL','Sebastian'),(16,'ROSBERG','Nico'),(17,'NAKAJIMA','Kazuki'),(18,'SUTIL','Adrian'),(19,'FISICHELLA','Giancarlo'),(20,'BUTTON','Jenson'),(21,'BARRICHELLO','Rubens'),(22,'DE LA ROSA','Pedro'),(23,'PAFFETT','Gary'),(24,'BADOER','Luca'),(25,'GENE','Marc'),(26,'KLIEN','Christian'),(27,'GROSJEAN','Romain'),(28,'KOBAYASHI','Kamui'),(29,'HUELKENBERG','Nico'),(30,'LIUZZI','Vitantonio'),(31,'DAVIDSON','Anthony'),(32,'HARTLEY','Brendon'),(33,'ALGUERSUARI','Jaime'),(34,'SCHUMACHER','Michael'); /*!40000 ALTER TABLE `drivers` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `events` -- DROP TABLE IF EXISTS `events`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `events` ( `e_id` int(11) NOT NULL AUTO_INCREMENT, `e_type` varchar(20) NOT NULL DEFAULT '', PRIMARY KEY (`e_id`) ) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `events` -- LOCK TABLES `events` WRITE; /*!40000 ALTER TABLE `events` DISABLE KEYS */; INSERT INTO `events` VALUES (1,'QUALIFYING'),(2,'RACE'); /*!40000 ALTER TABLE `events` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `gps` -- DROP TABLE IF EXISTS `gps`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `gps` ( `g_id` int(11) NOT NULL AUTO_INCREMENT, `g_name` varchar(40) NOT NULL DEFAULT '', `g_datetime_q` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `g_datetime_r` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `g_flag` varchar(20) NOT NULL DEFAULT '', `g_circuit` varchar(40) NOT NULL DEFAULT '', PRIMARY KEY (`g_id`) ) ENGINE=MyISAM AUTO_INCREMENT=34 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `gps` -- LOCK TABLES `gps` WRITE; /*!40000 ALTER TABLE `gps` DISABLE KEYS */; INSERT INTO `gps` VALUES (1,'AUSTRALIA (Melbourne)','2009-03-28 07:00:00','2009-03-29 08:00:00','flag_AUSTRALIA.gif','circuit_AUSTRALIA.gif'),(2,'MALAYSIA (Sepang)','2009-04-04 11:00:00','2009-04-05 11:00:00','flag_MALAYSIA.gif','circuit_MALAYSIA.gif'),(3,'CHINA (Shanghai)','2009-04-18 08:00:00','2009-04-19 09:00:00','flag_CHINA.gif','circuit_CHINA.gif'),(4,'BAHRAIN (Sakhir)','2009-04-25 13:00:00','2009-04-26 14:00:00','flag_BAHRAIN.gif','circuit_BAHRAIN.gif'),(5,'SPAIN (Barcelona)','2009-05-09 14:00:00','2009-05-10 14:00:00','flag_SPAIN.gif','circuit_SPAIN_(Barcelona).gif'),(6,'MONACO (Monte Carlo)','2009-05-23 14:00:00','2009-05-24 14:00:00','flag_MONACO.gif','circuit_MONACO.gif'),(7,'TURKEY (Istanbul)','2009-06-06 13:00:00','2009-06-07 14:00:00','flag_TURKEY.gif','circuit_TURKEY.gif'),(8,'GREAT BRITAIN (Silverstone)','2009-06-20 14:00:00','2009-06-21 14:00:00','flag_UK.gif','circuit_UK.gif'),(9,'GERMANY (Nuerburgring)','2009-07-11 14:00:00','2009-07-12 14:00:00','flag_GERMANY.gif','circuit_GERMANY_(Nuerburgring).gif'),(10,'HUNGARY (Budapest)','2009-07-25 14:00:00','2009-07-26 14:00:00','flag_HUNGARY.gif','circuit_HUNGARY.gif'),(11,'EUROPE (Valencia)','2009-08-22 14:00:00','2009-08-23 14:00:00','flag_EUROPE.gif','circuit_EUROPE_(Valencia).gif'),(12,'BELGIUM (Spa)','2009-08-29 14:00:00','2009-08-30 14:00:00','flag_BELGIUM.gif','circuit_BELGIUM.gif'),(13,'ITALY (Monza)','2009-09-12 14:00:00','2009-09-13 14:00:00','flag_ITALY.gif','circuit_ITALY.gif'),(14,'SINGAPORE (Singapore)','2009-09-26 16:00:00','2009-09-27 14:00:00','flag_SINGAPORE.gif','circuit_SINGAPORE.gif'),(15,'JAPAN (Suzuka)','2009-10-03 07:00:00','2009-10-04 07:00:00','flag_JAPAN.gif','circuit_JAPAN_(Suzuka).gif'),(16,'BRAZIL (Sao Paulo)','2009-10-17 19:00:00','2009-10-18 18:00:00','flag_BRAZIL.gif','circuit_BRAZIL.gif'),(17,'UNITED ARAB EMIRATES (Abu Dhabi)','2009-10-31 14:00:00','2009-11-01 14:00:00','flag_UAE.gif','circuit_UAE.gif'); /*!40000 ALTER TABLE `gps` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `results` -- DROP TABLE IF EXISTS `results`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `results` ( `r_g_id` int(11) NOT NULL DEFAULT '0', `r_e_id` int(11) NOT NULL DEFAULT '0', `r_d_id_p1` int(11) NOT NULL DEFAULT '0', `r_d_id_p2` int(11) NOT NULL DEFAULT '0', `r_d_id_p3` int(11) NOT NULL DEFAULT '0', `r_fl` int(11) NOT NULL DEFAULT '0', `r_sc` int(11) NOT NULL DEFAULT '-1', PRIMARY KEY (`r_g_id`,`r_e_id`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `results` -- LOCK TABLES `results` WRITE; /*!40000 ALTER TABLE `results` DISABLE KEYS */; INSERT INTO `results` VALUES (1,1,20,21,15,0,-1),(1,2,20,21,9,16,1),(2,1,20,9,15,0,-1),(2,2,20,6,10,20,1),(3,1,15,7,14,0,-1),(3,2,15,14,20,21,1),(4,1,9,10,15,0,-1),(4,2,20,15,9,9,0),(5,1,20,15,21,0,-1),(5,2,20,21,14,21,1),(6,1,20,4,21,0,-1),(6,2,20,21,4,3,0),(7,1,15,20,21,0,-1),(7,2,20,14,15,20,0),(8,1,15,21,14,0,-1),(8,2,15,14,21,15,0),(9,1,14,21,20,0,-1),(9,2,14,15,3,7,0),(10,1,7,15,14,0,-1),(10,2,1,4,14,14,0),(11,1,1,2,21,0,-1),(11,2,21,1,4,10,0),(12,1,19,9,6,0,-1),(12,2,4,19,15,15,1),(13,1,1,18,4,0,-1),(13,2,21,20,4,18,1),(14,1,1,15,16,0,-1),(14,2,1,10,7,7,1),(15,1,15,9,1,0,-1),(15,2,15,9,1,14,1),(16,1,21,14,18,0,-1),(16,2,14,5,1,14,1),(17,1,1,15,14,0,-1),(17,2,15,14,20,15,0); /*!40000 ALTER TABLE `results` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tips` -- DROP TABLE IF EXISTS `tips`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `tips` ( `t_u_id` int(11) NOT NULL DEFAULT '0', `t_g_id` int(11) NOT NULL DEFAULT '0', `t_e_id` int(11) NOT NULL DEFAULT '0', `t_d_id_p1` int(11) NOT NULL DEFAULT '0', `t_d_id_p2` int(11) NOT NULL DEFAULT '0', `t_d_id_p3` int(11) NOT NULL DEFAULT '0', `t_fl` int(11) NOT NULL DEFAULT '0', `t_sc` int(11) NOT NULL DEFAULT '0', `t_timestamp` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `t_score` int(11) NOT NULL DEFAULT '0', PRIMARY KEY (`t_u_id`,`t_g_id`,`t_e_id`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tips` -- LOCK TABLES `tips` WRITE; /*!40000 ALTER TABLE `tips` DISABLE KEYS */; INSERT INTO `tips` VALUES (9,1,1,16,21,17,0,0,'2009-03-27 12:12:15',2),(8,1,1,16,21,4,0,0,'2009-03-27 12:29:24',2),(13,1,1,20,4,21,0,0,'2009-03-27 14:50:53',3),(3,1,1,20,16,21,0,0,'2009-03-27 17:14:11',3),(7,1,1,4,16,21,0,0,'2009-03-27 18:37:55',1),(1,1,1,4,21,3,0,0,'2009-03-27 19:37:59',2),(10,1,1,4,3,21,0,0,'2009-03-27 21:42:18',1),(11,1,1,4,1,2,0,0,'2009-03-27 21:53:49',0),(12,1,1,4,1,3,0,0,'2009-03-27 22:27:49',0),(3,1,2,21,20,15,21,-1,'2009-03-28 09:30:16',2),(1,1,2,21,20,15,21,1,'2009-03-28 15:03:03',3),(7,1,2,20,15,21,20,-1,'2009-03-28 17:13:40',3),(9,1,2,21,20,16,10,-1,'2009-03-28 19:23:36',2),(8,1,2,16,20,5,16,1,'2009-03-28 19:26:54',3),(13,1,2,20,21,5,20,-1,'2009-03-28 22:10:28',4),(11,1,2,21,15,5,21,0,'2009-03-28 22:15:28',0),(12,1,2,20,9,5,20,-1,'2009-03-28 22:21:07',3),(10,1,2,20,15,3,20,-1,'2009-03-28 22:26:16',2),(2,1,2,20,21,15,21,0,'2009-03-29 07:50:37',3),(14,2,2,21,20,4,20,0,'2009-04-03 09:44:06',1),(14,2,1,20,21,4,0,0,'2009-04-03 09:44:37',2),(12,2,1,20,5,1,0,0,'2009-04-03 11:47:03',2),(13,2,1,20,4,16,0,0,'2009-04-03 13:01:42',2),(3,2,1,20,21,4,0,0,'2009-04-03 16:39:07',2),(9,2,1,3,20,4,0,0,'2009-04-03 20:08:48',1),(8,2,1,3,16,20,0,0,'2009-04-03 20:11:15',1),(4,2,1,20,16,3,0,0,'2009-04-03 22:03:55',2),(7,2,1,4,3,15,0,0,'2009-04-03 23:39:28',2),(1,2,1,4,21,3,0,0,'2009-04-04 10:34:03',0),(11,2,1,3,14,9,0,0,'2009-04-04 10:34:36',1),(2,2,1,3,20,16,0,0,'2009-04-04 10:35:59',1),(10,2,1,4,15,3,0,0,'2009-04-04 10:37:26',1),(3,2,2,20,9,4,20,-1,'2009-04-04 14:27:34',3),(9,2,2,20,5,16,21,-1,'2009-04-04 18:33:21',2),(8,2,2,9,20,16,20,1,'2009-04-04 21:24:20',3),(7,2,2,20,15,21,20,-1,'2009-04-04 22:31:08',3),(4,2,2,9,20,16,20,1,'2009-04-05 07:32:20',3),(13,2,2,20,9,5,15,-1,'2009-04-05 08:06:45',2),(2,2,2,20,9,21,21,1,'2009-04-05 10:20:57',3),(1,2,2,20,9,5,21,0,'2009-04-05 10:31:11',1),(11,2,2,20,9,16,20,1,'2009-04-05 10:33:32',4),(12,2,2,20,9,5,9999,-1,'2009-04-05 10:34:59',2),(10,2,2,20,5,9,16,-1,'2009-04-05 10:36:56',2),(13,3,1,20,21,9,0,0,'2009-04-17 14:16:27',0),(3,3,1,20,21,9,0,0,'2009-04-17 16:26:12',0),(1,3,1,20,21,15,0,0,'2009-04-17 22:43:44',1),(11,3,1,20,21,16,0,0,'2009-04-17 22:44:24',0),(8,3,1,20,15,16,0,0,'2009-04-17 22:49:07',1),(9,3,1,20,21,14,0,0,'2009-04-17 22:49:40',2),(7,3,1,20,16,21,0,0,'2009-04-17 23:47:26',0),(10,3,1,15,20,9,0,0,'2009-04-18 00:24:17',2),(12,3,1,20,9,21,0,0,'2009-04-18 00:25:22',0),(2,3,1,20,9,21,0,0,'2009-04-18 07:52:47',0),(3,3,2,14,20,21,20,-1,'2009-04-18 10:10:30',2),(1,3,2,15,20,21,16,0,'2009-04-18 12:38:36',2),(8,3,2,15,16,20,4,-1,'2009-04-18 18:13:19',4),(9,3,2,21,20,16,15,-1,'2009-04-18 18:15:23',1),(7,3,2,15,7,20,15,-1,'2009-04-18 18:39:31',4),(13,3,2,7,9,20,16,1,'2009-04-18 18:54:24',3),(11,3,2,15,20,21,7,0,'2009-04-18 23:10:34',2),(4,3,2,7,15,20,7,1,'2009-04-19 07:20:39',4),(2,3,2,20,15,21,20,1,'2009-04-19 08:50:15',3),(10,3,2,15,20,21,15,1,'2009-04-19 08:53:59',4),(12,3,2,20,15,21,14,1,'2009-04-19 08:54:49',3),(14,4,1,21,15,20,0,0,'2009-04-24 17:45:12',1),(14,4,2,21,10,15,20,1,'2009-04-24 17:45:45',0),(7,4,1,15,20,14,0,0,'2009-04-24 19:15:56',1),(13,4,1,20,15,9,0,0,'2009-04-24 21:38:14',2),(3,4,1,20,15,9,0,0,'2009-04-25 08:49:52',2),(9,4,1,15,14,20,0,0,'2009-04-25 10:02:13',1),(8,4,1,15,16,21,0,0,'2009-04-25 10:02:40',1),(4,4,1,16,20,1,0,0,'2009-04-25 10:56:38',0),(1,4,1,20,21,15,0,0,'2009-04-25 12:15:11',2),(2,4,1,9,20,3,0,0,'2009-04-25 12:42:30',2),(12,4,1,20,14,21,0,0,'2009-04-25 12:44:04',0),(11,4,1,15,20,1,0,0,'2009-04-25 12:47:02',1),(10,4,1,15,20,21,0,0,'2009-04-25 12:48:38',1),(3,4,2,15,9,20,15,-1,'2009-04-25 16:18:19',3),(9,4,2,15,20,9,16,-1,'2009-04-25 18:11:24',4),(8,4,2,1,21,10,9,0,'2009-04-25 18:12:05',2),(7,4,2,15,9,1,15,-1,'2009-04-26 04:04:48',2),(1,4,2,15,20,9,10,0,'2009-04-26 07:11:00',5),(4,4,2,9,21,15,15,1,'2009-04-26 07:59:04',1),(13,4,2,15,20,10,15,-1,'2009-04-26 08:46:27',2),(2,4,2,15,9,20,15,0,'2009-04-26 12:42:55',4),(11,4,2,15,20,9,9,0,'2009-04-26 13:09:55',6),(12,4,2,15,10,20,14,-1,'2009-04-26 13:37:30',2),(10,4,2,15,20,9,15,-1,'2009-04-26 13:39:03',4),(9,5,1,20,14,16,0,0,'2009-05-08 19:56:33',2),(8,5,1,20,7,17,0,0,'2009-05-08 19:57:25',2),(4,5,1,5,20,15,0,0,'2009-05-08 22:31:29',2),(7,5,1,20,21,10,0,0,'2009-05-08 22:55:23',3),(13,5,1,20,21,16,0,0,'2009-05-09 10:19:36',3),(3,5,1,20,15,9,0,0,'2009-05-09 10:29:56',4),(11,5,1,20,4,1,0,0,'2009-05-09 13:23:51',2),(10,5,1,20,4,3,0,0,'2009-05-09 13:35:53',2),(12,5,1,20,4,3,0,0,'2009-05-09 13:36:15',2),(1,5,1,20,9,15,0,0,'2009-05-09 13:39:20',3),(2,5,1,20,3,9,0,0,'2009-05-09 13:56:19',2),(7,5,2,20,15,21,20,-1,'2009-05-09 15:30:16',3),(3,5,2,20,15,21,15,-1,'2009-05-09 17:24:27',3),(9,5,2,20,15,14,15,0,'2009-05-09 20:01:02',3),(8,5,2,20,21,15,21,-1,'2009-05-09 20:01:30',5),(1,5,2,20,15,3,20,0,'2009-05-10 00:03:01',1),(11,5,2,20,15,21,20,0,'2009-05-10 00:34:30',2),(4,5,2,20,3,15,20,0,'2009-05-10 06:28:29',1),(13,5,2,15,20,3,15,-1,'2009-05-10 09:01:09',1),(10,5,2,15,20,3,3,-1,'2009-05-10 11:42:39',1),(12,5,2,20,15,21,15,-1,'2009-05-10 11:43:37',3),(2,5,2,15,20,21,9999,-1,'2009-05-10 12:52:18',2),(15,6,2,15,20,14,15,1,'2009-05-11 15:39:10',0),(15,6,1,20,14,15,0,0,'2009-05-11 15:39:35',2),(13,6,1,15,20,3,0,0,'2009-05-22 09:32:50',1),(7,6,1,20,21,1,0,0,'2009-05-22 22:14:12',3),(4,6,1,3,21,20,0,0,'2009-05-23 07:37:10',2),(8,6,1,16,21,1,0,0,'2009-05-23 07:49:12',1),(9,6,1,20,3,21,0,0,'2009-05-23 07:50:15',4),(3,6,1,20,21,15,0,0,'2009-05-23 12:49:43',3),(12,6,1,9,15,3,0,0,'2009-05-23 13:17:46',0),(10,6,1,15,14,3,0,0,'2009-05-23 13:24:45',0),(1,6,1,21,15,20,0,0,'2009-05-23 13:33:09',2),(11,6,1,21,3,20,0,0,'2009-05-23 13:33:59',2),(2,6,1,20,21,16,0,0,'2009-05-23 13:55:06',3),(9,6,2,20,21,15,15,-1,'2009-05-23 16:16:15',4),(8,6,2,20,21,4,4,1,'2009-05-23 16:16:53',5),(3,6,2,20,4,21,15,-1,'2009-05-23 18:08:01',4),(13,6,2,20,4,21,20,-1,'2009-05-24 11:16:34',4),(1,6,2,20,21,4,20,1,'2009-05-24 12:57:07',5),(11,6,2,20,21,4,4,1,'2009-05-24 12:57:48',5),(10,6,2,21,20,4,21,1,'2009-05-24 13:15:49',3),(4,6,2,20,15,3,20,1,'2009-05-24 13:39:43',1),(12,6,2,20,15,21,9999,-1,'2009-05-24 13:44:08',3),(2,6,2,20,21,4,20,1,'2009-05-24 13:48:42',5),(14,7,2,15,20,6,20,0,'2009-06-05 09:21:10',4),(14,7,1,20,21,15,0,0,'2009-06-05 09:21:57',3),(15,7,1,20,4,15,0,0,'2009-06-05 16:13:26',2),(7,7,1,20,21,4,0,0,'2009-06-05 16:49:21',2),(13,7,1,15,20,21,0,0,'2009-06-05 22:09:11',6),(3,7,1,20,3,15,0,0,'2009-06-06 11:37:17',2),(10,7,1,3,9,20,0,0,'2009-06-06 12:21:21',1),(2,7,1,3,21,20,0,0,'2009-06-06 12:39:18',2),(12,7,1,20,3,15,0,0,'2009-06-06 12:55:29',2),(9,7,1,20,15,21,0,0,'2009-06-06 09:00:00',4),(3,7,2,20,15,21,15,-1,'2009-06-06 17:15:58',3),(9,7,2,20,21,15,20,-1,'2009-06-06 19:12:00',5),(7,7,2,20,15,14,20,-1,'2009-06-06 22:55:35',5),(8,7,2,20,9,15,3,-1,'2009-06-07 09:40:37',4),(13,7,2,15,20,21,15,0,'2009-06-07 10:06:38',3),(11,7,2,15,20,4,3,-1,'2009-06-07 12:22:18',2),(12,7,2,15,20,21,14,-1,'2009-06-07 12:48:40',2),(10,7,2,20,15,14,14,0,'2009-06-07 12:50:45',5),(1,7,2,15,20,14,4,0,'2009-06-07 13:26:51',4),(2,7,2,20,15,21,21,0,'2009-06-07 13:57:22',4),(14,8,1,4,20,21,0,0,'2009-06-19 10:55:12',1),(14,8,2,20,15,1,20,0,'2009-06-19 10:56:16',2),(9,8,1,15,20,14,0,0,'2009-06-19 21:00:01',4),(7,8,1,15,20,14,0,0,'2009-06-19 21:04:19',4),(13,8,1,20,15,14,0,0,'2009-06-20 06:37:20',3),(4,8,1,15,20,14,0,0,'2009-06-20 08:51:13',4),(11,8,1,20,15,14,0,0,'2009-06-20 09:24:15',3),(1,8,1,15,20,14,0,0,'2009-06-20 09:25:00',4),(3,8,1,15,20,14,0,0,'2009-06-20 09:36:53',4),(8,8,1,16,15,9,0,0,'2009-06-20 12:30:16',1),(10,8,1,15,20,14,0,0,'2009-06-20 13:44:49',4),(12,8,1,15,20,14,0,0,'2009-06-20 13:45:54',4),(2,8,1,15,20,9,0,0,'2009-06-20 13:57:23',2),(15,8,1,15,20,4,0,0,'2009-06-20 13:59:58',2),(7,8,2,15,14,20,15,0,'2009-06-20 15:57:12',6),(3,8,2,15,14,21,21,0,'2009-06-20 17:17:26',7),(1,8,2,15,14,21,15,0,'2009-06-20 18:29:17',8),(9,8,2,14,20,15,20,-1,'2009-06-20 20:19:03',2),(11,8,2,15,14,20,15,0,'2009-06-20 23:17:35',6),(10,8,2,15,14,20,14,-1,'2009-06-21 10:48:05',4),(4,8,2,15,14,21,15,1,'2009-06-21 10:54:09',6),(12,8,2,15,21,20,20,-1,'2009-06-21 10:58:54',3),(13,8,2,15,14,20,15,-1,'2009-06-21 11:14:25',5),(15,8,2,15,14,9,20,1,'2009-06-21 12:47:25',3),(8,8,2,14,15,9,14,1,'2009-06-21 12:59:53',1),(2,8,2,15,14,21,15,0,'2009-06-21 13:38:31',8),(16,9,1,20,15,21,0,0,'2009-06-22 12:11:54',2),(7,9,1,15,14,20,0,0,'2009-07-10 17:10:17',3),(8,9,1,15,20,14,0,0,'2009-07-11 09:45:27',2),(9,9,1,15,14,20,0,0,'2009-07-11 09:46:25',3),(12,9,1,15,3,14,0,0,'2009-07-11 12:14:10',1),(10,9,1,15,14,3,0,0,'2009-07-11 12:17:26',1),(3,9,1,15,20,14,0,0,'2009-07-11 12:20:39',2),(13,9,1,15,14,20,0,0,'2009-07-11 11:49:21',3),(1,9,1,15,20,14,0,0,'2009-07-11 12:56:26',2),(11,9,1,20,15,1,0,0,'2009-07-11 12:57:32',1),(3,9,2,14,20,15,15,-1,'2009-07-11 17:14:32',3),(9,9,2,20,21,15,20,0,'2009-07-11 20:26:08',2),(7,9,2,14,20,15,14,1,'2009-07-11 22:10:59',2),(1,9,2,14,20,15,14,1,'2009-07-11 22:58:49',2),(8,9,2,14,15,20,1,-1,'2009-07-12 08:37:05',4),(13,9,2,14,15,20,15,-1,'2009-07-12 09:14:50',4),(4,9,2,20,21,14,20,1,'2009-07-12 11:24:31',0),(10,9,2,14,15,20,14,-1,'2009-07-12 12:23:17',4),(12,9,2,14,15,20,14,-1,'2009-07-12 12:24:16',4),(11,9,2,15,14,20,14,0,'2009-07-12 13:26:03',3),(2,9,2,14,15,21,15,0,'2009-07-12 13:50:19',5),(16,10,1,14,15,21,0,0,'2009-07-13 11:22:16',3),(16,10,2,15,20,9,20,0,'2009-07-13 11:23:20',1),(7,10,1,14,20,2,0,0,'2009-07-24 18:07:27',1),(13,10,1,20,16,15,0,0,'2009-07-24 19:10:50',1),(3,10,1,20,15,14,0,0,'2009-07-25 09:29:30',4),(10,10,1,14,15,21,0,0,'2009-07-25 10:45:00',3),(12,10,1,14,3,15,0,0,'2009-07-25 10:45:49',2),(8,10,1,1,2,16,0,0,'2009-07-25 12:15:04',0),(9,10,1,14,1,9,0,0,'2009-07-25 12:16:02',1),(1,10,1,14,15,1,0,0,'2009-07-25 12:24:04',3),(11,10,1,1,16,20,0,0,'2009-07-25 13:28:50',0),(2,10,1,1,14,15,0,0,'2009-07-25 13:52:00',2),(3,10,2,15,14,7,20,0,'2009-07-25 16:22:49',2),(9,10,2,14,15,1,1,-1,'2009-07-25 17:39:23',2),(7,10,2,15,14,1,15,0,'2009-07-25 17:41:14',3),(1,10,2,15,14,1,15,0,'2009-07-26 07:52:08',3),(13,10,2,15,14,7,0,-1,'2009-07-26 10:51:49',1),(10,10,2,15,14,20,14,-1,'2009-07-26 12:43:49',2),(12,10,2,15,14,1,7,-1,'2009-07-26 12:46:04',2),(4,10,2,7,15,14,15,1,'2009-07-26 13:05:49',1),(8,10,2,14,15,16,7,0,'2009-07-26 13:35:24',2),(11,10,2,15,14,1,7,1,'2009-07-26 13:44:42',1),(2,10,2,15,14,7,15,0,'2009-07-26 13:53:21',2),(16,11,2,14,4,34,21,1,'2009-07-30 10:36:51',0),(16,11,1,20,14,15,0,0,'2009-07-30 10:37:03',0),(14,11,1,14,20,15,0,0,'2009-08-21 15:36:32',0),(14,11,2,15,14,21,15,0,'2009-08-21 15:37:31',2),(7,11,1,15,14,20,0,0,'2009-08-21 15:40:59',0),(9,11,1,21,20,7,0,0,'2009-08-22 08:29:45',1),(13,11,1,7,20,15,0,0,'2009-08-22 10:04:49',0),(3,11,1,7,1,20,0,0,'2009-08-22 12:52:10',1),(8,11,1,17,5,2,0,0,'2009-08-22 13:02:56',1),(1,11,1,1,14,20,0,0,'2009-08-22 13:34:57',2),(11,11,1,20,21,1,0,0,'2009-08-22 13:43:52',2),(2,11,1,7,20,1,0,0,'2009-08-22 13:57:13',1),(3,11,2,1,2,20,14,-1,'2009-08-22 15:57:36',1),(7,11,2,1,2,15,1,0,'2009-08-22 20:20:26',2),(9,11,2,1,20,2,1,-1,'2009-08-22 20:44:45',1),(13,11,2,1,2,15,1,1,'2009-08-22 20:47:39',0),(1,11,2,1,21,4,1,0,'2009-08-23 12:07:20',5),(8,11,2,1,21,20,2,0,'2009-08-23 12:24:44',3),(11,11,2,1,15,21,1,-1,'2009-08-23 12:29:07',2),(4,11,2,1,21,15,21,0,'2009-08-23 12:35:18',3),(12,11,2,1,21,20,1,-1,'2009-08-23 13:50:43',2),(10,11,2,21,1,4,16,-1,'2009-08-23 13:53:29',6),(2,11,2,1,21,20,21,1,'2009-08-23 13:58:31',1),(16,12,1,21,1,14,0,0,'2009-08-24 11:09:04',0),(16,12,2,1,21,20,21,1,'2009-08-24 11:09:44',1),(14,12,2,15,21,4,15,0,'2009-08-26 15:17:46',2),(14,12,1,21,15,14,0,0,'2009-08-26 15:18:16',0),(13,12,1,4,15,1,0,0,'2009-08-28 21:11:46',0),(3,12,1,15,14,1,0,0,'2009-08-29 09:36:50',0),(9,12,1,9,1,10,0,0,'2009-08-29 12:24:53',1),(2,12,1,15,1,14,0,0,'2009-08-29 12:35:20',0),(8,12,1,1,20,4,0,0,'2009-08-29 12:38:13',0),(1,12,1,1,20,4,0,0,'2009-08-29 13:01:34',0),(11,12,1,1,20,15,0,0,'2009-08-29 13:04:57',0),(10,12,1,15,4,1,0,0,'2009-08-29 13:49:37',0),(12,12,1,15,4,1,0,0,'2009-08-29 13:50:15',0),(3,12,2,21,4,9,14,-1,'2009-08-29 18:37:13',1),(7,12,2,21,6,4,21,-1,'2009-08-29 21:19:06',1),(1,12,2,6,9,4,10,0,'2009-08-30 07:05:45',0),(13,12,2,9,6,4,15,-1,'2009-08-30 10:41:04',2),(9,12,2,9,21,4,4,-1,'2009-08-30 10:48:57',1),(8,12,2,9,5,21,19,0,'2009-08-30 12:19:14',-1),(11,12,2,6,5,4,4,0,'2009-08-30 13:31:20',0),(12,12,2,21,4,9,4,-1,'2009-08-30 13:32:06',1),(10,12,2,4,1,15,21,-1,'2009-08-30 13:34:22',4),(2,12,2,4,9,6,19,0,'2009-08-30 13:49:04',1),(16,13,1,4,14,15,0,0,'2009-08-31 11:11:42',1),(16,13,2,4,15,14,15,1,'2009-08-31 11:12:14',2),(3,13,1,1,15,4,0,0,'2009-09-12 09:56:30',4),(9,13,1,1,15,10,0,0,'2009-09-12 10:57:25',2),(7,13,1,1,2,18,0,0,'2009-09-12 11:26:13',3),(14,13,1,21,19,1,0,0,'2009-09-12 12:24:56',1),(14,13,2,4,15,21,15,0,'2009-09-12 12:25:33',1),(13,13,1,4,7,1,0,0,'2009-09-12 12:31:19',2),(8,13,1,6,20,1,0,0,'2009-09-12 12:40:20',1),(11,13,1,1,20,21,0,0,'2009-09-12 13:19:58',2),(1,13,1,1,18,20,0,0,'2009-09-12 13:33:53',4),(2,13,1,18,20,1,0,0,'2009-09-12 13:57:50',2),(7,13,2,1,4,18,1,-1,'2009-09-12 16:10:03',1),(13,13,2,1,4,2,4,-1,'2009-09-12 20:24:34',1),(11,13,2,1,4,2,4,-1,'2009-09-12 22:28:30',1),(1,13,2,1,4,2,4,1,'2009-09-13 08:50:48',2),(9,13,2,1,2,21,18,-1,'2009-09-13 09:33:22',2),(3,13,2,1,4,20,21,0,'2009-09-13 10:37:31',1),(4,13,2,1,4,21,4,1,'2009-09-13 13:09:08',3),(8,13,2,1,4,20,1,1,'2009-09-13 13:53:51',3),(13,14,1,1,15,20,0,0,'2009-09-26 10:07:27',4),(4,14,1,15,7,6,0,0,'2009-09-26 10:40:43',1),(9,14,1,15,20,2,0,0,'2009-09-26 12:24:46',1),(1,14,1,15,1,21,0,0,'2009-09-26 14:20:41',2),(11,14,1,1,15,5,0,0,'2009-09-26 14:22:12',4),(8,14,1,1,15,2,0,0,'2009-09-26 14:28:24',4),(3,14,1,1,15,2,0,0,'2009-09-26 14:44:06',4),(10,14,1,1,15,21,0,0,'2009-09-26 15:35:39',4),(12,14,1,1,15,21,0,0,'2009-09-26 15:55:52',4),(7,14,2,1,15,14,1,1,'2009-09-26 17:41:47',3),(3,14,2,1,15,14,14,1,'2009-09-26 18:50:16',3),(9,14,2,1,15,14,16,1,'2009-09-26 20:07:49',3),(4,14,2,1,16,15,1,1,'2009-09-27 08:21:37',3),(1,14,2,1,14,15,7,1,'2009-09-27 08:38:18',4),(13,14,2,1,15,16,15,-1,'2009-09-27 08:42:22',2),(11,14,2,1,15,14,1,-1,'2009-09-27 11:35:23',2),(8,14,2,1,15,21,1,1,'2009-09-27 13:37:40',3),(10,14,2,1,16,4,16,-1,'2009-09-27 13:51:56',2),(12,14,2,1,15,16,16,1,'2009-09-27 13:54:04',3),(16,15,1,20,15,7,0,0,'2009-10-02 14:14:17',1),(16,15,2,14,1,6,14,0,'2009-10-02 14:15:19',1),(13,15,1,1,15,16,0,0,'2009-10-02 14:41:49',2),(14,15,2,20,1,15,20,0,'2009-10-02 16:30:25',1),(14,15,1,20,15,4,0,0,'2009-10-02 16:30:51',1),(9,15,1,15,1,18,0,0,'2009-10-02 20:29:48',3),(11,15,1,1,21,15,0,0,'2009-10-02 21:18:19',2),(3,15,1,1,14,15,0,0,'2009-10-02 22:02:35',2),(12,15,1,15,21,9,0,0,'2009-10-03 06:18:41',3),(10,15,1,15,21,9,0,0,'2009-10-03 06:19:24',3),(1,15,1,15,4,16,0,0,'2009-10-03 06:38:09',2),(8,15,1,15,1,12,0,0,'2009-10-03 06:59:08',3),(3,15,2,15,1,9,20,-1,'2009-10-03 11:14:16',4),(7,15,2,15,1,18,15,-1,'2009-10-03 11:45:05',3),(11,15,2,15,1,21,15,1,'2009-10-03 19:10:26',4),(9,15,2,15,1,4,18,1,'2009-10-03 19:13:12',4),(1,15,2,15,1,4,15,1,'2009-10-03 19:25:11',4),(13,15,2,15,1,4,15,1,'2009-10-03 19:52:28',4),(8,15,2,9,15,21,9,1,'2009-10-03 21:25:08',3),(12,15,2,15,1,4,15,-1,'2009-10-04 06:46:34',3),(10,15,2,15,1,4,15,-1,'2009-10-04 06:48:09',3),(16,16,1,15,1,14,0,0,'2009-10-05 09:32:49',1),(16,16,2,15,1,20,15,0,'2009-10-05 09:33:20',0),(11,16,1,1,21,15,0,0,'2009-10-16 16:30:14',1),(13,16,1,14,15,1,0,0,'2009-10-16 20:55:52',1),(7,16,1,21,15,1,0,0,'2009-10-16 23:08:59',2),(7,16,2,21,14,9,15,-1,'2009-10-16 23:09:40',1),(9,16,1,21,14,15,0,0,'2009-10-17 14:56:32',4),(3,16,1,15,1,14,0,0,'2009-10-17 17:54:04',1),(4,16,1,14,15,21,0,0,'2009-10-17 18:41:32',2),(10,16,1,15,21,16,0,0,'2009-10-17 18:44:46',1),(12,16,1,15,21,16,0,0,'2009-10-17 18:45:53',1),(1,16,1,15,16,18,0,0,'2009-10-17 18:48:03',2),(4,16,2,21,14,4,14,1,'2009-10-18 09:11:46',3),(3,16,2,21,14,4,15,1,'2009-10-18 10:37:41',2),(13,16,2,21,14,18,15,-1,'2009-10-18 16:21:06',1),(10,16,2,14,21,4,14,-1,'2009-10-18 16:35:25',3),(12,16,2,21,14,4,14,-1,'2009-10-18 16:40:01',2),(9,16,2,21,14,5,15,1,'2009-10-18 16:50:35',3),(8,16,2,21,14,12,21,1,'2009-10-18 16:52:09',2),(1,16,2,21,4,9,14,1,'2009-10-18 17:02:01',2),(7,17,1,34,3,20,0,0,'2009-10-30 12:13:05',0),(7,17,2,34,20,3,34,-1,'2009-10-30 12:14:28',1),(13,17,1,14,2,16,0,0,'2009-10-30 19:40:06',1),(9,17,1,1,21,2,0,0,'2009-10-31 08:32:47',2),(8,17,1,21,18,14,0,0,'2009-10-31 08:33:24',2),(11,17,1,1,20,15,0,0,'2009-10-31 11:56:23',3),(3,17,1,1,20,2,0,0,'2009-10-31 12:47:54',2),(1,17,1,1,20,15,0,0,'2009-10-31 13:18:42',3),(10,17,1,1,20,21,0,0,'2009-10-31 13:54:16',2),(12,17,1,1,20,21,0,0,'2009-10-31 13:55:08',2),(3,17,2,1,14,21,1,0,'2009-10-31 18:54:27',3),(9,17,2,1,21,14,1,-1,'2009-10-31 19:32:04',1),(11,17,2,1,15,14,14,-1,'2009-10-31 22:40:07',2),(1,17,2,1,15,14,14,-1,'2009-11-01 08:17:21',2),(13,17,2,1,15,14,1,0,'2009-11-01 08:32:02',3),(8,17,2,1,14,21,1,-1,'2009-11-01 11:55:30',2),(10,17,2,15,1,14,14,-1,'2009-11-01 13:47:08',3),(12,17,2,15,1,14,14,-1,'2009-11-01 13:48:11',3),(4,17,2,1,14,15,1,1,'2009-11-01 13:54:32',2); /*!40000 ALTER TABLE `tips` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `users` -- DROP TABLE IF EXISTS `users`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `users` ( `u_id` int(11) NOT NULL AUTO_INCREMENT, `u_name` char(3) NOT NULL DEFAULT '', `u_passcode` varchar(41) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL DEFAULT '', `u_pic` varchar(20) NOT NULL DEFAULT '', `u_realname` varchar(40) NOT NULL DEFAULT '', `u_nickname` varchar(20) NOT NULL DEFAULT 'not revealed', `u_email` varchar(50) NOT NULL DEFAULT '', `u_emailreminder` int(1) NOT NULL DEFAULT '0', `u_nationality` varchar(20) NOT NULL DEFAULT 'not revealed', `u_favdriver` int(11) NOT NULL DEFAULT '0', `u_since` year(4) NOT NULL DEFAULT '0000', `u_gtwins` int(3) NOT NULL DEFAULT '0', PRIMARY KEY (`u_id`) ) ENGINE=MyISAM AUTO_INCREMENT=17 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `users` -- LOCK TABLES `users` WRITE; /*!40000 ALTER TABLE `users` DISABLE KEYS */; INSERT INTO `users` VALUES (1,'MAM','5a9361b28ee51795f1e82d9054919034','pic_MAM.gif','Markus A. Mascelli','MAM','mam@heimam.at',0,'italian',4,2006,1),(2,'GUE','78918cecf8926d0cada4c5bc31af87a3','pic_GUE.gif','Guenther Schmidt','GueStar','guenther.schmidt@gmail.com',0,'austrian',0,2006,2),(3,'ZEI','8dad7cabce9c511bd4983e8dc96ea5da','pic_ZEI.gif','Christian Zeichmann','Zeichi','christian.zeichmann@inode.at',0,'austrian',0,2007,0),(4,'AFG','83384431390a14889c9955938bb5604f','pic_AFG.gif','Andrea F. Grohmann','','andrea.grohmann@chello.at',0,'austrian',0,2007,0),(6,'JIR','8522c2ccfd6fc5d242ed16d168401fad','avatar.jpg','Juergen Iser','','j.iser@gmx.at',0,'austrian',4,2008,0),(7,'KAI','e5f4d97a4961dea1184bbbe847b591f3','avatar.jpg','Roman Kailbach','Kailo','kailo@gmx.at',0,'austrian',1,2008,0),(8,'WOB','776ad0ef27acc0602c337dc2736f3a97','avatar.jpg','Wolfgang Boehm','WoB','wboehm@gmail.com',0,'austrian',0,2008,0),(9,'REG','776ad0ef27acc0602c337dc2736f3a97','avatar.jpg','Regina Boehm','','wboehm@gmail.com',0,'austrian',0,2008,0),(10,'ISA','3c4db9561aa2b8530d5c60014dbfbe86','pic_ISA.jpg','Ildiko K. Samu','sam','ildiko.samu@aon.at',0,'hungarian',4,2008,0),(11,'MRO','cda0fd2918d19e20ac871ed79a8d2bb0','pic_MRO.jpg','Martha Rossa','RoMa','rossama@yahoo.com',0,'austrian',1,2008,1),(12,'MPU','48d54f43c30a27137edb383de2605a86','avatar.jpg','Michael Puehringer','','michael.puehringer@atosorigin.com',0,'austrian',8,2008,0),(13,'RHA','9ced82c0515df69d4e3311f63d40ffa0','avatar.jpg','Robert Haller','','robert.haller@kabsi.at',0,'austrian',0,2008,0),(14,'FAN','33c2e20d31b3ae8f4564d7517738eb7d','extremeevil.gif','Georg Juren','Schurl','georg.juren@atosorigin.com',0,'austrian',21,2009,0),(15,'MBR','07b9a65e9a0a88cf4ebed5672f209277','avatar.jpg','Markus Brenner','','m.brenn@gmx.net',0,'austrian',0,2009,0),(16,'RSC','f9c17117b5b8dbf8cfa83d8057ee1a0b','schicht_roman.jpg','Roman Schicht','','rschicht@yahoo.com',0,'austrian',0,2009,0); /*!40000 ALTER TABLE `users` ENABLE KEYS */; UNLOCK TABLES; -- -- Current Database: `niki_2010` -- CREATE DATABASE /*!32312 IF NOT EXISTS*/ `niki_2010` /*!40100 DEFAULT CHARACTER SET latin1 */; USE `niki_2010`; -- -- Table structure for table `alldrivers` -- DROP TABLE IF EXISTS `alldrivers`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `alldrivers` ( `a_id` int(11) NOT NULL AUTO_INCREMENT, `a_lname` varchar(20) NOT NULL DEFAULT '', `a_fname` varchar(20) NOT NULL DEFAULT '', PRIMARY KEY (`a_id`) ) ENGINE=MyISAM AUTO_INCREMENT=814 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `alldrivers` -- LOCK TABLES `alldrivers` WRITE; /*!40000 ALTER TABLE `alldrivers` DISABLE KEYS */; INSERT INTO `alldrivers` VALUES (1,'ABATE','Carlo'),(2,'ABECASSIS','George'),(3,'ACHESON','Kenny'),(4,'ADAMS','Philippe'),(5,'ADER','Walt'),(6,'ADOLFF','Kurt'),(7,'AGABASHIAN','Fred'),(8,'AHRENS','Kurt Jr.'),(9,'ALBERS','Christijan'),(10,'ALBORETO','Michele'),(11,'ALESI','Jean'),(12,'ALGUERSUARI','Jaime'),(13,'ALLIOT','Philippe'),(14,'ALLISON','Cliff'),(15,'ALONSO','Fernando'),(16,'AMATI','Giovanna'),(17,'AMICK','George'),(18,'AMICK','Red'),(19,'AMON','Chris'),(20,'ANDERSON','Bob'),(21,'ANDERSSON','Conny'),(22,'ANDRETTI','Mario'),(23,'ANDRETTI','Michael'),(24,'ANDREWS','Keith'),(25,'APICELLA','Marco'),(26,'ARMI','Frank'),(27,'ARNOLD','Chuck'),(28,'ARNOUX','Rene'),(29,'ARUNDELL','Peter'),(30,'ASCARI','Alberto'),(31,'ASHDOWN','Peter'),(32,'ASHLEY','Ian'),(33,'ASHMORE','Gerry'),(34,'ASTON','Bill'),(35,'ATTWOOD','Richard'),(36,'AYULO','Manny'),(37,'BADOER','Luca'),(38,'BAGHETTI','Giancarlo'),(39,'BAILEY','Julian'),(40,'BALDI','Mauro'),(41,'BALL','Bobby'),(42,'BALSA','Marcel'),(43,'BANDINI','Lorenzo'),(44,'BANKS','Henry'),(45,'BARBAZZA','Fabrizio'),(46,'BARBER','John'),(47,'BARBER','Skip'),(48,'BARILLA','Paolo'),(49,'BARRICHELLO','Rubens'),(50,'BARTELS','Michael'),(51,'BARTH','Edgar'),(52,'BASSI','Giorgio'),(53,'BAUER','Erwin'),(54,'BAUMGARTNER','Zsolt'),(55,'BAYOL','Elie'),(56,'BEAUMAN','Don'),(57,'BECHEM','Karl–Guenther'),(58,'BEHRA','Jean'),(59,'BELL','Derek'),(60,'BELLOF','Stefan'),(61,'BELMONDO','Paul'),(62,'BELSO','Tom'),(63,'BELTOISE','Jean-Pierre'),(64,'BERETTA','Olivier'),(65,'BERG','Allen'),(66,'BERGER','Georges'),(67,'BERGER','Gerhard'),(68,'BERNARD','Eric'),(69,'BERNOLDI','Enrique'),(70,'BERTAGGIA','Enrico'),(71,'BETTENHAUSEN','Tony'),(72,'BEUTTLER','Mike'),(73,'BHANUBANDH','Birabongse'),(74,'BIANCHI','Lucien'),(75,'BIANCO','Gino'),(76,'BINDER','Hans'),(77,'BIONDETTI','Clemente'),(78,'BIRGER','Pablo'),(79,'BISCH','Art'),(80,'BLANCHARD','Harry'),(81,'BLEEKEMOLEN','Michael'),(82,'BLIGNAUT','Alex'),(83,'BLOKDYK','Trevor'),(84,'BLUNDELL','Mark'),(85,'BOESEL','Raul'),(86,'BOFFA','Menato'),(87,'BONDURANT','Bob'),(88,'BONETTO','Felice'),(89,'BONNIER','Jo'),(90,'BONOMI','Roberto'),(91,'BORDEU','Juan Manuel'),(92,'BORGUDD','Slim'),(93,'BOTHA','Luki'),(94,'BOULLION','Jean-Christophe'),(95,'BOURDAIS','Sebastien'),(96,'BOUTSEN','Thierry'),(97,'BOYD','Johnny'),(98,'BRABHAM','David'),(99,'BRABHAM','Gary'),(100,'BRABHAM','Jack'),(101,'BRACK','Bill'),(102,'BRAMBILLA','Ernesto'),(103,'BRAMBILLA','Vittorio'),(104,'BRANCA','Toni'),(105,'BRANCATELLI','Gianfranco'),(106,'BRANDON','Eric'),(107,'BRANSON','Don'),(108,'BRIDGER','Tom'),(109,'BRISE','Tony'),(110,'BRISTOW','Chris'),(111,'BROEKER','Peter'),(112,'BROOKS','Tony'),(113,'BROWN','Alan'),(114,'BROWN','Walt'),(115,'BROWN','Warwick'),(116,'BRUDES','Adolf'),(117,'BRUNDLE','Martin'),(118,'BRUNI','Gianmaria'),(119,'BRYAN','Jimmy'),(120,'BUCCI','Clemar'),(121,'BUCKNUM','Ronnie'),(122,'BUEB','Ivor'),(123,'BUEMI','Sebastien'),(124,'BUENO','Luiz'),(125,'BURGESS','Ian'),(126,'BURTI','Luciano'),(127,'BUSSINELLO','Roberto'),(128,'BUTTON','Jenson'),(129,'BYRNE','Tommy'),(130,'CABIANCA','Giulio'),(131,'CADE','Phil'),(132,'CAFFI','Alex'),(133,'CAMPBELL-JONES','John'),(134,'CAMPOS','Adrian'),(135,'CANNON','John'),(136,'CANTONI','Eitel'),(137,'CANTRELL','Bill'),(138,'CAPELLI','Ivan'),(139,'CARINI','Piero'),(140,'CARTER','Duane'),(141,'CASTELLOTTI','Eugenio'),(142,'CECOTTO','Johnny'),(143,'CEVERT','Francois'),(144,'CHABOUD','Eugène'),(145,'CHAMBERLAIN','Jay'),(146,'CHAPMAN','Colin'),(147,'CHARLTON','Dave'),(148,'CHAVES','Pedro Matos'),(149,'CHEESBOURG','Bill'),(150,'CHEEVER','Eddie'),(151,'CHIESA','Andrea'),(152,'CHIMERI','Ettore'),(153,'CHIRON','Louis'),(154,'CHITWOOD','Joie'),(155,'CHRISTIE','Bob'),(156,'CLAES','Johnny'),(157,'CLAPHAM','David'),(158,'CLARK','Jim'),(159,'COGAN','Kevin'),(160,'COLLINS','Peter'),(161,'COLLOMB','Bernard'),(162,'COLOMBO','Alberto'),(163,'COMAS','Erik'),(164,'COMOTTI','Franco'),(165,'CONNOR','George'),(166,'CONSTANTINE','George'),(167,'CORDTS','John'),(168,'COULTHARD','David'),(169,'COURAGE','Piers'),(170,'CRAFT','Chris'),(171,'CRAWFORD','Jim'),(172,'CRAWFORD','Ray'),(173,'CRESPO','Alberto'),(174,'CREUS','Antonio'),(175,'CROCKETT','Larry'),(176,'CROOK','Tony'),(177,'CROSS','Art'),(178,'CROSSLEY','Geoff'),(179,'DA MATTA','Cristiano'),(180,'DA SLIVA RAMOS','Hernando'),(181,'DAIGH','Chuck'),(182,'DALMAS','Yannick'),(183,'DALY','Derek'),(184,'DANNER','Christian'),(185,'DAPONTE','Jorge'),(186,'DAVIDSON','Anthony'),(187,'DAVIES','Jimmy'),(188,'DAVIS','Colin'),(189,'DAYWALT','Jimmy'),(190,'DE ADAMICH','Andrea'),(191,'DE ANGELIS','Elio'),(192,'DE ARAUJO CABRAL','Mario'),(193,'DE CESARIS','Andrea'),(194,'DE CHANGY','Alain'),(195,'DE DRYVER','Bernard'),(196,'DE FILIPPIS','Maria Teresa'),(197,'DE GRAFFENRIED','Emmanuel'),(198,'DE KLERK','Peter'),(199,'DE LA ROSA','Pedro'),(200,'DE PORTAGO','Alfonso'),(201,'DE RIU','Giovanni'),(202,'DE TOMASO','Alejandro'),(203,'DE TORNACO','Charles'),(204,'DE VILLOTA','Emilio'),(205,'DE VOS','Ernie'),(206,'DELETRAZ','Jean-Denis'),(207,'DEPAILLER','Patrick'),(208,'DINIZ','Pedro'),(209,'DINSMORE','Duke'),(210,'DOCHNAL','Frank'),(211,'DOLHEM','Jose'),(212,'DONNELLY','Martin'),(213,'DONOHUE','Mark'),(214,'DOORNBOS','Robert'),(215,'D\'OREY','Fritz'),(216,'DOWNING','Ken'),(217,'DRAKE','Bob'),(218,'DRIVER','Paddy'),(219,'DROGO','Piero'),(220,'DUKE','Geoff'),(221,'DUMFRIES','Johnny'),(222,'DUNCAN','Len'),(223,'DUSIO','Piero'),(224,'EATON','George'),(225,'ECCLESTONE','Bernie'),(226,'EDMUNDS','Don'),(227,'EDWARDS','Guy'),(228,'ELFORD','Vic'),(229,'ELISIAN','Ed'),(230,'EMERY','Paul'),(231,'ENGE','Tomas'),(232,'ENGLAND','Paul'),(233,'ERTL','Harald'),(234,'ESTEFANO','Nasif'),(235,'ETANCELIN','Philippe'),(236,'EVANS','Bob'),(237,'FABI','Corrado'),(238,'FABI','Teo'),(239,'FABRE','Pascal'),(240,'FACETTI','Carlo'),(241,'FAGIOLI','Luigi'),(242,'FAIRMAN','Jack'),(243,'FANGIO','Juan Manuel'),(244,'FARINA','Nino'),(245,'FAULKNER','Walt'),(246,'FERGUSON','William'),(247,'FIRMAN','Ralph'),(248,'FISCHER','Ludwig'),(249,'FISCHER','Rudi'),(250,'FISHER','Mike'),(251,'FISICHELLA','Giancarlo'),(252,'FITCH','John'),(253,'FITTIPALDI','Christian'),(254,'FITTIPALDI','Emerson'),(255,'FITTIPALDI','Wilson'),(256,'FITZAU','Theo'),(257,'FLAHERTY','Pat'),(258,'FLINTERMAN','Jan'),(259,'FLOCKHART','Ron'),(260,'FOHR','Myron'),(261,'FOITEK','Gregor'),(262,'FOLLMER','George'),(263,'FONDER','George'),(264,'FONTANA','Norberto'),(265,'FONTES BAYARDO','Azdrubal'),(266,'FORBERG','Carl'),(267,'FORCE','Gene'),(268,'FORINI','Franco'),(269,'FOTHERINGHAM-PARKER','Philip'),(270,'FOYT','A.J.'),(271,'FRANCIA','Giorgio'),(272,'FREELAND','Don'),(273,'FRENTZEN','Heinz-Harald'),(274,'FRERE','Paul'),(275,'FRIESACHER','Patrick'),(276,'FRY','Joe'),(277,'FUSHIDA','Hiroshi'),(278,'GABBIANI','Beppe'),(279,'GACHOT','Bertrand'),(280,'GAILLARD','Patrick'),(281,'GALICA','Divina'),(282,'GALLI','Nanni'),(283,'GALVEZ','Oscar Alfredo'),(284,'GAMBLE','Fred'),(285,'GANLEY','Howden'),(286,'GARDNER','Frank'),(287,'GARRETT','Billy'),(288,'GARTNER','Jo'),(289,'GAZE','Tony'),(290,'GEKI','NN'),(291,'GENDEBIEN','Olivier'),(292,'GENE','Marc'),(293,'GEORGE','Elmer'),(294,'GERARD','Bob'),(295,'GERINI','Gerino'),(296,'GETHIN','Peter'),(297,'GHINZANI','Piercarlo'),(298,'GIACOMELLI','Bruno'),(299,'GIBSON','Dick'),(300,'GINTHER','Richie'),(301,'GIRAUD-CABANTOUS','Yves'),(302,'GIUNTI','Ignazio'),(303,'GLOCK','Timo'),(304,'GLOECKLER','Helm'),(305,'GODIA','Paco'),(306,'GODIN DE BEAUFORT','Carel'),(307,'GOETHALS','Christian'),(308,'GOLDSMITH','Paul'),(309,'GONZALEZ','Jose Froilan'),(310,'GONZALEZ','Oscar'),(311,'GORDINI','Aldo'),(312,'GOULD','Horace'),(313,'GOUNON','Jean-Marc'),(314,'GREEN','Cecil'),(315,'GREENE','Keith'),(316,'GREGORY','Masten'),(317,'GRIFFITH','Cliff'),(318,'GRIGNARD','Georges'),(319,'GRIM','Bobby'),(320,'GROSJEAN','Romain'),(321,'GROUILLARD','Olivier'),(322,'GUBBY','Brian'),(323,'GUELFI','Andre'),(324,'GUERRA','Miguel Angel'),(325,'GUERRERO','Roberto'),(326,'GUGELMIN','Mauricio'),(327,'GURNEY','Dan'),(328,'HAHNE','Hubert'),(329,'HAILWOOD','Mike'),(330,'HAKKINEN','Mika'),(331,'HALFORD','Bruce'),(332,'HALL','Jim'),(333,'HAMILTON','Duncan'),(334,'HAMILTON','Lewis'),(335,'HAMPSHIRE','David'),(336,'HANKS','Sam'),(337,'HANSGEN','Walt'),(338,'HARRIS','Mike'),(339,'HARRISON','Cuth'),(340,'HART','Brian'),(341,'HARTLEY','Gene'),(342,'HASEMI','Masahiro'),(343,'HATTORI','Naoki'),(344,'HAWKINS','Paul'),(345,'HAWTHORN','Mike'),(346,'HAYJE','Boy'),(347,'HEEKS','Willi'),(348,'HEIDFELD','Nick'),(349,'HELFRICH','Theo'),(350,'HELLINGS','Mack'),(351,'HENTON','Brian'),(352,'HERBERT','Johnny'),(353,'HERMAN','Al'),(354,'HERRMANN','Hans'),(355,'HESNAULT','Francois'),(356,'HEYER','Hans'),(357,'HILL','Damon'),(358,'HILL','Graham'),(359,'HILL','Phil'),(360,'HIRT','Peter'),(361,'HOBBS','David'),(362,'HOCKING','Gary'),(363,'HOFFMANN','Ingo'),(364,'HOLLAND','Bill'),(365,'HOLMES','Jackie'),(366,'HOMEIER','Bill'),(367,'HOSHINO','Kazuyoshi'),(368,'HOYT','Jerry'),(369,'HULME','Denny'),(370,'HUNT','James'),(371,'HURTUBISE','Jim'),(372,'HUTCHISON','Gus'),(373,'ICKX','Jacky'),(374,'IDE','Yuji'),(375,'IGLESIAS','Jesus'),(376,'INOUE','Taki'),(377,'IRELAND','Innes'),(378,'IRVINE','Eddie'),(379,'IRWIN','Chris'),(380,'JABOUILLE','Jean-Pierre'),(381,'JACKSON','Jimmy'),(382,'JAMES','Joe'),(383,'JAMES','John'),(384,'JARIER','Jean-Pierre'),(385,'JEAN','Max'),(386,'JOHANSSON','Stefan'),(387,'JOHNSON','Eddie'),(388,'JOHNSON','Leslie'),(389,'JOHNSTONE','Bruce'),(390,'JONES','Alan'),(391,'JONES','Tom'),(392,'JOVER','Juan'),(393,'KARCH','Oswald'),(394,'KARTHIKEYAN','Narain'),(395,'KATAYAMA','Ukyo'),(396,'KAVANAGH','Ken'),(397,'KEEGAN','Rupert'),(398,'KEIZAN','Eddie'),(399,'KELLER','Al'),(400,'KELLY','Joe'),(401,'KENNEDY','Dave'),(402,'KESSEL','Loris'),(403,'KESSLER','Bruce'),(404,'KIESA','Nicolas'),(405,'KINNUNEN','Leo'),(406,'KLADIS','Danny'),(407,'KLENK','Hans'),(408,'KLIEN','Christian'),(409,'KLING','Karl'),(410,'KLODWIG','Ernst'),(411,'KOBAYASHI','Kamui'),(412,'KOINIGG','Helmuth'),(413,'KOVALAINEN','Heikki'),(414,'KOZAROWITZKY','Mikko'),(415,'KRAKAU','Willi'),(416,'KRAUSE','Rudolf'),(417,'KUBICA','Robert'),(418,'KUHNKE','Kurt'),(419,'KUWASHIMA','Masami'),(420,'LA CAZE','Robert'),(421,'LAFFITE','Jacques'),(422,'LAGORCE','Franck'),(423,'LAMMERS','Jan'),(424,'LAMY','Pedro'),(425,'LANDI','Chico'),(426,'LANG','Hermann'),(427,'LANGES','Claudio'),(428,'LARINI','Nicola'),(429,'LARRAURI','Oscar'),(430,'LARROUSSE','Gerard'),(431,'LARSON','Jud'),(432,'LAUDA','Niki'),(433,'LAURENT','Roger'),(434,'LAVAGGI','Giovanni'),(435,'LAWRENCE','Chris'),(436,'LECLERE','Michel'),(437,'LEDERLE','Neville'),(438,'LEES','Geoff'),(439,'LEGAT','Arthur'),(440,'LEHTO','JJ'),(441,'LEONI','Lamberto'),(442,'LESTON','Les'),(443,'LEVEGH','Pierre'),(444,'LEVRETT','Bayliss'),(445,'LEWIS','Jackie'),(446,'LEWIS-EVANS','Stuart'),(447,'LIGIER','Guy'),(448,'LINDEN','Andy'),(449,'LIPPI','Roberto'),(450,'LIUZZI','Vitantonio'),(451,'LOMBARDI','Lella'),(452,'LONDONO','Ricardo'),(453,'LOOF','Ernst'),(454,'LOUVEAU','Henri'),(455,'LOVE','John'),(456,'LOVELY','Pete'),(457,'LOYER','Roger'),(458,'LUCAS','Jean'),(459,'LUCIENBONNET','Jean'),(460,'LUNGER','Brett'),(461,'MACDOWEL','Mike'),(462,'MACKAY-FRASER','Herbert'),(463,'MACKEY','Bill'),(464,'MACKLIN','Lance'),(465,'MAGEE','Damien'),(466,'MAGGS','Tony'),(467,'MAGILL','Mike'),(468,'MAGLIOLI','Umberto'),(469,'MAGNUSSEN','Jan'),(470,'MAIRESSE','Guy'),(471,'MAIRESSE','Willy'),(472,'MANSELL','Nigel'),(473,'MANTOVANI','Sergio'),(474,'MANTZ','Johnny'),(475,'MANZON','Robert'),(476,'MARIMON','Onofre'),(477,'MARKO','Helmut'),(478,'MARQUES','Tarso'),(479,'MARR','Leslie'),(480,'MARSH','Tony'),(481,'MARTIN','Eugene'),(482,'MARTINI','Pierluigi'),(483,'MASS','Jochen'),(484,'MASSA','Felipe'),(485,'MAY','Michael'),(486,'MAYER','Timmy'),(487,'MAZET','Francois'),(488,'MAZZACANE','Gaston'),(489,'MCALPINE','Kenneth'),(490,'MCCARTHY','Perry'),(491,'MCCOY','Ernie'),(492,'MCDOWELL','Johnny'),(493,'MCGRATH','Jack'),(494,'MCGUIRE','Brian'),(495,'MCLAREN','Bruce'),(496,'MCNISH','Allan'),(497,'MCRAE','Graham'),(498,'MCWITHEY','Jim'),(499,'MENDITEGUY','Carlos'),(500,'MERKEL','Harry'),(501,'MERZARIO','Arturo'),(502,'MIERES','Roberto'),(503,'MIGAULT','Francois'),(504,'MILES','John'),(505,'MILES','Ken'),(506,'MILHOUX','Andre'),(507,'MILLER','Chet'),(508,'MITTER','Gerhard'),(509,'MODENA','Stefano'),(510,'MONARCH','Thomas'),(511,'MONTAGNY','Franck'),(512,'MONTEIRO','Tiago'),(513,'MONTERMINI','Andrea'),(514,'MONTEVERDI','Peter'),(515,'MONTGOMERIE-CHARRING','Robin'),(516,'MONTOYA','Juan Pablo'),(517,'MORBIDELLI','Gianni'),(518,'MORENO','Roberto'),(519,'MORGAN','Dave'),(520,'MOSER','Silvio'),(521,'MOSS','Bill'),(522,'MOSS','Stirling'),(523,'MUNARON','Gino'),(524,'MURRAY','David'),(525,'MUSSO','Luigi'),(526,'NAKAJIMA','Kazuki'),(527,'NAKAJIMA','Satoru'),(528,'NAKANO','Shinji'),(529,'NALON','Duke'),(530,'NANNINI','Alessandro'),(531,'NASPETTI','Emanuele'),(532,'NATILI','Massimo'),(533,'NAYLOR','Brian'),(534,'NAZARUK','Mike'),(535,'NEEDELL','Tiff'),(536,'NELLEMAN','Jac'),(537,'NEVE','Patrick'),(538,'NICHOLSON','John'),(539,'NIDAY','Cal'),(540,'NIEDERMAYR','Helmut'),(541,'NIEMANN','Brausch'),(542,'NILSSON','Gunnar'),(543,'NODA','Hideki'),(544,'NUCKEY','Rodney'),(545,'O\'BRIEN','Robert'),(546,'O\'CONNOR','Pat'),(547,'OLIVER','Jackie'),(548,'ONGAIS','Danny'),(549,'OPPITZHAUSER','Karl'),(550,'OWEN','Arthur'),(551,'PACE','Carlos'),(552,'PAGANI','Nello'),(553,'PALETTI','Riccardo'),(554,'PALM','Torsten'),(555,'PALMER','Jonathan'),(556,'PANIS','Olivier'),(557,'PANTANO','Giorgio'),(558,'PAPIS','Massimiliano'),(559,'PARKES','Mike'),(560,'PARNELL','Reg'),(561,'PARNELL','Tim'),(562,'PARSONS','Johnnie'),(563,'PATRESE','Riccardo'),(564,'PEASE','Al'),(565,'PENSKE','Roger'),(566,'PERDISA','Cesare'),(567,'PEREZ-SALA','Luis'),(568,'PERKINS','Larry'),(569,'PESCAROLO','Henri'),(570,'PESENTI-ROSSI','Alessandro'),(571,'PETERS','Josef'),(572,'PETERSON','Ronnie'),(573,'PIAN','Alfredo'),(574,'PICARD','Francois'),(575,'PIETERSE','Ernie'),(576,'PIETSCH','Paul'),(577,'PILETTE','Andre'),(578,'PILETTE','Teddy'),(579,'PIOTTI','Luigi'),(580,'PIPER','David'),(581,'PIQUET','Nelson'),(582,'PIQUET','Nelson Jr.'),(583,'PIROCCHI','Renato'),(584,'PIRONI','Didier'),(585,'PIRRO','Emanuele'),(586,'PIZZONIA','Antonio'),(587,'POLLET','Jacques'),(588,'PON','Ben'),(589,'POORE','Dennis'),(590,'POSEY','Sam'),(591,'POZZI','Charles'),(592,'PRETORIUS','Jackie'),(593,'PRINOTH','Ernesto'),(594,'PROPHET','David'),(595,'PROST','Alain'),(596,'PRYCE','Tom'),(597,'PURLEY','David'),(598,'PUZEY','Clive'),(599,'QUESTER','Dieter'),(600,'RABY','Ian'),(601,'RAHAL','Bobby'),(602,'RAIKKONEN','Kimi'),(603,'RAPHANEL','Pierre-Henri'),(604,'RATHMANN','Dick'),(605,'RATHMANN','Jim'),(606,'RATZENBERGER','Roland'),(607,'REBAQUE','Hector'),(608,'REDMAN','Brian'),(609,'REECE','Jimmy'),(610,'REED','Ray'),(611,'REES','Alan'),(612,'REGAZZONI','Clay'),(613,'REUTEMANN','Carlos'),(614,'REVENTLOW','Lance'),(615,'REVSON','Peter'),(616,'RHODES','John'),(617,'RIBEIRO','Alex'),(618,'RICHARDSON','Ken'),(619,'RIESS','Fritz'),(620,'RIGSBY','Jim'),(621,'RINDT','Jochen'),(622,'RISELEY-PRICHARD','John'),(623,'ROBARTS','Richard'),(624,'RODRIGUEZ','Pedro'),(625,'RODRIGUEZ','Ricardo'),(626,'RODRIGUEZ LARRETA','Alberto'),(627,'ROL','Franco'),(628,'ROLLINSON','Alan'),(629,'ROLT','Tony'),(630,'ROOS','Bertil'),(631,'ROSBERG','Keke'),(632,'ROSBERG','Nico'),(633,'ROSE','Mauri'),(634,'ROSIER','Louis'),(635,'ROSSET','Ricardo'),(636,'ROTHENGATTER','Huub'),(637,'RUBY','Lloyd'),(638,'RUDAZ','Jean-Claude'),(639,'RUSSO','Eddie'),(640,'RUSSO','Paul'),(641,'RUTTMAN','Troy'),(642,'RYAN','Peter'),(643,'SACHS','Eddie'),(644,'SAID','Bob'),(645,'SALAZAR','Eliseo'),(646,'SALO','Mika'),(647,'SALVADORI','Roy'),(648,'SANESI','Consalvo'),(649,'SARRAZIN','Stephane'),(650,'SATO','Takuma'),(651,'SCARBOROUGH','Carl'),(652,'SCARFIOTTI','Ludovico'),(653,'SCARLATTI','Giorgio'),(654,'SCHECKTER','Ian'),(655,'SCHECKTER','Jody'),(656,'SCHELL','Harry'),(657,'SCHENKEN','Tim'),(658,'SCHERRER','Albert'),(659,'SCHIATTARELLA','Domenico'),(660,'SCHILLER','Heinz'),(661,'SCHINDLER','Bill'),(662,'SCHLESSER','Jean-Louis'),(663,'SCHLESSER','Jo'),(664,'SCHNEIDER','Bernd'),(665,'SCHOELLER','Rudolf'),(666,'SCHROEDER','Rob'),(667,'SCHUMACHER','Michael'),(668,'SCHUMACHER','Ralf'),(669,'SCHUPPAN','Vern'),(670,'SCHWELM CRUZ','Adolfo'),(671,'SCOTT','Bob'),(672,'SCOTT BROWN','Archie'),(673,'SCOTTI','Piero'),(674,'SEIDEL','Wolfgang'),(675,'SEIFFERT','Guenther'),(676,'SENNA','Ayrton'),(677,'SERAFINI','Dorino'),(678,'SERRA','Chico'),(679,'SERRURIER','Doug'),(680,'SERVOZ-GAVIN','Johnny'),(681,'SETTEMBER','Tony'),(682,'SHARP','Hap'),(683,'SHAWE-TAYLOR','Brian'),(684,'SHELBY','Carroll'),(685,'SHELLY','Tony'),(686,'SIFFERT','Jo'),(687,'SIMON','Andre'),(688,'SLOTEMAKER','Rob'),(689,'SOLANA','Moises'),(690,'SOLER-ROIG','Alex'),(691,'SOMMER','Raymond'),(692,'SOSPIRI','Vincenzo'),(693,'SOUTH','Stephen'),(694,'SPARKEN','Mike'),(695,'SPEED','Scott'),(696,'SPENCE','Mike'),(697,'STACEY','Alan'),(698,'STARRABBA','Gaetano'),(699,'STEVENSON','Chuck'),(700,'STEWART','Ian'),(701,'STEWART','Jackie'),(702,'STEWART','Jimmy'),(703,'STOHR','Siegfried'),(704,'STOMMELEN','Rolf'),(705,'STREIFF','Philippe'),(706,'STUCK','Hans'),(707,'STUCK','Hans Joachim'),(708,'STUPPACHER','Otto'),(709,'SULLIVAN','Danny'),(710,'SURER','Marc'),(711,'SURTEES','John'),(712,'SUTCLIFFE','Andy'),(713,'SUTIL','Adrian'),(714,'SUTTON','Len'),(715,'SUZUKI','Aguri'),(716,'SUZUKI','Toshio'),(717,'SWATERS','Jacques'),(718,'SWEIKERT','Bob'),(719,'TAKAGI','Toranosuke'),(720,'TAKAHARA','Noritake'),(721,'TAKAHASHI','Kunimitsu'),(722,'TAMBAY','Patrick'),(723,'TARAMAZZO','Luigi'),(724,'TARQUINI','Gabriele'),(725,'TARUFFI','Piero'),(726,'TAYLOR','Dennis'),(727,'TAYLOR','Henry'),(728,'TAYLOR','John'),(729,'TAYLOR','Mike'),(730,'TAYLOR','Trevor'),(731,'TEAGUE','Marshall'),(732,'TEMPLEMAN','Shorty'),(733,'TERRA','Max de'),(734,'TESTUT','Andre'),(735,'THACKWELL','Mike'),(736,'THIELE','Alfonso'),(737,'THOMPSON','Eric'),(738,'THOMSON','Johnny'),(739,'THORNE','Leslie'),(740,'TINGELSTAD','Bud'),(741,'TINGLE','Sam'),(742,'TITTERINGTON','Desmond'),(743,'TOLAN','Johnnie'),(744,'TRIMMER','Tony'),(745,'TRINTIGNANT','Maurice'),(746,'TRULLI','Jarno'),(747,'TUERO','Esteban'),(748,'TUNMER','Guy'),(749,'TURNER','Jack'),(750,'ULMEN','Toni'),(751,'UNSER','Bobby'),(752,'UNSER','Jerry'),(753,'URIA','Alberto'),(754,'VACCARELLA','Nino'),(755,'VAN DE POELE','Eric'),(756,'VAN DER LOF','Dries'),(757,'VAN DER VYVER','Syd'),(758,'VAN LENNEP','Gijs'),(759,'VAN ROOYEN','Basil'),(760,'VEITH','Bob'),(761,'VERSTAPPEN','Jos'),(762,'VETTEL','Sebastian'),(763,'VILLENEUVE','Gilles'),(764,'VILLENEUVE','Jacques'),(765,'VILLENEUVE SR.','Jacques'),(766,'VILLORESI','Luigi'),(767,'VOLONTERIO','Ottorino'),(768,'VON OPEL','Rikky'),(769,'VON TRIPS','Wolfgang'),(770,'VONLANTHEN','Jo'),(771,'VUKOVICH','Bill'),(772,'WACKER','Fred'),(773,'WALKER','David'),(774,'WALKER','Peter'),(775,'WALLARD','Lee'),(776,'WALTER','Heini'),(777,'WARD','Rodger'),(778,'WARWICK','Derek'),(779,'WATSON','John'),(780,'WEBB','Spider'),(781,'WEBBER','Mark'),(782,'WEIDLER','Volker'),(783,'WEILER','Wayne'),(784,'WENDLINGER','Karl'),(785,'WESTBURY','Peter'),(786,'WEYANT','Chuck'),(787,'WHARTON','Ken'),(788,'WHITEAWAY','Ted'),(789,'WHITEHEAD','Graham'),(790,'WHITEHEAD','Peter'),(791,'WHITEHOUSE','Bill'),(792,'WIDDOWS','Robin'),(793,'WIETZES','Eppie'),(794,'WILDS','Mike'),(795,'WILLIAMS','Jonathan'),(796,'WILLIAMSON','Roger'),(797,'WILSON','Dempsey'),(798,'WILSON','Desire'),(799,'WILSON','Justin'),(800,'WILSON','Vic'),(801,'WINKELHOCK','Joachim'),(802,'WINKELHOCK','Manfred'),(803,'WINKELHOCK','Markus'),(804,'WISELL','Reine'),(805,'WUNDERINK','Roelof'),(806,'WURZ','Alexander'),(807,'YAMAMOTO','Sakon'),(808,'YOONG','Alex'),(809,'ZANARDI','Alex'),(810,'ZAPICO','Emilio'),(811,'ZONTA','Ricardo'),(812,'ZORZI','Renzo'),(813,'ZUNINO','Ricardo'); /*!40000 ALTER TABLE `alldrivers` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `drivers` -- DROP TABLE IF EXISTS `drivers`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `drivers` ( `d_id` int(11) NOT NULL AUTO_INCREMENT, `d_lname` varchar(20) NOT NULL DEFAULT '', `d_fname` varchar(20) NOT NULL DEFAULT '', PRIMARY KEY (`d_id`) ) ENGINE=MyISAM AUTO_INCREMENT=43 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `drivers` -- LOCK TABLES `drivers` WRITE; /*!40000 ALTER TABLE `drivers` DISABLE KEYS */; INSERT INTO `drivers` VALUES (1,'BUTTON','Jenson'),(2,'HAMILTON','Lewis'),(3,'SCHUMACHER','Michael'),(4,'ROSBERG','Nico'),(5,'VETTEL','Sebastian'),(6,'WEBBER','Mark'),(7,'MASSA','Felipe'),(8,'ALONSO','Fernando'),(9,'BARRICHELLO','Rubens'),(10,'HUELKENBERG','Nico'),(11,'KUBICA','Robert'),(12,'PETROV','Vitaly'),(14,'SUTIL','Adrian'),(15,'LIUZZI','Vitantonio'),(16,'BUEMI','Sebastien'),(17,'ALGUERSUARI','Jaime'),(18,'TRULLI','Jarno'),(19,'KOVALAINEN','Heikki'),(20,'CHANDHOK','Karun'),(21,'SENNA','Bruno'),(22,'DE LA ROSA','Pedro'),(23,'KOBAYASHI','Kamui'),(24,'GLOCK','Timo'),(25,'DI GRASSI','Lucas'),(26,'PAFFETT','Gary'),(27,'KLIEN','Christian'),(28,'HEIDFELD','Nick'),(29,'HARTLEY','Brendon'),(30,'RICCIARDO','Daniel'),(31,'FISICHELLA','Giancarlo'),(32,'BADOER','Luca'),(33,'GENE','Marc'),(34,'BOTTAS','Valtteri'),(35,'TUNG','Ho-Pin'),(36,'DI RESTA','Paul'),(37,'FAUZY','Fairuz'),(38,'SOUCEK','Andy'),(39,'RAZIA','Luiz'); /*!40000 ALTER TABLE `drivers` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `events` -- DROP TABLE IF EXISTS `events`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `events` ( `e_id` int(11) NOT NULL AUTO_INCREMENT, `e_type` varchar(20) NOT NULL DEFAULT '', PRIMARY KEY (`e_id`) ) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `events` -- LOCK TABLES `events` WRITE; /*!40000 ALTER TABLE `events` DISABLE KEYS */; INSERT INTO `events` VALUES (1,'QUALIFYING'),(2,'RACE'); /*!40000 ALTER TABLE `events` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `gps` -- DROP TABLE IF EXISTS `gps`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `gps` ( `g_id` int(11) NOT NULL AUTO_INCREMENT, `g_name` varchar(40) NOT NULL DEFAULT '', `g_datetime_q` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `g_datetime_r` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `g_flag` varchar(20) NOT NULL DEFAULT '', `g_circuit` varchar(40) NOT NULL DEFAULT '', PRIMARY KEY (`g_id`) ) ENGINE=MyISAM AUTO_INCREMENT=34 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `gps` -- LOCK TABLES `gps` WRITE; /*!40000 ALTER TABLE `gps` DISABLE KEYS */; INSERT INTO `gps` VALUES (1,'BAHRAIN (Sakhir)','2010-03-13 12:00:00','2010-03-14 13:00:00','flag_BAHRAIN.gif','circuit_BAHRAIN.gif'),(2,'AUSTRALIA (Melbourne)','2010-03-27 07:00:00','2010-03-28 08:00:00','flag_AUSTRALIA.gif','circuit_AUSTRALIA.gif'),(3,'MALAYSIA (Sepang)','2010-04-03 10:00:00','2010-04-04 10:00:00','flag_MALAYSIA.gif','circuit_MALAYSIA.gif'),(4,'CHINA (Shanghai)','2010-04-17 08:00:00','2010-04-18 09:00:00','flag_CHINA.gif','circuit_CHINA.gif'),(5,'SPAIN (Barcelona)','2010-05-08 14:00:00','2010-05-09 14:00:00','flag_SPAIN.gif','circuit_SPAIN_(Barcelona).gif'),(6,'MONACO (Monte Carlo)','2010-05-15 14:00:00','2010-05-16 14:00:00','flag_MONACO.gif','circuit_MONACO.gif'),(7,'TURKEY (Istanbul)','2010-05-29 13:00:00','2010-05-30 14:00:00','flag_TURKEY.gif','circuit_TURKEY.gif'),(8,'CANADA (Montreal)','2010-06-12 19:00:00','2010-06-13 18:00:00','flag_CANADA.gif','circuit_CANADA.gif'),(9,'EUROPE (Valencia)','2010-06-26 14:00:00','2010-06-27 14:00:00','flag_EUROPE.gif','circuit_EUROPE_(Valencia).gif'),(10,'GREAT BRITAIN (Silverstone)','2010-07-10 14:00:00','2010-07-11 14:00:00','flag_UK.gif','circuit_UK.gif'),(11,'GERMANY (Hockenheim)','2010-07-24 14:00:00','2010-07-25 14:00:00','flag_GERMANY.gif','circuit_GERMANY_(Hockenheim).gif'),(12,'HUNGARY (Budapest)','2010-07-31 14:00:00','2010-08-01 14:00:00','flag_HUNGARY.gif','circuit_HUNGARY.gif'),(13,'BELGIUM (Spa)','2010-08-28 14:00:00','2010-08-29 14:00:00','flag_BELGIUM.gif','circuit_BELGIUM.gif'),(14,'ITALY (Monza)','2010-09-11 14:00:00','2010-09-12 14:00:00','flag_ITALY.gif','circuit_ITALY.gif'),(15,'SINGAPORE (Singapore)','2010-09-25 16:00:00','2010-09-26 14:00:00','flag_SINGAPORE.gif','circuit_SINGAPORE.gif'),(16,'JAPAN (Suzuka)','2010-10-09 07:00:00','2010-10-10 08:00:00','flag_JAPAN.gif','circuit_JAPAN_(Suzuka).gif'),(17,'SOUTH KOREA (Yeongam)','2010-10-23 07:00:00','2010-10-24 08:00:00','flag_SKOREA.gif','circuit_SKOREA.gif'),(18,'BRAZIL (Sao Paulo)','2010-11-06 17:00:00','2010-11-07 17:00:00','flag_BRAZIL.gif','circuit_BRAZIL.gif'),(19,'UNITED ARAB EMIRATES (Abu Dhabi)','2010-11-13 14:00:00','2010-11-14 14:00:00','flag_UAE.gif','circuit_UAE.gif'); /*!40000 ALTER TABLE `gps` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `results` -- DROP TABLE IF EXISTS `results`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `results` ( `r_g_id` int(11) NOT NULL DEFAULT '0', `r_e_id` int(11) NOT NULL DEFAULT '0', `r_d_id_p1` int(11) NOT NULL DEFAULT '0', `r_d_id_p2` int(11) NOT NULL DEFAULT '0', `r_d_id_p3` int(11) NOT NULL DEFAULT '0', `r_fl` int(11) NOT NULL DEFAULT '0', `r_sc` int(11) NOT NULL DEFAULT '-1', PRIMARY KEY (`r_g_id`,`r_e_id`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `results` -- LOCK TABLES `results` WRITE; /*!40000 ALTER TABLE `results` DISABLE KEYS */; INSERT INTO `results` VALUES (1,1,5,7,8,0,-1),(1,2,8,7,2,8,0),(2,1,5,6,8,0,-1),(2,2,1,11,7,6,1),(3,1,6,4,5,0,-1),(3,2,5,6,4,6,0),(4,1,5,6,8,0,-1),(4,2,1,2,4,2,1),(5,1,6,5,2,0,-1),(5,2,6,8,5,2,0),(6,1,6,11,5,0,-1),(6,2,6,5,11,5,1),(7,1,6,2,5,0,-1),(7,2,2,1,6,12,0),(8,1,2,6,5,0,-1),(8,2,2,1,8,11,0),(9,1,5,6,2,0,-1),(9,2,5,2,1,1,1),(10,1,5,6,8,0,-1),(10,2,6,2,4,8,1),(11,1,5,8,7,0,-1),(11,2,8,7,5,5,0),(12,1,5,6,8,0,-1),(12,2,6,8,5,5,1),(13,1,6,2,11,0,-1),(13,2,2,6,11,2,1),(14,1,8,1,7,0,-1),(14,2,8,1,7,8,0),(15,1,8,5,2,0,-1),(15,2,8,5,6,8,1),(16,1,5,6,2,0,-1),(16,2,5,6,8,6,1),(17,1,5,6,8,0,-1),(17,2,8,2,7,8,1),(18,1,10,5,6,0,-1),(18,2,5,6,8,2,1),(19,1,5,2,8,0,-1),(19,2,5,2,1,2,1); /*!40000 ALTER TABLE `results` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tips` -- DROP TABLE IF EXISTS `tips`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `tips` ( `t_u_id` int(11) NOT NULL DEFAULT '0', `t_g_id` int(11) NOT NULL DEFAULT '0', `t_e_id` int(11) NOT NULL DEFAULT '0', `t_d_id_p1` int(11) NOT NULL DEFAULT '0', `t_d_id_p2` int(11) NOT NULL DEFAULT '0', `t_d_id_p3` int(11) NOT NULL DEFAULT '0', `t_fl` int(11) NOT NULL DEFAULT '0', `t_sc` int(11) NOT NULL DEFAULT '0', `t_timestamp` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `t_score` int(11) NOT NULL DEFAULT '0', PRIMARY KEY (`t_u_id`,`t_g_id`,`t_e_id`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tips` -- LOCK TABLES `tips` WRITE; /*!40000 ALTER TABLE `tips` DISABLE KEYS */; INSERT INTO `tips` VALUES (16,1,1,6,3,1,0,0,'2010-03-12 09:45:29',0),(16,1,2,1,5,3,6,0,'2010-03-12 09:46:11',1),(7,1,1,4,2,14,0,0,'2010-03-12 14:24:11',0),(7,1,2,5,8,7,5,-1,'2010-03-13 21:46:22',2),(14,1,2,5,1,2,5,-1,'2010-03-12 14:32:27',2),(14,1,1,5,6,1,0,0,'2010-03-12 14:32:56',2),(13,1,1,8,4,5,0,0,'2010-03-12 21:21:34',2),(4,1,1,5,4,2,0,0,'2010-03-12 22:41:24',2),(3,1,1,8,2,7,0,0,'2010-03-13 10:30:30',2),(11,1,1,2,3,5,0,0,'2010-03-13 10:38:15',1),(12,1,1,8,5,7,0,0,'2010-03-13 11:20:30',3),(10,1,1,8,2,3,0,0,'2010-03-13 11:23:16',1),(1,1,1,2,8,4,0,0,'2010-03-13 11:42:36',1),(17,1,2,2,8,3,9999,-1,'2010-03-13 12:44:44',2),(3,1,2,5,8,7,2,-1,'2010-03-13 14:56:39',2),(13,1,2,8,7,5,5,0,'2010-03-13 16:56:08',5),(4,1,2,2,5,7,2,1,'2010-03-14 07:59:37',1),(9,1,2,7,5,6,8,0,'2010-03-14 10:42:54',3),(18,1,2,5,7,1,5,-1,'2010-03-14 10:51:33',2),(8,1,2,7,5,3,5,0,'2010-03-14 10:55:37',2),(1,1,2,5,8,2,8,0,'2010-03-14 12:05:29',5),(11,1,2,5,2,4,5,0,'2010-03-14 12:06:17',2),(12,1,2,7,5,8,8,-1,'2010-03-14 12:22:03',3),(10,1,2,8,5,7,4,-1,'2010-03-14 12:26:59',3),(16,2,1,5,7,8,0,0,'2010-03-26 08:32:44',4),(16,2,2,8,7,2,8,0,'2010-03-26 08:33:24',0),(13,2,1,5,7,4,0,0,'2010-03-26 09:19:57',2),(7,2,1,5,8,7,0,0,'2010-03-26 16:25:26',3),(3,2,1,5,8,6,0,0,'2010-03-26 17:22:20',4),(9,2,1,5,6,4,0,0,'2010-03-26 21:59:58',4),(18,2,1,4,3,7,0,0,'2010-03-26 22:00:54',0),(8,2,1,4,6,8,0,0,'2010-03-26 22:01:31',4),(11,2,1,5,7,2,0,0,'2010-03-26 22:49:02',2),(10,2,1,6,8,3,0,0,'2010-03-27 05:55:35',2),(12,2,1,6,8,3,0,0,'2010-03-27 06:43:23',2),(1,2,1,6,8,5,0,0,'2010-03-27 06:43:59',3),(17,2,2,2,8,3,2,1,'2010-03-27 11:58:30',1),(3,2,2,5,6,8,8,1,'2010-03-27 15:06:22',1),(13,2,2,5,6,8,5,-1,'2010-03-27 15:44:40',0),(7,2,2,5,8,6,8,-1,'2010-03-27 16:08:18',0),(9,2,2,5,6,7,8,-1,'2010-03-27 20:07:59',2),(18,2,2,5,6,1,4,-1,'2010-03-27 20:12:47',1),(8,2,2,6,5,4,6,1,'2010-03-27 20:13:36',2),(11,2,2,5,6,1,5,0,'2010-03-27 21:02:13',0),(1,2,2,5,8,6,5,1,'2010-03-27 23:05:13',1),(4,2,2,5,8,6,5,1,'2010-03-28 07:21:11',1),(10,2,2,5,6,8,5,1,'2010-03-28 07:30:00',1),(12,2,2,5,6,8,5,1,'2010-03-28 07:31:11',1),(16,3,1,5,6,8,0,0,'2010-03-29 07:56:38',2),(16,3,2,1,11,7,6,0,'2010-03-29 07:57:11',2),(7,3,1,5,2,8,0,0,'2010-04-02 15:27:44',1),(3,3,1,5,8,2,0,0,'2010-04-02 16:29:25',1),(13,3,1,5,1,2,0,0,'2010-04-02 17:57:08',1),(4,3,1,5,2,4,0,0,'2010-04-03 07:32:40',2),(10,3,1,6,5,2,0,0,'2010-04-03 09:24:28',3),(12,3,1,5,8,6,0,0,'2010-04-03 09:25:29',2),(1,3,1,5,2,8,0,0,'2010-04-03 09:39:44',1),(11,3,1,2,6,5,0,0,'2010-04-03 09:47:22',3),(9,3,1,2,6,5,0,0,'2010-04-03 09:50:34',3),(18,3,1,5,2,4,0,0,'2010-04-03 09:51:25',2),(8,3,1,5,2,6,0,0,'2010-04-03 09:52:21',2),(17,3,2,2,8,3,1,1,'2010-04-03 10:23:17',-1),(3,3,2,5,6,4,5,1,'2010-04-03 15:22:47',5),(7,3,2,5,6,11,8,1,'2010-04-03 18:28:05',3),(9,3,2,6,5,11,2,1,'2010-04-03 20:21:10',1),(8,3,2,6,5,8,6,1,'2010-04-03 20:22:17',2),(18,3,2,5,6,1,4,1,'2010-04-03 20:23:38',3),(13,3,2,6,5,4,5,1,'2010-04-03 20:53:12',3),(4,3,2,4,5,9,4,1,'2010-04-04 08:24:02',1),(1,3,2,5,6,4,2,1,'2010-04-04 09:13:17',5),(11,3,2,5,6,4,6,1,'2010-04-04 09:16:06',6),(12,3,2,6,5,4,6,-1,'2010-04-04 09:38:34',5),(10,3,2,6,4,11,6,1,'2010-04-04 09:44:32',2),(16,4,1,6,4,5,0,0,'2010-04-09 16:07:52',2),(16,4,2,5,6,4,6,1,'2010-04-09 16:09:07',3),(7,4,1,1,5,2,0,0,'2010-04-16 15:09:01',1),(3,4,1,5,2,6,0,0,'2010-04-16 16:15:31',3),(8,4,1,1,2,4,0,0,'2010-04-16 19:00:19',0),(18,4,1,2,4,1,0,0,'2010-04-16 19:01:31',0),(9,4,1,2,1,5,0,0,'2010-04-16 19:02:36',1),(13,4,1,2,1,4,0,0,'2010-04-16 20:31:22',0),(11,4,1,1,5,2,0,0,'2010-04-16 21:14:15',1),(10,4,1,6,5,2,0,0,'2010-04-17 06:41:04',2),(12,4,1,6,5,2,0,0,'2010-04-17 06:41:35',2),(1,4,1,2,5,6,0,0,'2010-04-17 07:44:32',2),(7,4,2,5,8,1,5,0,'2010-04-17 12:37:15',0),(3,4,2,5,8,6,6,-1,'2010-04-17 17:55:42',0),(13,4,2,5,6,8,5,-1,'2010-04-17 20:10:53',0),(8,4,2,5,6,1,6,-1,'2010-04-17 21:00:19',1),(9,4,2,5,6,1,2,1,'2010-04-17 21:01:18',3),(18,4,2,6,5,2,5,0,'2010-04-17 21:02:25',0),(1,4,2,5,6,2,6,1,'2010-04-17 23:34:32',2),(11,4,2,5,6,2,5,1,'2010-04-17 23:35:18',2),(4,4,2,5,8,6,5,1,'2010-04-18 07:55:13',1),(12,4,2,6,8,5,6,-1,'2010-04-18 08:39:29',0),(10,4,2,5,6,8,6,-1,'2010-04-18 08:40:53',0),(16,5,1,5,6,8,0,0,'2010-04-19 10:23:43',2),(16,5,2,1,2,4,2,0,'2010-04-19 10:24:28',2),(7,5,1,5,6,8,0,0,'2010-05-07 14:53:20',2),(7,5,2,5,2,6,5,1,'2010-05-07 12:59:36',1),(14,5,1,2,5,6,0,0,'2010-05-07 15:57:10',4),(14,5,2,5,1,2,5,0,'2010-05-07 15:58:36',2),(13,5,1,5,6,8,0,0,'2010-05-07 20:40:17',2),(3,5,1,5,6,8,0,0,'2010-05-08 09:13:43',2),(4,5,1,5,1,8,0,0,'2010-05-08 09:28:11',1),(1,5,1,5,6,2,0,0,'2010-05-08 12:21:12',4),(11,5,1,5,6,2,0,0,'2010-05-08 12:22:44',4),(9,5,1,5,6,1,0,0,'2010-05-08 12:50:25',2),(18,5,1,5,6,3,0,0,'2010-05-08 12:57:43',2),(8,5,1,6,5,1,0,0,'2010-05-08 12:58:51',4),(12,5,1,5,6,8,0,0,'2010-05-08 13:06:39',2),(10,5,1,5,6,3,0,0,'2010-05-08 13:07:56',2),(11,5,2,6,5,2,6,-1,'2010-05-08 15:57:26',3),(13,5,2,5,6,1,5,0,'2010-05-09 08:29:55',3),(3,5,2,5,6,8,5,0,'2010-05-09 10:09:44',4),(18,5,2,5,2,1,6,-1,'2010-05-09 11:14:07',1),(9,5,2,6,5,1,5,0,'2010-05-09 11:15:20',4),(8,5,2,5,6,8,5,0,'2010-05-09 11:27:40',4),(4,5,2,5,6,8,5,0,'2010-05-09 12:49:27',4),(1,5,2,5,6,2,6,0,'2010-05-09 13:19:46',3),(10,5,2,6,5,1,6,-1,'2010-05-09 13:26:35',3),(12,5,2,6,8,5,6,-1,'2010-05-09 13:43:35',6),(2,5,2,6,5,8,5,0,'2010-05-09 13:59:17',5),(16,6,1,6,5,2,0,0,'2010-05-12 16:39:02',3),(16,6,2,6,8,5,2,1,'2010-05-12 16:40:29',4),(11,6,1,8,5,6,0,0,'2010-05-13 19:05:42',2),(11,6,2,6,5,2,6,1,'2010-05-15 17:29:30',5),(14,6,1,8,5,6,0,0,'2010-05-14 09:15:32',2),(14,6,2,8,6,5,8,0,'2010-05-14 09:21:23',1),(7,6,1,11,6,7,0,0,'2010-05-15 13:42:43',2),(7,6,2,6,5,11,6,-1,'2010-05-15 15:11:29',6),(13,6,1,5,3,8,0,0,'2010-05-14 10:23:31',1),(3,6,1,8,5,4,0,0,'2010-05-15 12:07:06',1),(1,6,1,8,5,11,0,0,'2010-05-15 13:34:32',2),(12,6,1,6,5,2,0,0,'2010-05-15 13:40:04',3),(10,6,1,6,5,3,0,0,'2010-05-15 13:41:15',3),(2,6,1,6,11,5,0,0,'2010-05-15 13:49:07',6),(13,6,2,6,7,2,6,1,'2010-05-15 17:36:30',3),(3,6,2,6,5,7,6,1,'2010-05-15 17:58:57',5),(1,6,2,6,5,11,11,1,'2010-05-15 19:31:23',7),(9,6,2,6,5,11,6,1,'2010-05-16 10:59:43',7),(8,6,2,6,5,2,6,1,'2010-05-16 11:04:22',5),(18,6,2,11,6,5,6,0,'2010-05-16 11:05:35',2),(10,6,2,6,5,2,6,1,'2010-05-16 13:35:53',5),(12,6,2,6,11,7,4,-1,'2010-05-16 13:37:20',3),(2,6,2,6,11,2,0,-1,'2010-05-16 13:57:23',3),(16,7,1,6,11,5,0,0,'2010-05-16 16:56:56',4),(16,7,2,6,5,11,5,0,'2010-05-16 16:58:05',2),(13,7,1,5,6,2,0,0,'2010-05-28 09:18:26',3),(14,7,1,5,7,6,0,0,'2010-05-28 10:38:40',2),(14,7,2,6,5,8,6,0,'2010-05-28 10:39:14',2),(7,7,1,6,5,2,0,0,'2010-05-28 16:57:17',4),(11,7,1,5,6,8,0,0,'2010-05-29 11:14:05',2),(3,7,1,5,2,6,0,0,'2010-05-29 11:25:27',4),(9,7,1,5,6,2,0,0,'2010-05-29 11:51:28',3),(8,7,1,5,6,1,0,0,'2010-05-29 12:01:44',2),(1,7,1,5,2,6,0,0,'2010-05-29 12:31:47',4),(18,7,1,6,2,5,0,0,'2010-05-29 12:40:10',6),(3,7,2,6,5,2,5,0,'2010-05-29 15:43:50',3),(1,7,2,6,5,2,5,0,'2010-05-29 22:30:04',3),(11,7,2,6,5,2,2,-1,'2010-05-29 22:31:14',2),(13,7,2,5,6,2,5,0,'2010-05-30 11:28:08',3),(7,7,2,6,2,5,6,-1,'2010-05-30 11:44:10',2),(8,7,2,6,1,2,6,1,'2010-05-30 11:47:05',3),(9,7,2,6,2,1,6,-1,'2010-05-30 11:53:05',3),(18,7,2,6,5,3,6,0,'2010-05-30 11:55:04',2),(10,7,2,6,2,5,6,0,'2010-05-30 12:57:14',3),(4,7,2,2,6,5,2,1,'2010-05-30 13:18:34',2),(12,7,2,6,5,1,6,-1,'2010-05-30 13:27:06',2),(16,8,1,6,2,5,0,0,'2010-05-31 13:14:37',4),(16,8,2,2,1,6,5,1,'2010-05-31 13:15:54',3),(7,8,1,1,6,5,0,0,'2010-06-11 19:29:55',4),(1,8,1,5,2,6,0,0,'2010-06-11 22:00:34',3),(14,8,2,5,6,2,5,0,'2010-06-11 23:33:03',2),(14,8,1,5,8,6,0,0,'2010-06-11 23:33:47',2),(3,8,1,5,6,2,0,0,'2010-06-12 12:16:05',4),(11,8,1,5,2,6,0,0,'2010-06-12 13:38:09',3),(13,8,1,8,5,6,0,0,'2010-06-12 14:44:47',2),(9,8,1,6,2,3,0,0,'2010-06-12 18:11:11',2),(18,8,1,2,1,6,0,0,'2010-06-12 18:12:04',3),(8,8,1,2,8,6,0,0,'2010-06-12 18:13:11',3),(10,8,1,6,2,3,0,0,'2010-06-12 18:16:52',2),(12,8,1,6,2,5,0,0,'2010-06-12 18:20:54',4),(2,8,1,2,6,5,0,0,'2010-06-12 18:57:32',6),(11,8,2,5,2,8,2,1,'2010-06-13 17:58:55',2),(1,8,2,5,8,2,2,1,'2010-06-13 17:59:16',1),(3,8,2,2,6,5,2,1,'2010-06-13 10:45:10',1),(7,8,2,2,6,5,2,0,'2010-06-13 11:50:37',3),(13,8,2,6,5,8,6,1,'2010-06-13 12:16:15',1),(18,8,2,6,2,1,6,-1,'2010-06-13 17:16:44',2),(9,8,2,6,2,5,6,1,'2010-06-13 17:18:00',0),(8,8,2,2,8,6,2,1,'2010-06-13 17:20:48',2),(10,8,2,6,5,2,6,0,'2010-06-13 17:46:54',2),(12,8,2,6,5,2,6,-1,'2010-06-13 17:48:36',1),(2,8,2,2,5,8,2,1,'2010-06-13 17:52:28',3),(16,9,1,2,6,5,0,0,'2010-06-14 09:16:24',4),(16,9,2,2,1,8,11,0,'2010-06-14 09:17:20',1),(13,9,1,2,5,8,0,0,'2010-06-25 12:51:17',2),(13,9,2,2,1,8,2,0,'2010-06-25 12:52:07',1),(7,9,1,2,6,8,0,0,'2010-06-25 17:03:07',3),(7,9,2,5,2,8,5,-1,'2010-06-26 15:15:07',4),(10,9,1,6,5,8,0,0,'2010-06-26 08:40:53',2),(11,9,1,8,2,5,0,0,'2010-06-26 08:42:33',2),(1,9,1,5,6,8,0,0,'2010-06-26 12:40:54',4),(18,9,1,6,11,5,0,0,'2010-06-26 12:51:29',2),(9,9,1,5,6,8,0,0,'2010-06-26 12:54:13',4),(8,9,1,5,6,8,0,0,'2010-06-26 13:03:39',4),(3,9,1,5,6,8,0,0,'2010-06-26 13:21:31',4),(2,9,1,5,11,8,0,0,'2010-06-26 13:48:34',2),(3,9,2,5,2,6,2,1,'2010-06-26 16:23:13',5),(14,9,2,5,6,2,6,0,'2010-06-26 19:49:14',2),(9,9,2,6,5,8,8,-1,'2010-06-27 11:37:27',1),(18,9,2,6,2,8,6,1,'2010-06-27 11:40:00',3),(11,9,2,5,6,2,6,0,'2010-06-27 11:58:52',2),(1,9,2,5,6,2,2,0,'2010-06-27 12:52:37',2),(8,9,2,6,2,5,6,0,'2010-06-27 13:19:48',2),(2,9,2,5,2,6,5,1,'2010-06-27 13:55:17',5),(10,9,2,6,2,8,6,0,'2010-06-27 12:43:46',1),(12,9,2,5,6,8,8,-1,'2010-06-27 12:43:47',2),(16,10,1,5,6,2,0,0,'2010-06-28 11:14:50',4),(16,10,2,5,2,1,1,0,'2010-06-28 11:15:32',1),(13,10,1,5,6,2,0,0,'2010-07-09 09:31:50',4),(10,10,1,6,5,8,0,0,'2010-07-10 09:27:22',4),(12,10,1,6,5,8,0,0,'2010-07-10 09:30:30',4),(7,10,1,5,2,6,0,0,'2010-07-10 10:15:35',3),(3,10,1,5,6,7,0,0,'2010-07-10 12:59:53',4),(18,10,1,6,5,2,0,0,'2010-07-10 13:04:22',2),(9,10,1,5,6,8,0,0,'2010-07-10 13:06:00',6),(8,10,1,6,5,8,0,0,'2010-07-10 13:08:16',4),(1,10,1,5,2,6,0,0,'2010-07-10 13:31:57',3),(11,10,1,5,8,6,0,0,'2010-07-10 13:34:06',4),(2,10,1,5,6,8,0,0,'2010-07-10 13:45:42',6),(7,10,2,5,2,6,5,-1,'2010-07-10 16:44:48',3),(4,10,2,6,5,2,2,1,'2010-07-11 10:11:40',4),(3,10,2,5,6,8,1,0,'2010-07-11 10:20:00',0),(13,10,2,5,6,8,5,-1,'2010-07-11 10:23:00',1),(8,10,2,5,6,7,5,0,'2010-07-11 11:29:23',0),(9,10,2,5,6,2,2,-1,'2010-07-11 11:30:54',2),(18,10,2,6,5,2,6,1,'2010-07-11 11:32:36',4),(1,10,2,5,6,2,6,0,'2010-07-11 11:50:36',1),(11,10,2,5,6,2,2,1,'2010-07-11 11:52:26',3),(10,10,2,5,6,8,6,-1,'2010-07-11 13:38:00',1),(12,10,2,5,6,8,6,-1,'2010-07-11 13:40:09',1),(2,10,2,5,6,8,5,0,'2010-07-11 13:55:25',0),(16,11,1,5,6,8,0,0,'2010-07-13 14:11:22',3),(16,11,2,6,2,4,8,1,'2010-07-13 14:12:22',-1),(13,11,1,5,6,2,0,0,'2010-07-16 10:06:01',2),(13,11,2,2,1,8,8,-1,'2010-07-16 10:06:54',1),(13,12,1,5,6,2,0,0,'2010-07-16 10:07:59',4),(13,12,2,2,1,8,8,-1,'2010-07-16 10:08:39',1),(10,11,1,5,6,8,0,0,'2010-07-24 10:50:27',3),(12,11,1,6,5,8,0,0,'2010-07-24 10:52:17',2),(3,11,1,6,5,7,0,0,'2010-07-24 12:20:16',3),(8,11,1,5,8,6,0,0,'2010-07-24 12:42:07',4),(9,11,1,5,6,8,0,0,'2010-07-24 12:52:13',3),(18,11,1,5,6,8,0,0,'2010-07-24 12:53:37',3),(11,11,1,5,8,6,0,0,'2010-07-24 13:00:28',4),(1,11,1,5,6,2,0,0,'2010-07-24 13:31:59',2),(2,11,1,5,8,6,0,0,'2010-07-24 13:52:28',4),(7,11,2,5,8,6,8,-1,'2010-07-24 20:09:17',2),(9,11,2,5,7,6,8,1,'2010-07-25 10:29:55',2),(18,11,2,5,7,8,6,-1,'2010-07-25 10:31:50',4),(8,11,2,8,7,6,5,1,'2010-07-25 10:34:33',4),(3,11,2,5,8,6,8,1,'2010-07-25 12:20:21',1),(11,11,2,5,8,6,8,-1,'2010-07-25 13:29:20',2),(1,11,2,5,8,6,8,0,'2010-07-25 13:36:11',3),(4,11,2,8,5,7,5,1,'2010-07-25 13:37:55',4),(10,11,2,6,2,8,6,1,'2010-07-25 13:41:40',0),(12,11,2,8,6,7,5,1,'2010-07-25 13:48:12',3),(2,11,2,8,5,6,8,0,'2010-07-25 13:55:09',4),(16,12,1,5,8,7,0,0,'2010-07-26 15:57:11',3),(16,12,2,8,7,5,5,1,'2010-07-26 15:58:04',5),(7,12,1,5,6,2,0,0,'2010-07-30 12:17:11',4),(7,12,2,5,2,8,5,0,'2010-07-30 12:18:09',2),(11,12,1,5,6,8,0,0,'2010-07-31 09:08:27',6),(1,12,1,5,8,6,0,0,'2010-07-31 09:25:21',4),(3,12,1,5,6,8,0,0,'2010-07-31 12:04:24',6),(18,12,1,6,8,5,0,0,'2010-07-31 12:58:08',3),(9,12,1,6,5,8,0,0,'2010-07-31 12:59:33',4),(8,12,1,6,5,8,0,0,'2010-07-31 13:02:31',4),(10,12,1,6,5,8,0,0,'2010-07-31 13:16:41',4),(12,12,1,6,5,8,0,0,'2010-07-31 13:31:30',4),(2,12,1,6,5,8,0,0,'2010-07-31 13:59:03',4),(11,12,2,5,6,8,6,0,'2010-08-01 09:45:20',2),(1,12,2,5,6,8,6,0,'2010-08-01 09:55:34',2),(9,12,2,5,6,7,5,-1,'2010-08-01 11:59:47',3),(18,12,2,6,5,7,6,-1,'2010-08-01 12:02:39',3),(8,12,2,6,7,8,5,-1,'2010-08-01 13:00:30',4),(2,12,2,5,6,8,5,0,'2010-08-01 13:27:53',3),(12,12,2,5,6,8,5,-1,'2010-08-01 13:45:34',4),(10,12,2,5,6,8,5,-1,'2010-08-01 13:47:11',4),(16,13,1,5,6,8,0,0,'2010-08-02 11:57:57',1),(16,13,2,6,8,5,5,0,'2010-08-02 11:58:49',0),(13,13,1,5,6,8,0,0,'2010-08-28 09:59:53',1),(8,13,1,2,5,8,0,0,'2010-08-28 12:13:39',1),(9,13,1,6,2,8,0,0,'2010-08-28 12:19:21',4),(18,13,1,6,8,5,0,0,'2010-08-28 12:20:06',2),(7,13,1,8,5,14,0,0,'2010-08-28 12:40:38',0),(1,13,1,8,2,5,0,0,'2010-08-28 12:48:11',2),(11,13,1,8,2,6,0,0,'2010-08-28 12:48:56',3),(3,13,1,6,2,1,0,0,'2010-08-28 13:27:51',4),(2,13,1,8,2,6,0,0,'2010-08-28 13:53:57',3),(3,13,2,6,2,5,2,0,'2010-08-28 18:19:59',2),(7,13,2,6,2,5,6,-1,'2010-08-28 20:06:13',2),(11,13,2,6,2,5,5,1,'2010-08-29 09:05:46',3),(13,13,2,2,11,6,2,1,'2010-08-29 09:34:50',6),(9,13,2,6,5,2,5,1,'2010-08-29 11:56:37',3),(18,13,2,6,5,2,5,1,'2010-08-29 11:58:25',3),(8,13,2,6,5,8,5,1,'2010-08-29 13:17:59',2),(1,13,2,2,6,1,5,1,'2010-08-29 13:33:07',5),(2,13,2,2,6,5,8,0,'2010-08-29 13:45:50',3),(16,14,1,6,2,11,0,0,'2010-08-29 23:47:48',0),(16,14,2,2,6,11,2,1,'2010-08-29 23:48:28',-1),(2,14,1,8,5,7,0,0,'2010-09-11 09:21:46',4),(7,14,1,2,5,1,0,0,'2010-09-11 11:47:33',1),(7,14,2,2,5,6,6,-1,'2010-09-11 11:48:12',0),(13,14,1,6,8,5,0,0,'2010-09-11 11:49:40',1),(9,14,1,5,2,8,0,0,'2010-09-11 12:30:12',1),(18,14,1,5,2,7,0,0,'2010-09-11 12:31:06',2),(8,14,1,2,8,1,0,0,'2010-09-11 12:32:24',2),(3,14,1,2,8,7,0,0,'2010-09-11 13:25:01',3),(11,14,1,2,5,6,0,0,'2010-09-11 13:30:07',0),(1,14,1,2,5,8,0,0,'2010-09-11 13:35:19',1),(9,14,2,8,7,6,7,-1,'2010-09-12 10:03:32',3),(18,14,2,1,8,6,2,-1,'2010-09-12 10:05:16',2),(13,14,2,8,7,2,8,-1,'2010-09-12 10:14:23',4),(8,14,2,8,7,1,8,-1,'2010-09-12 10:31:02',5),(1,14,2,8,1,2,2,1,'2010-09-12 10:54:19',3),(11,14,2,8,1,6,8,-1,'2010-09-12 10:58:10',5),(3,14,2,8,1,2,2,0,'2010-09-12 12:31:13',5),(16,15,1,8,1,7,0,0,'2010-09-12 19:19:19',2),(16,15,2,8,1,7,8,1,'2010-09-12 19:21:22',4),(19,15,2,8,6,1,5,1,'2010-09-24 16:58:50',4),(19,15,1,5,8,6,0,0,'2010-09-24 16:59:11',2),(13,15,1,5,6,2,0,0,'2010-09-25 09:50:02',3),(11,15,1,5,6,2,0,0,'2010-09-25 11:15:01',3),(9,15,1,5,6,1,0,0,'2010-09-25 11:26:16',1),(18,15,1,6,1,5,0,0,'2010-09-25 11:26:43',1),(8,15,1,6,5,8,0,0,'2010-09-25 11:27:17',3),(7,15,1,5,6,1,0,0,'2010-09-25 12:17:22',1),(7,15,2,8,2,5,8,1,'2010-09-26 13:30:56',5),(2,15,1,5,8,2,0,0,'2010-09-25 14:35:30',4),(3,15,1,5,6,8,0,0,'2010-09-25 14:44:21',2),(1,15,1,5,6,8,0,0,'2010-09-25 15:12:02',2),(13,15,2,5,6,8,5,1,'2010-09-25 20:08:19',4),(9,15,2,5,8,1,5,1,'2010-09-26 11:48:56',3),(18,15,2,5,2,1,2,1,'2010-09-26 11:50:09',2),(8,15,2,5,2,1,8,1,'2010-09-26 11:51:38',3),(3,15,2,8,5,2,5,1,'2010-09-26 12:38:35',5),(1,15,2,8,2,5,8,1,'2010-09-26 12:55:14',5),(11,15,2,5,8,2,8,1,'2010-09-26 12:57:13',4),(2,15,2,8,2,5,8,1,'2010-09-26 13:59:47',5),(16,16,1,8,5,2,0,0,'2010-09-27 10:38:42',3),(16,16,2,8,5,6,8,0,'2010-09-27 10:39:12',2),(19,16,1,5,6,8,0,0,'2010-10-08 11:51:17',4),(19,16,2,5,8,6,9999,-1,'2010-10-08 11:51:35',4),(13,16,1,5,6,8,0,0,'2010-10-08 17:58:08',4),(3,16,1,5,6,8,0,0,'2010-10-08 18:13:12',4),(7,16,1,5,8,6,0,0,'2010-10-08 18:51:06',3),(7,16,2,5,8,6,5,-1,'2010-10-08 18:51:53',4),(11,16,1,5,6,8,0,0,'2010-10-08 21:16:31',4),(2,16,1,5,6,8,0,0,'2010-10-08 21:17:48',4),(8,16,1,5,6,8,0,0,'2010-10-08 22:24:27',4),(9,16,1,6,5,8,0,0,'2010-10-08 22:25:44',2),(18,16,1,6,11,8,0,0,'2010-10-08 22:28:02',1),(1,16,1,5,6,8,0,0,'2010-10-09 01:03:51',4),(3,16,2,5,6,8,5,1,'2010-10-09 13:28:59',7),(13,16,2,5,6,8,5,1,'2010-10-09 13:36:09',7),(1,16,2,5,6,8,5,0,'2010-10-10 04:24:10',5),(8,16,2,5,6,11,5,1,'2010-10-10 04:36:04',5),(11,16,2,6,5,8,6,1,'2010-10-10 07:46:59',6),(16,17,1,5,6,2,0,0,'2010-10-10 10:53:52',4),(16,17,2,5,6,8,6,1,'2010-10-10 10:54:27',2),(11,17,1,6,2,8,0,0,'2010-10-22 21:53:16',3),(13,17,1,5,6,2,0,0,'2010-10-22 22:05:29',4),(3,17,1,5,6,2,0,0,'2010-10-22 22:23:36',4),(18,17,1,8,2,6,0,0,'2010-10-22 23:17:46',2),(7,17,1,5,6,2,0,0,'2010-10-23 00:18:28',4),(1,17,1,2,8,6,0,0,'2010-10-23 06:21:51',2),(19,17,2,8,2,5,8,0,'2010-10-23 07:22:27',4),(7,17,2,5,6,8,6,1,'2010-10-23 10:43:30',2),(3,17,2,5,8,6,5,1,'2010-10-23 18:34:15',2),(13,17,2,6,2,1,6,1,'2010-10-23 19:25:39',3),(11,17,2,5,8,6,8,1,'2010-10-23 21:30:50',3),(18,17,2,6,5,2,6,1,'2010-10-23 23:12:33',2),(8,17,2,6,8,5,5,1,'2010-10-23 23:35:15',2),(1,17,2,5,8,6,8,1,'2010-10-24 00:28:49',3),(2,17,2,5,8,6,8,1,'2010-10-24 07:36:33',3),(16,18,1,5,6,8,0,0,'2010-10-24 19:38:18',2),(16,18,2,8,2,7,8,1,'2010-10-24 19:38:59',2),(7,18,1,5,6,8,0,0,'2010-11-05 21:02:06',2),(11,18,1,5,6,8,0,0,'2010-11-06 12:08:00',2),(13,18,1,5,6,2,0,0,'2010-11-06 13:36:46',2),(8,18,1,5,6,8,0,0,'2010-11-06 15:53:15',2),(1,18,1,5,6,8,0,0,'2010-11-06 15:54:02',2),(3,18,1,5,6,2,0,0,'2010-11-06 16:39:56',2),(19,18,2,5,8,6,7,0,'2010-11-06 17:03:33',3),(19,18,1,8,5,6,0,0,'2010-11-06 16:52:00',4),(13,18,2,6,5,8,5,0,'2010-11-06 23:35:28',3),(7,18,2,6,2,8,6,-1,'2010-11-07 00:39:42',3),(3,18,2,5,6,8,5,1,'2010-11-07 10:35:11',7),(8,18,2,6,8,2,10,-1,'2010-11-07 14:03:44',2),(1,18,2,5,6,8,8,0,'2010-11-07 16:21:01',5),(11,18,2,5,6,2,5,1,'2010-11-07 16:39:33',5),(16,19,1,10,5,6,0,0,'2010-11-07 22:32:09',1),(16,19,2,5,6,8,2,1,'2010-11-07 22:32:43',4),(7,19,1,5,8,2,0,0,'2010-11-12 18:22:19',4),(11,19,1,5,6,2,0,0,'2010-11-12 21:49:17',3),(13,19,1,5,2,6,0,0,'2010-11-13 10:02:17',4),(3,19,1,5,6,2,0,0,'2010-11-13 12:50:31',3),(8,19,1,5,8,6,0,0,'2010-11-13 13:17:10',3),(1,19,1,5,6,2,0,0,'2010-11-13 13:32:11',3),(2,19,1,6,5,8,0,0,'2010-11-13 13:50:36',3),(19,19,2,5,8,2,8,0,'2010-11-13 18:03:50',2),(7,19,2,5,2,8,5,-1,'2010-11-13 20:09:29',4),(3,19,2,5,2,8,5,0,'2010-11-14 11:23:08',3),(8,19,2,5,2,8,5,1,'2010-11-14 11:56:39',5),(13,19,2,5,2,8,5,1,'2010-11-14 12:22:24',5),(1,19,2,5,2,8,2,0,'2010-11-14 12:54:45',4),(11,19,2,5,2,6,5,0,'2010-11-14 12:58:12',3),(2,19,2,2,5,8,5,0,'2010-11-14 13:26:55',1); /*!40000 ALTER TABLE `tips` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `users` -- DROP TABLE IF EXISTS `users`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `users` ( `u_id` int(11) NOT NULL AUTO_INCREMENT, `u_name` char(3) NOT NULL DEFAULT '', `u_passcode` varchar(41) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL DEFAULT '', `u_pic` varchar(20) NOT NULL DEFAULT '', `u_realname` varchar(40) NOT NULL DEFAULT '', `u_nickname` varchar(20) NOT NULL DEFAULT 'not revealed', `u_email` varchar(50) NOT NULL DEFAULT '', `u_emailreminder` int(1) NOT NULL DEFAULT '0', `u_nationality` varchar(20) NOT NULL DEFAULT 'not revealed', `u_favdriver` int(11) NOT NULL DEFAULT '0', `u_since` year(4) NOT NULL DEFAULT '0000', `u_gtwins` int(3) NOT NULL DEFAULT '0', PRIMARY KEY (`u_id`) ) ENGINE=MyISAM AUTO_INCREMENT=21 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `users` -- LOCK TABLES `users` WRITE; /*!40000 ALTER TABLE `users` DISABLE KEYS */; INSERT INTO `users` VALUES (1,'MAM','18d022103920e120b2faabf4be68aa8f','pic_MAM.gif','Markus A. Mascelli','MAM','mam@heimam.at',0,'italian',602,2006,1),(2,'GUE','78918cecf8926d0cada4c5bc31af87a3','pic_GUE.gif','Guenther Schmidt','GueStar','guenther.schmidt@gmail.com',0,'austrian',15,2006,2),(3,'ZEI','8dad7cabce9c511bd4983e8dc96ea5da','pic_ZEI.gif','Christian Zeichmann','Zeichi','christian.zeichmann@atosorigin.com',0,'austrian',0,2007,1),(4,'AFG','83384431390a14889c9955938bb5604f','pic_AFG.gif','Andrea F. Grohmann','','andrea.grohmann@chello.at',0,'austrian',0,2007,0),(6,'JIR','8522c2ccfd6fc5d242ed16d168401fad','avatar.jpg','Juergen Iser','','j.iser@gmx.at',0,'austrian',602,2008,0),(7,'KAI','e5f4d97a4961dea1184bbbe847b591f3','avatar.jpg','Roman Kailbach','Kailo','kailo@gmx.at',0,'austrian',334,2008,0),(8,'WOB','776ad0ef27acc0602c337dc2736f3a97','imagesca63vc0b.jpg','Wolfgang Boehm','WoB','wboehm@gmail.com',0,'austrian',0,2008,0),(9,'REG','776ad0ef27acc0602c337dc2736f3a97','yoshi1.jpg','Regina Boehm','','wboehm@gmail.com',0,'austrian',0,2008,0),(10,'ISA','3c4db9561aa2b8530d5c60014dbfbe86','isa_grid_kl_hp_3.jpg','Ildiko Samu-Puehringer','sam','ildiko.samu@aon.at',0,'hungarian',667,2008,0),(11,'MRO','cda0fd2918d19e20ac871ed79a8d2bb0','pic_MRO.jpg','Martha Rossa','RoMa','rossama@yahoo.com',0,'austrian',334,2008,1),(12,'MPU','48d54f43c30a27137edb383de2605a86','mpu_grid_tip_blaukl.','Michael Puehringer','','michael.puehringer@atosorigin.com',0,'austrian',621,2008,0),(13,'RHA','9ced82c0515df69d4e3311f63d40ffa0','avatar.jpg','Robert Haller','','robert.haller@kabsi.at',0,'austrian',0,2008,0),(14,'FAN','33c2e20d31b3ae8f4564d7517738eb7d','extremeevil.gif','Georg Juren','Schurl','georg.juren@atosorigin.com',0,'austrian',49,2009,0),(15,'MBR','07b9a65e9a0a88cf4ebed5672f209277','avatar.jpg','Markus Brenner','','m.brenn@gmx.net',0,'austrian',0,2009,0),(16,'RSC','d67ee0b6a91696158441100ba2e5a9b0','schicht_roman.jpg','Roman Schicht','','rschicht@yahoo.com',0,'austrian',0,2009,0),(17,'FAB','f9c17117b5b8dbf8cfa83d8057ee1a0b','avatar.jpg','Alexander Fabozzi','','a.fabozzi@gmx.at',0,'austrian',0,2010,0),(18,'MAR','776ad0ef27acc0602c337dc2736f3a97','avatar.jpg','Marina Boehm','','wboehm@gmail.com',0,'austrian',0,2010,0),(19,'IRS','8918b74d571421bcc47fc59816bf8fc2','foto_ivan.png','Ivan Rodriguez','','irodriguezs@hotmail.com',0,'spanish',15,2010,0); /*!40000 ALTER TABLE `users` ENABLE KEYS */; UNLOCK TABLES; -- -- Current Database: `niki_2011` -- CREATE DATABASE /*!32312 IF NOT EXISTS*/ `niki_2011` /*!40100 DEFAULT CHARACTER SET latin1 */; USE `niki_2011`; -- -- Table structure for table `alldrivers` -- DROP TABLE IF EXISTS `alldrivers`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `alldrivers` ( `a_id` int(4) NOT NULL AUTO_INCREMENT, `a_lname` varchar(20) NOT NULL DEFAULT '', `a_fname` varchar(20) NOT NULL DEFAULT '', PRIMARY KEY (`a_id`) ) ENGINE=MyISAM AUTO_INCREMENT=823 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `alldrivers` -- LOCK TABLES `alldrivers` WRITE; /*!40000 ALTER TABLE `alldrivers` DISABLE KEYS */; INSERT INTO `alldrivers` VALUES (1,'ABATE','Carlo'),(2,'ABECASSIS','George'),(3,'ACHESON','Kenny'),(4,'ADAMS','Philippe'),(5,'ADER','Walt'),(6,'ADOLFF','Kurt'),(7,'AGABASHIAN','Fred'),(8,'AHRENS','Kurt Jr.'),(9,'ALBERS','Christijan'),(10,'ALBORETO','Michele'),(11,'ALESI','Jean'),(12,'ALGUERSUARI','Jaime'),(13,'ALLIOT','Philippe'),(14,'ALLISON','Cliff'),(15,'ALONSO','Fernando'),(16,'AMATI','Giovanna'),(17,'AMICK','George'),(18,'AMICK','Red'),(19,'AMON','Chris'),(20,'ANDERSON','Bob'),(21,'ANDERSSON','Conny'),(22,'ANDRETTI','Mario'),(23,'ANDRETTI','Michael'),(24,'ANDREWS','Keith'),(25,'APICELLA','Marco'),(26,'ARMI','Frank'),(27,'ARNOLD','Chuck'),(28,'ARNOUX','Rene'),(29,'ARUNDELL','Peter'),(30,'ASCARI','Alberto'),(31,'ASHDOWN','Peter'),(32,'ASHLEY','Ian'),(33,'ASHMORE','Gerry'),(34,'ASTON','Bill'),(35,'ATTWOOD','Richard'),(36,'AYULO','Manny'),(37,'BADOER','Luca'),(38,'BAGHETTI','Giancarlo'),(39,'BAILEY','Julian'),(40,'BALDI','Mauro'),(41,'BALL','Bobby'),(42,'BALSA','Marcel'),(43,'BANDINI','Lorenzo'),(44,'BANKS','Henry'),(45,'BARBAZZA','Fabrizio'),(46,'BARBER','John'),(47,'BARBER','Skip'),(48,'BARILLA','Paolo'),(49,'BARRICHELLO','Rubens'),(50,'BARTELS','Michael'),(51,'BARTH','Edgar'),(52,'BASSI','Giorgio'),(53,'BAUER','Erwin'),(54,'BAUMGARTNER','Zsolt'),(55,'BAYOL','Elie'),(56,'BEAUMAN','Don'),(57,'BECHEM','Karl–Guenther'),(58,'BEHRA','Jean'),(59,'BELL','Derek'),(60,'BELLOF','Stefan'),(61,'BELMONDO','Paul'),(62,'BELSO','Tom'),(63,'BELTOISE','Jean-Pierre'),(64,'BERETTA','Olivier'),(65,'BERG','Allen'),(66,'BERGER','Georges'),(67,'BERGER','Gerhard'),(68,'BERNARD','Eric'),(69,'BERNOLDI','Enrique'),(70,'BERTAGGIA','Enrico'),(71,'BETTENHAUSEN','Tony'),(72,'BEUTTLER','Mike'),(73,'BHANUBANDH','Birabongse'),(74,'BIANCHI','Lucien'),(75,'BIANCO','Gino'),(76,'BINDER','Hans'),(77,'BIONDETTI','Clemente'),(78,'BIRGER','Pablo'),(79,'BISCH','Art'),(80,'BLANCHARD','Harry'),(81,'BLEEKEMOLEN','Michael'),(82,'BLIGNAUT','Alex'),(83,'BLOKDYK','Trevor'),(84,'BLUNDELL','Mark'),(85,'BOESEL','Raul'),(86,'BOFFA','Menato'),(87,'BONDURANT','Bob'),(88,'BONETTO','Felice'),(89,'BONNIER','Jo'),(90,'BONOMI','Roberto'),(91,'BORDEU','Juan Manuel'),(92,'BORGUDD','Slim'),(93,'BOTHA','Luki'),(94,'BOULLION','Jean-Christophe'),(95,'BOURDAIS','Sebastien'),(96,'BOUTSEN','Thierry'),(97,'BOYD','Johnny'),(98,'BRABHAM','David'),(99,'BRABHAM','Gary'),(100,'BRABHAM','Jack'),(101,'BRACK','Bill'),(102,'BRAMBILLA','Ernesto'),(103,'BRAMBILLA','Vittorio'),(104,'BRANCA','Toni'),(105,'BRANCATELLI','Gianfranco'),(106,'BRANDON','Eric'),(107,'BRANSON','Don'),(108,'BRIDGER','Tom'),(109,'BRISE','Tony'),(110,'BRISTOW','Chris'),(111,'BROEKER','Peter'),(112,'BROOKS','Tony'),(113,'BROWN','Alan'),(114,'BROWN','Walt'),(115,'BROWN','Warwick'),(116,'BRUDES','Adolf'),(117,'BRUNDLE','Martin'),(118,'BRUNI','Gianmaria'),(119,'BRYAN','Jimmy'),(120,'BUCCI','Clemar'),(121,'BUCKNUM','Ronnie'),(122,'BUEB','Ivor'),(123,'BUEMI','Sebastien'),(124,'BUENO','Luiz'),(125,'BURGESS','Ian'),(126,'BURTI','Luciano'),(127,'BUSSINELLO','Roberto'),(128,'BUTTON','Jenson'),(129,'BYRNE','Tommy'),(130,'CABIANCA','Giulio'),(131,'CADE','Phil'),(132,'CAFFI','Alex'),(133,'CAMPBELL-JONES','John'),(134,'CAMPOS','Adrian'),(135,'CANNON','John'),(136,'CANTONI','Eitel'),(137,'CANTRELL','Bill'),(138,'CAPELLI','Ivan'),(139,'CARINI','Piero'),(140,'CARTER','Duane'),(141,'CASTELLOTTI','Eugenio'),(142,'CECOTTO','Johnny'),(143,'CEVERT','Francois'),(144,'CHABOUD','Eugène'),(145,'CHAMBERLAIN','Jay'),(146,'CHAPMAN','Colin'),(147,'CHARLTON','Dave'),(148,'CHAVES','Pedro Matos'),(149,'CHEESBOURG','Bill'),(150,'CHEEVER','Eddie'),(151,'CHIESA','Andrea'),(152,'CHIMERI','Ettore'),(153,'CHIRON','Louis'),(154,'CHITWOOD','Joie'),(155,'CHRISTIE','Bob'),(156,'CLAES','Johnny'),(157,'CLAPHAM','David'),(158,'CLARK','Jim'),(159,'COGAN','Kevin'),(160,'COLLINS','Peter'),(161,'COLLOMB','Bernard'),(162,'COLOMBO','Alberto'),(163,'COMAS','Erik'),(164,'COMOTTI','Franco'),(165,'CONNOR','George'),(166,'CONSTANTINE','George'),(167,'CORDTS','John'),(168,'COULTHARD','David'),(169,'COURAGE','Piers'),(170,'CRAFT','Chris'),(171,'CRAWFORD','Jim'),(172,'CRAWFORD','Ray'),(173,'CRESPO','Alberto'),(174,'CREUS','Antonio'),(175,'CROCKETT','Larry'),(176,'CROOK','Tony'),(177,'CROSS','Art'),(178,'CROSSLEY','Geoff'),(179,'DA MATTA','Cristiano'),(180,'DA SLIVA RAMOS','Hernando'),(181,'DAIGH','Chuck'),(182,'DALMAS','Yannick'),(183,'DALY','Derek'),(184,'DANNER','Christian'),(185,'DAPONTE','Jorge'),(186,'DAVIDSON','Anthony'),(187,'DAVIES','Jimmy'),(188,'DAVIS','Colin'),(189,'DAYWALT','Jimmy'),(190,'DE ADAMICH','Andrea'),(191,'DE ANGELIS','Elio'),(192,'DE ARAUJO CABRAL','Mario'),(193,'DE CESARIS','Andrea'),(194,'DE CHANGY','Alain'),(195,'DE DRYVER','Bernard'),(196,'DE FILIPPIS','Maria Teresa'),(197,'DE GRAFFENRIED','Emmanuel'),(198,'DE KLERK','Peter'),(199,'DE LA ROSA','Pedro'),(200,'DE PORTAGO','Alfonso'),(201,'DE RIU','Giovanni'),(202,'DE TOMASO','Alejandro'),(203,'DE TORNACO','Charles'),(204,'DE VILLOTA','Emilio'),(205,'DE VOS','Ernie'),(206,'DELETRAZ','Jean-Denis'),(207,'DEPAILLER','Patrick'),(208,'DINIZ','Pedro'),(209,'DINSMORE','Duke'),(210,'DOCHNAL','Frank'),(211,'DOLHEM','Jose'),(212,'DONNELLY','Martin'),(213,'DONOHUE','Mark'),(214,'DOORNBOS','Robert'),(215,'D\'OREY','Fritz'),(216,'DOWNING','Ken'),(217,'DRAKE','Bob'),(218,'DRIVER','Paddy'),(219,'DROGO','Piero'),(220,'DUKE','Geoff'),(221,'DUMFRIES','Johnny'),(222,'DUNCAN','Len'),(223,'DUSIO','Piero'),(224,'EATON','George'),(225,'ECCLESTONE','Bernie'),(226,'EDMUNDS','Don'),(227,'EDWARDS','Guy'),(228,'ELFORD','Vic'),(229,'ELISIAN','Ed'),(230,'EMERY','Paul'),(231,'ENGE','Tomas'),(232,'ENGLAND','Paul'),(233,'ERTL','Harald'),(234,'ESTEFANO','Nasif'),(235,'ETANCELIN','Philippe'),(236,'EVANS','Bob'),(237,'FABI','Corrado'),(238,'FABI','Teo'),(239,'FABRE','Pascal'),(240,'FACETTI','Carlo'),(241,'FAGIOLI','Luigi'),(242,'FAIRMAN','Jack'),(243,'FANGIO','Juan Manuel'),(244,'FARINA','Nino'),(245,'FAULKNER','Walt'),(246,'FERGUSON','William'),(247,'FIRMAN','Ralph'),(248,'FISCHER','Ludwig'),(249,'FISCHER','Rudi'),(250,'FISHER','Mike'),(251,'FISICHELLA','Giancarlo'),(252,'FITCH','John'),(253,'FITTIPALDI','Christian'),(254,'FITTIPALDI','Emerson'),(255,'FITTIPALDI','Wilson'),(256,'FITZAU','Theo'),(257,'FLAHERTY','Pat'),(258,'FLINTERMAN','Jan'),(259,'FLOCKHART','Ron'),(260,'FOHR','Myron'),(261,'FOITEK','Gregor'),(262,'FOLLMER','George'),(263,'FONDER','George'),(264,'FONTANA','Norberto'),(265,'FONTES BAYARDO','Azdrubal'),(266,'FORBERG','Carl'),(267,'FORCE','Gene'),(268,'FORINI','Franco'),(269,'FOTHERINGHAM-PARKER','Philip'),(270,'FOYT','A.J.'),(271,'FRANCIA','Giorgio'),(272,'FREELAND','Don'),(273,'FRENTZEN','Heinz-Harald'),(274,'FRERE','Paul'),(275,'FRIESACHER','Patrick'),(276,'FRY','Joe'),(277,'FUSHIDA','Hiroshi'),(278,'GABBIANI','Beppe'),(279,'GACHOT','Bertrand'),(280,'GAILLARD','Patrick'),(281,'GALICA','Divina'),(282,'GALLI','Nanni'),(283,'GALVEZ','Oscar Alfredo'),(284,'GAMBLE','Fred'),(285,'GANLEY','Howden'),(286,'GARDNER','Frank'),(287,'GARRETT','Billy'),(288,'GARTNER','Jo'),(289,'GAZE','Tony'),(290,'GEKI','NN'),(291,'GENDEBIEN','Olivier'),(292,'GENE','Marc'),(293,'GEORGE','Elmer'),(294,'GERARD','Bob'),(295,'GERINI','Gerino'),(296,'GETHIN','Peter'),(297,'GHINZANI','Piercarlo'),(298,'GIACOMELLI','Bruno'),(299,'GIBSON','Dick'),(300,'GINTHER','Richie'),(301,'GIRAUD-CABANTOUS','Yves'),(302,'GIUNTI','Ignazio'),(303,'GLOCK','Timo'),(304,'GLOECKLER','Helm'),(305,'GODIA','Paco'),(306,'GODIN DE BEAUFORT','Carel'),(307,'GOETHALS','Christian'),(308,'GOLDSMITH','Paul'),(309,'GONZALEZ','Jose Froilan'),(310,'GONZALEZ','Oscar'),(311,'GORDINI','Aldo'),(312,'GOULD','Horace'),(313,'GOUNON','Jean-Marc'),(314,'GREEN','Cecil'),(315,'GREENE','Keith'),(316,'GREGORY','Masten'),(317,'GRIFFITH','Cliff'),(318,'GRIGNARD','Georges'),(319,'GRIM','Bobby'),(320,'GROSJEAN','Romain'),(321,'GROUILLARD','Olivier'),(322,'GUBBY','Brian'),(323,'GUELFI','Andre'),(324,'GUERRA','Miguel Angel'),(325,'GUERRERO','Roberto'),(326,'GUGELMIN','Mauricio'),(327,'GURNEY','Dan'),(328,'HAHNE','Hubert'),(329,'HAILWOOD','Mike'),(330,'HAKKINEN','Mika'),(331,'HALFORD','Bruce'),(332,'HALL','Jim'),(333,'HAMILTON','Duncan'),(334,'HAMILTON','Lewis'),(335,'HAMPSHIRE','David'),(336,'HANKS','Sam'),(337,'HANSGEN','Walt'),(338,'HARRIS','Mike'),(339,'HARRISON','Cuth'),(340,'HART','Brian'),(341,'HARTLEY','Gene'),(342,'HASEMI','Masahiro'),(343,'HATTORI','Naoki'),(344,'HAWKINS','Paul'),(345,'HAWTHORN','Mike'),(346,'HAYJE','Boy'),(347,'HEEKS','Willi'),(348,'HEIDFELD','Nick'),(349,'HELFRICH','Theo'),(350,'HELLINGS','Mack'),(351,'HENTON','Brian'),(352,'HERBERT','Johnny'),(353,'HERMAN','Al'),(354,'HERRMANN','Hans'),(355,'HESNAULT','Francois'),(356,'HEYER','Hans'),(357,'HILL','Damon'),(358,'HILL','Graham'),(359,'HILL','Phil'),(360,'HIRT','Peter'),(361,'HOBBS','David'),(362,'HOCKING','Gary'),(363,'HOFFMANN','Ingo'),(364,'HOLLAND','Bill'),(365,'HOLMES','Jackie'),(366,'HOMEIER','Bill'),(367,'HOSHINO','Kazuyoshi'),(368,'HOYT','Jerry'),(369,'HULME','Denny'),(370,'HUNT','James'),(371,'HURTUBISE','Jim'),(372,'HUTCHISON','Gus'),(373,'ICKX','Jacky'),(374,'IDE','Yuji'),(375,'IGLESIAS','Jesus'),(376,'INOUE','Taki'),(377,'IRELAND','Innes'),(378,'IRVINE','Eddie'),(379,'IRWIN','Chris'),(380,'JABOUILLE','Jean-Pierre'),(381,'JACKSON','Jimmy'),(382,'JAMES','Joe'),(383,'JAMES','John'),(384,'JARIER','Jean-Pierre'),(385,'JEAN','Max'),(386,'JOHANSSON','Stefan'),(387,'JOHNSON','Eddie'),(388,'JOHNSON','Leslie'),(389,'JOHNSTONE','Bruce'),(390,'JONES','Alan'),(391,'JONES','Tom'),(392,'JOVER','Juan'),(393,'KARCH','Oswald'),(394,'KARTHIKEYAN','Narain'),(395,'KATAYAMA','Ukyo'),(396,'KAVANAGH','Ken'),(397,'KEEGAN','Rupert'),(398,'KEIZAN','Eddie'),(399,'KELLER','Al'),(400,'KELLY','Joe'),(401,'KENNEDY','Dave'),(402,'KESSEL','Loris'),(403,'KESSLER','Bruce'),(404,'KIESA','Nicolas'),(405,'KINNUNEN','Leo'),(406,'KLADIS','Danny'),(407,'KLENK','Hans'),(408,'KLIEN','Christian'),(409,'KLING','Karl'),(410,'KLODWIG','Ernst'),(411,'KOBAYASHI','Kamui'),(412,'KOINIGG','Helmuth'),(413,'KOVALAINEN','Heikki'),(414,'KOZAROWITZKY','Mikko'),(415,'KRAKAU','Willi'),(416,'KRAUSE','Rudolf'),(417,'KUBICA','Robert'),(418,'KUHNKE','Kurt'),(419,'KUWASHIMA','Masami'),(420,'LA CAZE','Robert'),(421,'LAFFITE','Jacques'),(422,'LAGORCE','Franck'),(423,'LAMMERS','Jan'),(424,'LAMY','Pedro'),(425,'LANDI','Chico'),(426,'LANG','Hermann'),(427,'LANGES','Claudio'),(428,'LARINI','Nicola'),(429,'LARRAURI','Oscar'),(430,'LARROUSSE','Gerard'),(431,'LARSON','Jud'),(432,'LAUDA','Niki'),(433,'LAURENT','Roger'),(434,'LAVAGGI','Giovanni'),(435,'LAWRENCE','Chris'),(436,'LECLERE','Michel'),(437,'LEDERLE','Neville'),(438,'LEES','Geoff'),(439,'LEGAT','Arthur'),(440,'LEHTO','JJ'),(441,'LEONI','Lamberto'),(442,'LESTON','Les'),(443,'LEVEGH','Pierre'),(444,'LEVRETT','Bayliss'),(445,'LEWIS','Jackie'),(446,'LEWIS-EVANS','Stuart'),(447,'LIGIER','Guy'),(448,'LINDEN','Andy'),(449,'LIPPI','Roberto'),(450,'LIUZZI','Vitantonio'),(451,'LOMBARDI','Lella'),(452,'LONDONO','Ricardo'),(453,'LOOF','Ernst'),(454,'LOUVEAU','Henri'),(455,'LOVE','John'),(456,'LOVELY','Pete'),(457,'LOYER','Roger'),(458,'LUCAS','Jean'),(459,'LUCIENBONNET','Jean'),(460,'LUNGER','Brett'),(461,'MACDOWEL','Mike'),(462,'MACKAY-FRASER','Herbert'),(463,'MACKEY','Bill'),(464,'MACKLIN','Lance'),(465,'MAGEE','Damien'),(466,'MAGGS','Tony'),(467,'MAGILL','Mike'),(468,'MAGLIOLI','Umberto'),(469,'MAGNUSSEN','Jan'),(470,'MAIRESSE','Guy'),(471,'MAIRESSE','Willy'),(472,'MANSELL','Nigel'),(473,'MANTOVANI','Sergio'),(474,'MANTZ','Johnny'),(475,'MANZON','Robert'),(476,'MARIMON','Onofre'),(477,'MARKO','Helmut'),(478,'MARQUES','Tarso'),(479,'MARR','Leslie'),(480,'MARSH','Tony'),(481,'MARTIN','Eugene'),(482,'MARTINI','Pierluigi'),(483,'MASS','Jochen'),(484,'MASSA','Felipe'),(485,'MAY','Michael'),(486,'MAYER','Timmy'),(487,'MAZET','Francois'),(488,'MAZZACANE','Gaston'),(489,'MCALPINE','Kenneth'),(490,'MCCARTHY','Perry'),(491,'MCCOY','Ernie'),(492,'MCDOWELL','Johnny'),(493,'MCGRATH','Jack'),(494,'MCGUIRE','Brian'),(495,'MCLAREN','Bruce'),(496,'MCNISH','Allan'),(497,'MCRAE','Graham'),(498,'MCWITHEY','Jim'),(499,'MENDITEGUY','Carlos'),(500,'MERKEL','Harry'),(501,'MERZARIO','Arturo'),(502,'MIERES','Roberto'),(503,'MIGAULT','Francois'),(504,'MILES','John'),(505,'MILES','Ken'),(506,'MILHOUX','Andre'),(507,'MILLER','Chet'),(508,'MITTER','Gerhard'),(509,'MODENA','Stefano'),(510,'MONARCH','Thomas'),(511,'MONTAGNY','Franck'),(512,'MONTEIRO','Tiago'),(513,'MONTERMINI','Andrea'),(514,'MONTEVERDI','Peter'),(515,'MONTGOMERIE-CHARRING','Robin'),(516,'MONTOYA','Juan Pablo'),(517,'MORBIDELLI','Gianni'),(518,'MORENO','Roberto'),(519,'MORGAN','Dave'),(520,'MOSER','Silvio'),(521,'MOSS','Bill'),(522,'MOSS','Stirling'),(523,'MUNARON','Gino'),(524,'MURRAY','David'),(525,'MUSSO','Luigi'),(526,'NAKAJIMA','Kazuki'),(527,'NAKAJIMA','Satoru'),(528,'NAKANO','Shinji'),(529,'NALON','Duke'),(530,'NANNINI','Alessandro'),(531,'NASPETTI','Emanuele'),(532,'NATILI','Massimo'),(533,'NAYLOR','Brian'),(534,'NAZARUK','Mike'),(535,'NEEDELL','Tiff'),(536,'NELLEMAN','Jac'),(537,'NEVE','Patrick'),(538,'NICHOLSON','John'),(539,'NIDAY','Cal'),(540,'NIEDERMAYR','Helmut'),(541,'NIEMANN','Brausch'),(542,'NILSSON','Gunnar'),(543,'NODA','Hideki'),(544,'NUCKEY','Rodney'),(545,'O\'BRIEN','Robert'),(546,'O\'CONNOR','Pat'),(547,'OLIVER','Jackie'),(548,'ONGAIS','Danny'),(549,'OPPITZHAUSER','Karl'),(550,'OWEN','Arthur'),(551,'PACE','Carlos'),(552,'PAGANI','Nello'),(553,'PALETTI','Riccardo'),(554,'PALM','Torsten'),(555,'PALMER','Jonathan'),(556,'PANIS','Olivier'),(557,'PANTANO','Giorgio'),(558,'PAPIS','Massimiliano'),(559,'PARKES','Mike'),(560,'PARNELL','Reg'),(561,'PARNELL','Tim'),(562,'PARSONS','Johnnie'),(563,'PATRESE','Riccardo'),(564,'PEASE','Al'),(565,'PENSKE','Roger'),(566,'PERDISA','Cesare'),(567,'PEREZ-SALA','Luis'),(568,'PERKINS','Larry'),(569,'PESCAROLO','Henri'),(570,'PESENTI-ROSSI','Alessandro'),(571,'PETERS','Josef'),(572,'PETERSON','Ronnie'),(573,'PIAN','Alfredo'),(574,'PICARD','Francois'),(575,'PIETERSE','Ernie'),(576,'PIETSCH','Paul'),(577,'PILETTE','Andre'),(578,'PILETTE','Teddy'),(579,'PIOTTI','Luigi'),(580,'PIPER','David'),(581,'PIQUET','Nelson'),(582,'PIQUET','Nelson Jr.'),(583,'PIROCCHI','Renato'),(584,'PIRONI','Didier'),(585,'PIRRO','Emanuele'),(586,'PIZZONIA','Antonio'),(587,'POLLET','Jacques'),(588,'PON','Ben'),(589,'POORE','Dennis'),(590,'POSEY','Sam'),(591,'POZZI','Charles'),(592,'PRETORIUS','Jackie'),(593,'PRINOTH','Ernesto'),(594,'PROPHET','David'),(595,'PROST','Alain'),(596,'PRYCE','Tom'),(597,'PURLEY','David'),(598,'PUZEY','Clive'),(599,'QUESTER','Dieter'),(600,'RABY','Ian'),(601,'RAHAL','Bobby'),(602,'RAIKKONEN','Kimi'),(603,'RAPHANEL','Pierre-Henri'),(604,'RATHMANN','Dick'),(605,'RATHMANN','Jim'),(606,'RATZENBERGER','Roland'),(607,'REBAQUE','Hector'),(608,'REDMAN','Brian'),(609,'REECE','Jimmy'),(610,'REED','Ray'),(611,'REES','Alan'),(612,'REGAZZONI','Clay'),(613,'REUTEMANN','Carlos'),(614,'REVENTLOW','Lance'),(615,'REVSON','Peter'),(616,'RHODES','John'),(617,'RIBEIRO','Alex'),(618,'RICHARDSON','Ken'),(619,'RIESS','Fritz'),(620,'RIGSBY','Jim'),(621,'RINDT','Jochen'),(622,'RISELEY-PRICHARD','John'),(623,'ROBARTS','Richard'),(624,'RODRIGUEZ','Pedro'),(625,'RODRIGUEZ','Ricardo'),(626,'RODRIGUEZ LARRETA','Alberto'),(627,'ROL','Franco'),(628,'ROLLINSON','Alan'),(629,'ROLT','Tony'),(630,'ROOS','Bertil'),(631,'ROSBERG','Keke'),(632,'ROSBERG','Nico'),(633,'ROSE','Mauri'),(634,'ROSIER','Louis'),(635,'ROSSET','Ricardo'),(636,'ROTHENGATTER','Huub'),(637,'RUBY','Lloyd'),(638,'RUDAZ','Jean-Claude'),(639,'RUSSO','Eddie'),(640,'RUSSO','Paul'),(641,'RUTTMAN','Troy'),(642,'RYAN','Peter'),(643,'SACHS','Eddie'),(644,'SAID','Bob'),(645,'SALAZAR','Eliseo'),(646,'SALO','Mika'),(647,'SALVADORI','Roy'),(648,'SANESI','Consalvo'),(649,'SARRAZIN','Stephane'),(650,'SATO','Takuma'),(651,'SCARBOROUGH','Carl'),(652,'SCARFIOTTI','Ludovico'),(653,'SCARLATTI','Giorgio'),(654,'SCHECKTER','Ian'),(655,'SCHECKTER','Jody'),(656,'SCHELL','Harry'),(657,'SCHENKEN','Tim'),(658,'SCHERRER','Albert'),(659,'SCHIATTARELLA','Domenico'),(660,'SCHILLER','Heinz'),(661,'SCHINDLER','Bill'),(662,'SCHLESSER','Jean-Louis'),(663,'SCHLESSER','Jo'),(664,'SCHNEIDER','Bernd'),(665,'SCHOELLER','Rudolf'),(666,'SCHROEDER','Rob'),(667,'SCHUMACHER','Michael'),(668,'SCHUMACHER','Ralf'),(669,'SCHUPPAN','Vern'),(670,'SCHWELM CRUZ','Adolfo'),(671,'SCOTT','Bob'),(672,'SCOTT BROWN','Archie'),(673,'SCOTTI','Piero'),(674,'SEIDEL','Wolfgang'),(675,'SEIFFERT','Guenther'),(676,'SENNA','Ayrton'),(677,'SERAFINI','Dorino'),(678,'SERRA','Chico'),(679,'SERRURIER','Doug'),(680,'SERVOZ-GAVIN','Johnny'),(681,'SETTEMBER','Tony'),(682,'SHARP','Hap'),(683,'SHAWE-TAYLOR','Brian'),(684,'SHELBY','Carroll'),(685,'SHELLY','Tony'),(686,'SIFFERT','Jo'),(687,'SIMON','Andre'),(688,'SLOTEMAKER','Rob'),(689,'SOLANA','Moises'),(690,'SOLER-ROIG','Alex'),(691,'SOMMER','Raymond'),(692,'SOSPIRI','Vincenzo'),(693,'SOUTH','Stephen'),(694,'SPARKEN','Mike'),(695,'SPEED','Scott'),(696,'SPENCE','Mike'),(697,'STACEY','Alan'),(698,'STARRABBA','Gaetano'),(699,'STEVENSON','Chuck'),(700,'STEWART','Ian'),(701,'STEWART','Jackie'),(702,'STEWART','Jimmy'),(703,'STOHR','Siegfried'),(704,'STOMMELEN','Rolf'),(705,'STREIFF','Philippe'),(706,'STUCK','Hans'),(707,'STUCK','Hans Joachim'),(708,'STUPPACHER','Otto'),(709,'SULLIVAN','Danny'),(710,'SURER','Marc'),(711,'SURTEES','John'),(712,'SUTCLIFFE','Andy'),(713,'SUTIL','Adrian'),(714,'SUTTON','Len'),(715,'SUZUKI','Aguri'),(716,'SUZUKI','Toshio'),(717,'SWATERS','Jacques'),(718,'SWEIKERT','Bob'),(719,'TAKAGI','Toranosuke'),(720,'TAKAHARA','Noritake'),(721,'TAKAHASHI','Kunimitsu'),(722,'TAMBAY','Patrick'),(723,'TARAMAZZO','Luigi'),(724,'TARQUINI','Gabriele'),(725,'TARUFFI','Piero'),(726,'TAYLOR','Dennis'),(727,'TAYLOR','Henry'),(728,'TAYLOR','John'),(729,'TAYLOR','Mike'),(730,'TAYLOR','Trevor'),(731,'TEAGUE','Marshall'),(732,'TEMPLEMAN','Shorty'),(733,'TERRA','Max de'),(734,'TESTUT','Andre'),(735,'THACKWELL','Mike'),(736,'THIELE','Alfonso'),(737,'THOMPSON','Eric'),(738,'THOMSON','Johnny'),(739,'THORNE','Leslie'),(740,'TINGELSTAD','Bud'),(741,'TINGLE','Sam'),(742,'TITTERINGTON','Desmond'),(743,'TOLAN','Johnnie'),(744,'TRIMMER','Tony'),(745,'TRINTIGNANT','Maurice'),(746,'TRULLI','Jarno'),(747,'TUERO','Esteban'),(748,'TUNMER','Guy'),(749,'TURNER','Jack'),(750,'ULMEN','Toni'),(751,'UNSER','Bobby'),(752,'UNSER','Jerry'),(753,'URIA','Alberto'),(754,'VACCARELLA','Nino'),(755,'VAN DE POELE','Eric'),(756,'VAN DER LOF','Dries'),(757,'VAN DER VYVER','Syd'),(758,'VAN LENNEP','Gijs'),(759,'VAN ROOYEN','Basil'),(760,'VEITH','Bob'),(761,'VERSTAPPEN','Jos'),(762,'VETTEL','Sebastian'),(763,'VILLENEUVE','Gilles'),(764,'VILLENEUVE','Jacques'),(765,'VILLENEUVE SR.','Jacques'),(766,'VILLORESI','Luigi'),(767,'VOLONTERIO','Ottorino'),(768,'VON OPEL','Rikky'),(769,'VON TRIPS','Wolfgang'),(770,'VONLANTHEN','Jo'),(771,'VUKOVICH','Bill'),(772,'WACKER','Fred'),(773,'WALKER','David'),(774,'WALKER','Peter'),(775,'WALLARD','Lee'),(776,'WALTER','Heini'),(777,'WARD','Rodger'),(778,'WARWICK','Derek'),(779,'WATSON','John'),(780,'WEBB','Spider'),(781,'WEBBER','Mark'),(782,'WEIDLER','Volker'),(783,'WEILER','Wayne'),(784,'WENDLINGER','Karl'),(785,'WESTBURY','Peter'),(786,'WEYANT','Chuck'),(787,'WHARTON','Ken'),(788,'WHITEAWAY','Ted'),(789,'WHITEHEAD','Graham'),(790,'WHITEHEAD','Peter'),(791,'WHITEHOUSE','Bill'),(792,'WIDDOWS','Robin'),(793,'WIETZES','Eppie'),(794,'WILDS','Mike'),(795,'WILLIAMS','Jonathan'),(796,'WILLIAMSON','Roger'),(797,'WILSON','Dempsey'),(798,'WILSON','Desire'),(799,'WILSON','Justin'),(800,'WILSON','Vic'),(801,'WINKELHOCK','Joachim'),(802,'WINKELHOCK','Manfred'),(803,'WINKELHOCK','Markus'),(804,'WISELL','Reine'),(805,'WUNDERINK','Roelof'),(806,'WURZ','Alexander'),(807,'YAMAMOTO','Sakon'),(808,'YOONG','Alex'),(809,'ZANARDI','Alex'),(810,'ZAPICO','Emilio'),(811,'ZONTA','Ricardo'),(812,'ZORZI','Renzo'),(813,'ZUNINO','Ricardo'),(814,'CHANDHOK','Karun'),(815,'DI GRASSI','Lucas'),(816,'HUELKENBERG','Nico'),(817,'PETROV','Vitaly'),(818,'SENNA','Bruno'),(819,'D\'AMBROSIO','Jerome'),(820,'DI RESTA','Paul'),(821,'MALDONADO','Pastor'),(822,'PEREZ','Sergio'); /*!40000 ALTER TABLE `alldrivers` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `drivers` -- DROP TABLE IF EXISTS `drivers`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `drivers` ( `d_id` int(4) NOT NULL AUTO_INCREMENT, `d_lname` varchar(20) NOT NULL DEFAULT '', `d_fname` varchar(20) NOT NULL DEFAULT '', `d_currseason` int(1) NOT NULL DEFAULT '0', `d_miod` int(3) NOT NULL DEFAULT '0', `d_fa_id` int(3) NOT NULL DEFAULT '0', PRIMARY KEY (`d_id`) ) ENGINE=MyISAM AUTO_INCREMENT=46 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `drivers` -- LOCK TABLES `drivers` WRITE; /*!40000 ALTER TABLE `drivers` DISABLE KEYS */; INSERT INTO `drivers` VALUES (1,'VETTEL','Sebastian',1,30,7),(2,'WEBBER','Mark',1,28,7),(3,'HAMILTON','Lewis',1,27,2),(4,'BUTTON','Jenson',1,26,2),(5,'ALONSO','Fernando',1,29,1),(6,'MASSA','Felipe',1,25,1),(7,'SCHUMACHER','Michael',1,23,11),(8,'ROSBERG','Nico',1,24,11),(9,'HEIDFELD','Nick',1,15,4),(10,'PETROV','Vitaly',1,19,4),(11,'BARRICHELLO','Rubens',1,22,13),(12,'MALDONADO','Pastor',1,10,13),(14,'SUTIL','Adrian',1,21,14),(15,'DI RESTA','Paul',1,7,14),(16,'KOBAYASHI','Kamui',1,20,12),(17,'PEREZ','Sergio',1,9,12),(18,'BUEMI','Sebastien',1,17,6),(19,'ALGUERSUARI','Jaime',1,16,6),(20,'TRULLI','Jarno',1,14,18),(21,'KOVALAINEN','Heikki',1,13,18),(22,'KARTHIKEYAN','Narain',1,11,16),(23,'LIUZZI','Vitantonio',1,18,16),(24,'GLOCK','Timo',1,12,17),(25,'D\'AMBROSIO','Jerome',1,8,17),(26,'RICCIARDO','Daniel',0,0,0),(27,'DE LA ROSA','Pedro',0,0,0),(28,'PAFFETT','Gary',0,0,0),(29,'FISICHELLA','Giancarlo',0,0,0),(30,'BIANCHI','Jules',0,0,0),(31,'GENE','Marc',0,0,0),(32,'BERTOLINI','Andrea',0,0,0),(33,'RIGON','Davide',0,0,0),(34,'KUBICA','Robert',0,0,0),(35,'SENNA','Bruno',0,0,0),(36,'GROSJEAN','Romain',0,0,0),(37,'FAUZY','Fairuz',0,0,0),(38,'BOTTAS','Valtteri',0,0,0),(39,'HUELKENBERG','Nico',0,0,0),(40,'GUTIERREZ','Esteban',0,0,0),(41,'RAZIA','Luiz',0,0,0),(42,'VALSECCHI','Davide',0,0,0),(43,'TEIXEIRA','Ricardo',0,0,0),(44,'YAMAMOTO','Sakon',0,0,0),(45,'CHANDHOK','Karun',0,0,0); /*!40000 ALTER TABLE `drivers` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `events` -- DROP TABLE IF EXISTS `events`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `events` ( `e_id` int(2) NOT NULL AUTO_INCREMENT, `e_type` varchar(20) NOT NULL DEFAULT '', PRIMARY KEY (`e_id`) ) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `events` -- LOCK TABLES `events` WRITE; /*!40000 ALTER TABLE `events` DISABLE KEYS */; INSERT INTO `events` VALUES (1,'QUALIFYING'),(2,'RACE'); /*!40000 ALTER TABLE `events` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `fflassets` -- DROP TABLE IF EXISTS `fflassets`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `fflassets` ( `fa_id` int(4) NOT NULL AUTO_INCREMENT, `fa_currseason` int(1) NOT NULL DEFAULT '0', `fa_chassis` varchar(30) NOT NULL DEFAULT '', `fa_mioc` int(3) NOT NULL DEFAULT '0', `fa_engine` varchar(30) NOT NULL DEFAULT '', `fa_mioe` int(3) NOT NULL DEFAULT '0', PRIMARY KEY (`fa_id`) ) ENGINE=MyISAM AUTO_INCREMENT=19 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `fflassets` -- LOCK TABLES `fflassets` WRITE; /*!40000 ALTER TABLE `fflassets` DISABLE KEYS */; INSERT INTO `fflassets` VALUES (1,1,'Ferrari',28,'Ferrari (Ferrari)',29),(2,1,'McLaren',29,'Mercedes (McLaren)',28),(3,0,'BMW Sauber',0,'BMW (BMW Sauber)',0),(4,1,'Renault',26,'Renault (Renault)',26),(5,0,'Toyota',0,'Toyota (Toyota)',0),(6,1,'Toro Rosso',22,'Ferrari (Toro Rosso)',23),(7,1,'Red Bull',30,'Renault (Red Bull)',25),(8,0,'Williams',0,'Toyota (Williams)',0),(9,0,'Brawn',0,'Mercedes (Brawn)',0),(10,0,'Force India',0,'Ferrari (Force India)',0),(11,1,'Mercedes GP',27,'Mercedes (Mercedes GP)',30),(12,1,'Sauber',23,'Ferrari (Sauber)',24),(13,1,'Williams',25,'Cosworth (Williams)',21),(14,1,'Force India',24,'Mercedes (Force India)',27),(15,0,'Lotus',0,'Cosworth (Lotus)',0),(16,1,'HRT',20,'Cosworth (HRT)',20),(17,1,'Virgin',19,'Cosworth (Virgin)',19),(18,1,'Lotus',21,'Renault (Lotus)',22); /*!40000 ALTER TABLE `fflassets` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `fflpoints` -- DROP TABLE IF EXISTS `fflpoints`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `fflpoints` ( `fp_u_id` int(4) NOT NULL DEFAULT '0', `fp_g_id` int(4) NOT NULL DEFAULT '0', `fp_points` decimal(3,1) NOT NULL DEFAULT '0.0' ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `fflpoints` -- LOCK TABLES `fflpoints` WRITE; /*!40000 ALTER TABLE `fflpoints` DISABLE KEYS */; INSERT INTO `fflpoints` VALUES (6,2,'74.0'),(10,2,'70.0'),(12,2,'58.0'),(1,2,'55.0'),(1,1,'53.0'),(12,1,'54.0'),(10,1,'68.0'),(6,1,'63.0'),(1,3,'57.0'),(12,3,'51.0'),(10,3,'78.0'),(6,3,'70.0'),(1,4,'68.0'),(12,4,'58.0'),(10,4,'63.0'),(6,4,'69.0'),(1,5,'55.0'),(12,5,'55.0'),(10,5,'70.0'),(6,5,'74.0'),(1,6,'55.0'),(12,6,'55.0'),(10,6,'60.0'),(6,6,'70.0'),(1,7,'41.0'),(12,7,'53.0'),(10,7,'66.0'),(6,7,'58.0'),(1,8,'74.0'),(12,8,'68.0'),(10,8,'70.0'),(6,8,'63.0'),(1,9,'82.0'),(12,9,'70.0'),(10,9,'55.0'),(6,9,'49.0'),(1,10,'61.0'),(12,10,'59.0'),(10,10,'62.0'),(6,10,'60.0'),(1,11,'53.0'),(12,11,'57.0'),(10,11,'79.0'),(6,11,'65.0'),(1,12,'67.0'),(12,12,'69.0'),(10,12,'62.0'),(6,12,'64.0'),(1,13,'48.0'),(12,13,'62.0'),(10,13,'67.0'),(6,13,'55.0'),(1,14,'61.0'),(12,14,'62.0'),(10,14,'78.0'),(6,14,'72.0'),(1,15,'56.0'),(12,15,'59.0'),(10,15,'68.0'),(6,15,'62.0'),(1,16,'62.0'),(12,16,'59.0'),(10,16,'79.0'),(6,16,'70.0'),(1,17,'61.0'),(12,17,'62.0'),(10,17,'61.0'),(6,17,'63.0'),(1,18,'48.0'),(12,18,'48.0'),(10,18,'64.0'),(6,18,'56.0'),(1,19,'71.0'),(12,19,'69.0'),(10,19,'72.0'),(6,19,'66.0'); /*!40000 ALTER TABLE `fflpoints` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `fflresults` -- DROP TABLE IF EXISTS `fflresults`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `fflresults` ( `fr_season` int(4) NOT NULL DEFAULT '0', `fr_u_id` int(4) NOT NULL DEFAULT '0', `fr_ft_a_id_d1` int(4) NOT NULL DEFAULT '0', `fr_ft_a_id_d2` int(4) NOT NULL DEFAULT '0', `fr_fa_id_chassis` int(4) NOT NULL DEFAULT '0', `fr_fa_id_engine` int(4) NOT NULL DEFAULT '0', `fr_totalpoints` decimal(5,1) DEFAULT '0.0', PRIMARY KEY (`fr_season`,`fr_u_id`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `fflresults` -- LOCK TABLES `fflresults` WRITE; /*!40000 ALTER TABLE `fflresults` DISABLE KEYS */; INSERT INTO `fflresults` VALUES (2009,0,128,762,9,9,'523.0'),(2009,1,746,762,8,7,'304.5'),(2009,2,15,251,9,1,'276.0'),(2009,3,49,303,9,1,'343.0'),(2009,6,484,128,9,6,'297.0'),(2009,9,602,128,5,7,'356.0'),(2009,10,334,128,8,9,'350.5'),(2009,11,746,128,7,1,'351.0'),(2009,12,762,128,9,1,'421.0'),(2010,0,15,713,7,7,'1295.0'),(2010,1,334,411,11,7,'984.0'),(2010,4,484,762,17,7,'898.0'),(2010,6,484,713,7,6,'702.0'),(2010,9,816,15,11,2,'942.0'),(2010,10,417,303,2,7,'1088.0'),(2010,11,818,15,1,1,'1044.0'),(2010,12,15,816,11,7,'986.0'),(2010,13,49,818,1,6,'456.0'),(2011,6,713,348,2,7,'1223.0'),(2011,1,632,822,1,7,'1128.0'),(2011,12,667,820,7,1,'1128.0'),(2011,10,484,820,7,2,'1292.0'),(2011,0,128,820,7,7,'1597.0'); /*!40000 ALTER TABLE `fflresults` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `fflteams` -- DROP TABLE IF EXISTS `fflteams`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `fflteams` ( `ft_u_id` int(4) NOT NULL DEFAULT '0', `ft_d_id_d1` int(4) NOT NULL DEFAULT '0', `ft_d_id_d2` int(4) NOT NULL DEFAULT '0', `ft_fa_id_chassis` int(4) NOT NULL DEFAULT '0', `ft_fa_id_engine` int(4) NOT NULL DEFAULT '0', PRIMARY KEY (`ft_u_id`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `fflteams` -- LOCK TABLES `fflteams` WRITE; /*!40000 ALTER TABLE `fflteams` DISABLE KEYS */; INSERT INTO `fflteams` VALUES (1,8,17,1,7),(12,7,15,7,1),(10,6,15,7,2),(6,14,9,2,7); /*!40000 ALTER TABLE `fflteams` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `gps` -- DROP TABLE IF EXISTS `gps`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `gps` ( `g_id` int(4) NOT NULL AUTO_INCREMENT, `g_name` varchar(40) NOT NULL DEFAULT '', `g_datetime_q` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `g_datetime_r` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `g_flag` varchar(20) NOT NULL DEFAULT '', `g_circuit` varchar(40) NOT NULL DEFAULT '', PRIMARY KEY (`g_id`) ) ENGINE=MyISAM AUTO_INCREMENT=20 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `gps` -- LOCK TABLES `gps` WRITE; /*!40000 ALTER TABLE `gps` DISABLE KEYS */; INSERT INTO `gps` VALUES (1,'AUSTRALIA (Melbourne)','2011-03-26 07:00:00','2011-03-27 08:00:00','flag_AUSTRALIA.gif','circuit_AUSTRALIA.gif'),(2,'MALAYSIA (Sepang)','2011-04-09 10:00:00','2011-04-10 10:00:00','flag_MALAYSIA.gif','circuit_MALAYSIA.gif'),(3,'CHINA (Shanghai)','2011-04-16 08:00:00','2011-04-17 09:00:00','flag_CHINA.gif','circuit_CHINA.gif'),(4,'TURKEY (Istanbul)','2011-05-07 13:00:00','2011-05-08 14:00:00','flag_TURKEY.gif','circuit_TURKEY.gif'),(5,'SPAIN (Barcelona)','2011-05-21 14:00:00','2011-05-22 14:00:00','flag_SPAIN.gif','circuit_SPAIN_(Barcelona).gif'),(6,'MONACO (Monte Carlo)','2011-05-28 14:00:00','2011-05-29 14:00:00','flag_MONACO.gif','circuit_MONACO.gif'),(7,'CANADA (Montreal)','2011-06-11 19:00:00','2011-06-12 19:00:00','flag_CANADA.gif','circuit_CANADA.gif'),(8,'EUROPE (Valencia)','2011-06-25 14:00:00','2011-06-26 14:00:00','flag_EUROPE.gif','circuit_EUROPE_(Valencia).gif'),(9,'GREAT BRITAIN (Silverstone)','2011-07-09 14:00:00','2011-07-10 14:00:00','flag_UK.gif','circuit_UK.gif'),(10,'GERMANY (Nuerburgring)','2011-07-23 14:00:00','2011-07-24 13:00:00','flag_GERMANY.gif','circuit_GERMANY_(Nuerburgring).gif'),(11,'HUNGARY (Budapest)','2011-07-30 14:00:00','2011-07-31 14:00:00','flag_HUNGARY.gif','circuit_HUNGARY.gif'),(12,'BELGIUM (Spa)','2011-08-27 14:00:00','2011-08-28 14:00:00','flag_BELGIUM.gif','circuit_BELGIUM.gif'),(13,'ITALY (Monza)','2011-09-10 14:00:00','2011-09-11 14:00:00','flag_ITALY.gif','circuit_ITALY.gif'),(14,'SINGAPORE (Singapore)','2011-09-24 16:00:00','2011-09-25 14:00:00','flag_SINGAPORE.gif','circuit_SINGAPORE.gif'),(15,'JAPAN (Suzuka)','2011-10-08 07:00:00','2011-10-09 08:00:00','flag_JAPAN.gif','circuit_JAPAN_(Suzuka).gif'),(16,'SOUTH KOREA (Yeongam)','2011-10-15 07:00:00','2011-10-16 08:00:00','flag_SKOREA.gif','circuit_SKOREA.gif'),(17,'INDIA (New Delhi)','2011-10-29 10:30:00','2011-10-30 10:30:00','flag_INDIA.gif','circuit_INDIA.gif'),(18,'UNITED ARAB EMIRATES (Abu Dhabi)','2011-11-12 14:00:00','2011-11-13 14:00:00','flag_UAE.gif','circuit_UAE.gif'),(19,'BRAZIL (Sao Paulo)','2011-11-26 17:00:00','2011-11-27 17:00:00','flag_BRAZIL.gif','circuit_BRAZIL.gif'); /*!40000 ALTER TABLE `gps` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `results` -- DROP TABLE IF EXISTS `results`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `results` ( `r_g_id` int(4) NOT NULL DEFAULT '0', `r_e_id` int(2) NOT NULL DEFAULT '0', `r_d_id_p1` int(4) NOT NULL DEFAULT '0', `r_d_id_p2` int(4) NOT NULL DEFAULT '0', `r_d_id_p3` int(4) NOT NULL DEFAULT '0', `r_d_id_p4` int(4) NOT NULL DEFAULT '0', `r_d_id_p5` int(4) NOT NULL DEFAULT '0', `r_d_id_p6` int(4) NOT NULL DEFAULT '0', `r_d_id_p7` int(4) NOT NULL DEFAULT '0', `r_d_id_p8` int(4) NOT NULL DEFAULT '0', `r_d_id_p9` int(4) NOT NULL DEFAULT '0', `r_d_id_p10` int(4) NOT NULL DEFAULT '0', `r_fl` int(4) NOT NULL DEFAULT '0', `r_firstout` varchar(20) NOT NULL DEFAULT '0', `r_bestcup` varchar(20) NOT NULL DEFAULT '0', `r_sc` int(2) NOT NULL DEFAULT '-1', `r_hp` int(1) NOT NULL DEFAULT '0', PRIMARY KEY (`r_g_id`,`r_e_id`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `results` -- LOCK TABLES `results` WRITE; /*!40000 ALTER TABLE `results` DISABLE KEYS */; INSERT INTO `results` VALUES (1,1,1,3,2,0,0,0,0,0,0,0,0,'0','0',-1,0),(1,2,1,3,10,5,2,4,6,18,14,15,6,'12','25',0,0),(2,1,1,3,2,0,0,0,0,0,0,0,0,'0','0',-1,0),(2,2,1,4,9,2,6,5,16,3,7,15,2,'12','14',0,0),(3,1,1,4,3,0,0,0,0,0,0,0,0,'0','0',-1,0),(3,2,3,1,2,4,8,6,5,7,10,16,2,'19','2',0,0),(4,1,1,2,8,0,0,0,0,0,0,0,0,'0','0',-1,0),(4,2,1,2,5,3,8,4,9,10,18,16,2,'24','16',0,0),(5,1,2,1,3,0,0,0,0,0,0,0,0,'0','0',-1,0),(5,2,1,3,4,2,5,7,8,9,17,16,3,'23','9',0,0),(6,1,1,4,2,0,0,0,0,0,0,0,0,'0','0',-1,0),(6,2,1,5,4,2,16,3,14,9,11,18,2,'24','9,16,23,14',1,0),(7,1,1,5,6,0,0,0,0,0,0,0,0,'0','0',-1,0),(7,2,4,1,2,7,10,6,16,19,11,18,4,'3','19,25',1,0),(8,1,1,2,3,0,0,0,0,0,0,0,0,'0','0',-1,0),(8,2,1,5,2,3,6,4,8,19,14,9,1,'','19',0,0),(9,1,2,1,5,0,0,0,0,0,0,0,0,'0','0',-1,0),(9,2,5,1,2,3,6,8,17,9,7,19,5,'21','19,9',0,0),(10,1,2,3,1,0,0,0,0,0,0,0,0,'0','0',-1,0),(10,2,3,5,2,1,6,14,8,7,16,10,3,'9','16,18',0,0),(11,1,1,3,4,0,0,0,0,0,0,0,0,'0','0',-1,0),(11,2,4,1,5,3,2,6,15,18,8,19,6,'20','18',0,0),(12,1,1,3,2,0,0,0,0,0,0,0,0,'0','0',-1,0),(12,2,1,2,4,5,7,8,14,6,10,12,2,'19','7',1,0),(13,1,1,3,4,0,0,0,0,0,0,0,0,'0','0',-1,0),(13,2,1,4,5,3,7,6,19,15,35,18,3,'23,10,8','19',1,0),(14,1,1,2,4,0,0,0,0,0,0,0,0,'0','0',-1,0),(14,2,1,4,2,5,3,15,8,14,6,17,4,'24','25,15,23,26',1,0),(15,1,1,4,3,0,0,0,0,0,0,0,0,'0','0',-1,0),(15,2,4,5,1,2,3,7,6,17,10,8,4,'18','8',1,0),(16,1,3,1,4,0,0,0,0,0,0,0,0,'0','0',-1,0),(16,2,1,3,2,4,5,6,19,8,18,15,1,'7','11',1,0),(17,1,1,3,2,0,0,0,0,0,0,0,0,'0','0',-1,0),(17,2,1,4,5,2,7,8,3,19,14,17,1,'16','17',0,0),(18,1,1,3,4,0,0,0,0,0,0,0,0,'0','0',-1,0),(18,2,3,5,4,2,6,8,7,14,15,16,2,'1','11',0,0),(19,1,1,2,4,0,0,0,0,0,0,0,0,'0','0',-1,0),(19,2,2,1,4,5,6,14,8,15,16,10,2,'24','16',0,0); /*!40000 ALTER TABLE `results` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tips` -- DROP TABLE IF EXISTS `tips`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `tips` ( `t_u_id` int(4) NOT NULL DEFAULT '0', `t_g_id` int(4) NOT NULL DEFAULT '0', `t_e_id` int(2) NOT NULL DEFAULT '0', `t_d_id_p1` int(4) NOT NULL DEFAULT '0', `t_d_id_p2` int(4) NOT NULL DEFAULT '0', `t_d_id_p3` int(4) NOT NULL DEFAULT '0', `t_fl` int(4) NOT NULL DEFAULT '0', `t_firstout` int(4) NOT NULL DEFAULT '0', `t_bestcup` int(4) NOT NULL DEFAULT '0', `t_sc` int(2) NOT NULL DEFAULT '0', `t_timestamp` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `t_score` int(4) NOT NULL DEFAULT '0', PRIMARY KEY (`t_u_id`,`t_g_id`,`t_e_id`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tips` -- LOCK TABLES `tips` WRITE; /*!40000 ALTER TABLE `tips` DISABLE KEYS */; INSERT INTO `tips` VALUES (12,1,1,5,1,3,0,0,0,0,'2011-03-25 09:55:02',2),(6,1,1,1,4,3,0,0,0,0,'2011-03-25 12:34:35',3),(6,1,2,1,3,2,1,25,14,-1,'2011-03-26 12:15:08',4),(3,1,1,1,2,5,0,0,0,0,'2011-03-25 16:32:33',3),(10,1,1,3,1,2,0,0,0,0,'2011-03-25 22:17:31',4),(7,1,1,4,1,5,0,0,0,0,'2011-03-25 23:14:08',1),(1,1,1,1,2,3,0,0,0,0,'2011-03-26 06:45:05',4),(2,1,1,1,2,5,0,0,0,0,'2011-03-26 06:52:53',3),(3,1,2,1,2,4,1,25,7,1,'2011-03-26 10:57:11',1),(12,1,2,1,2,5,1,4,7,1,'2011-03-26 13:45:54',1),(18,1,2,1,3,4,3,22,11,0,'2011-03-26 18:04:47',5),(1,1,2,1,2,4,1,25,9,1,'2011-03-26 20:36:21',1),(10,1,2,1,3,2,3,24,11,0,'2011-03-26 21:11:35',5),(7,1,2,1,4,2,1,9999,9999,-1,'2011-03-27 00:59:03',2),(12,2,1,1,2,3,0,0,0,0,'2011-04-08 10:41:38',4),(6,2,1,1,2,3,0,0,0,0,'2011-04-08 14:32:50',4),(6,2,2,1,3,2,3,22,10,-1,'2011-04-09 12:31:42',2),(3,2,1,1,2,3,0,0,0,0,'2011-04-08 18:13:21',4),(1,2,1,2,3,1,0,0,0,0,'2011-04-08 22:44:50',4),(18,2,1,3,2,1,0,0,0,0,'2011-04-09 09:30:25',3),(10,2,1,2,3,1,0,0,0,0,'2011-04-09 09:34:51',4),(2,2,1,1,2,3,0,0,0,0,'2011-04-09 09:51:50',4),(1,2,2,1,3,4,3,22,17,0,'2011-04-09 11:44:07',4),(10,2,2,1,2,3,2,22,8,1,'2011-04-09 19:16:44',2),(12,2,2,1,2,3,10,40,10,1,'2011-04-09 21:14:56',1),(3,2,2,1,2,3,1,23,7,1,'2011-04-10 08:11:54',1),(9,2,2,1,3,2,1,23,15,0,'2011-04-10 08:57:49',3),(7,2,2,1,2,3,1,9999,9999,1,'2011-04-10 09:23:25',1),(18,2,2,3,1,4,3,22,19,1,'2011-04-10 09:32:27',1),(2,2,2,3,4,1,3,23,11,1,'2011-04-10 09:35:33',2),(3,3,1,1,2,3,0,0,0,0,'2011-04-11 16:18:39',4),(3,3,2,1,3,4,1,22,2,1,'2011-04-16 19:02:29',4),(6,3,1,1,3,2,0,0,0,0,'2011-04-15 10:30:47',3),(6,3,2,1,4,3,1,12,2,1,'2011-04-16 12:29:39',4),(18,3,1,1,3,4,0,0,0,0,'2011-04-15 14:12:16',4),(1,3,1,1,3,4,0,0,0,0,'2011-04-16 07:34:37',4),(10,3,1,1,3,4,0,0,0,0,'2011-04-15 22:40:27',4),(12,3,1,3,1,4,0,0,0,0,'2011-04-15 23:41:36',3),(2,3,1,1,3,4,0,0,0,0,'2011-04-16 07:58:27',4),(1,3,2,1,4,3,5,12,2,0,'2011-04-16 09:35:54',6),(12,3,2,1,3,8,2,11,2,-1,'2011-04-16 12:00:29',6),(10,3,2,1,4,3,4,22,2,1,'2011-04-16 20:33:30',4),(7,3,2,1,4,8,1,12,2,0,'2011-04-16 23:49:53',5),(18,3,2,3,4,1,6,10,2,1,'2011-04-17 01:28:49',5),(2,3,2,1,4,3,5,12,2,0,'2011-04-17 08:49:06',6),(1,4,1,3,1,4,0,0,0,0,'2011-05-01 08:46:46',1),(1,4,2,1,2,3,42,24,6,0,'2011-05-07 22:17:32',7),(10,4,1,1,3,2,0,0,0,0,'2011-05-01 22:27:37',3),(10,4,2,1,2,3,5,22,6,1,'2011-05-07 21:41:40',3),(6,4,2,1,2,3,1,12,6,-1,'2011-05-07 19:20:36',4),(6,4,1,4,3,1,0,0,0,0,'2011-05-06 15:42:24',1),(12,4,1,3,8,1,0,0,0,0,'2011-05-06 21:40:34',2),(7,4,1,7,1,8,0,0,0,0,'2011-05-07 11:41:22',3),(12,4,2,1,2,8,8,6,21,-1,'2011-05-07 15:59:32',4),(18,4,2,2,3,5,5,19,7,1,'2011-05-08 06:50:56',2),(7,4,2,1,8,2,1,22,7,-1,'2011-05-08 13:43:01',3),(2,4,2,1,3,8,6,43,6,0,'2011-05-08 13:49:08',3),(2,4,1,1,3,4,0,0,0,0,'2011-05-07 12:57:00',2),(12,5,1,1,5,2,0,0,0,0,'2011-05-20 07:36:31',2),(6,5,1,1,2,8,0,0,0,0,'2011-05-20 12:49:44',2),(6,5,2,2,1,3,1,12,10,0,'2011-05-21 15:35:01',3),(18,5,1,1,2,3,0,0,0,0,'2011-05-21 12:15:20',4),(10,5,1,1,2,8,0,0,0,0,'2011-05-21 13:33:26',2),(1,5,1,1,2,3,0,0,0,0,'2011-05-21 13:37:35',4),(2,5,1,1,2,3,0,0,0,0,'2011-05-21 13:41:05',4),(12,5,2,1,2,5,5,40,11,-1,'2011-05-22 08:21:02',2),(10,5,2,1,2,3,2,22,9,0,'2011-05-22 12:47:34',7),(1,5,2,1,2,5,1,25,9,0,'2011-05-22 13:29:52',6),(2,5,2,2,1,5,1,19,11,0,'2011-05-22 13:53:36',2),(6,6,1,5,3,1,0,0,0,0,'2011-05-27 14:24:18',1),(6,6,2,1,5,3,1,19,7,1,'2011-05-28 09:13:00',5),(12,6,1,3,1,5,0,0,0,0,'2011-05-27 19:50:46',1),(1,6,1,5,3,1,0,0,0,0,'2011-05-27 21:32:32',1),(18,6,1,5,3,1,0,0,0,0,'2011-05-28 12:06:44',1),(2,6,1,1,3,5,0,0,0,0,'2011-05-28 12:07:00',2),(10,6,1,1,2,3,0,0,0,0,'2011-05-28 12:19:56',3),(1,6,2,1,5,4,3,12,16,1,'2011-05-28 15:47:29',10),(12,6,2,1,2,4,8,23,9,1,'2011-05-29 08:59:45',8),(2,6,2,1,3,5,3,23,11,1,'2011-05-29 13:09:00',4),(10,6,2,1,2,5,1,15,9,1,'2011-05-29 13:39:23',7),(6,7,1,1,2,8,0,0,0,0,'2011-06-10 16:17:23',2),(12,7,1,1,5,4,0,0,0,0,'2011-06-11 09:07:32',4),(1,7,1,1,5,6,0,0,0,0,'2011-06-11 18:50:56',6),(18,7,1,5,1,8,0,0,0,0,'2011-06-11 18:31:50',2),(10,7,1,1,3,4,0,0,0,0,'2011-06-11 18:46:52',2),(2,7,1,1,5,3,0,0,0,0,'2011-06-11 18:52:28',4),(1,7,2,5,1,3,2,27,14,1,'2011-06-11 21:56:47',3),(6,7,2,1,5,3,1,12,24,0,'2011-06-12 01:35:12',0),(10,7,2,1,5,3,2,22,19,1,'2011-06-12 18:06:20',5),(18,7,2,5,6,1,5,27,19,1,'2011-06-12 18:09:19',5),(2,7,2,1,5,3,3,16,4,1,'2011-06-12 18:53:28',2),(7,7,2,1,3,4,3,19,3,1,'2011-06-12 18:53:45',3),(12,8,1,5,3,1,0,0,0,0,'2011-06-24 20:31:19',2),(6,8,1,1,3,5,0,0,0,0,'2011-06-24 21:30:13',3),(6,8,2,1,2,5,2,12,8,0,'2011-06-24 21:31:51',5),(7,8,1,3,1,5,0,0,0,0,'2011-06-25 11:07:22',2),(10,8,1,1,5,6,0,0,0,0,'2011-06-25 12:24:52',2),(1,8,1,1,5,2,0,0,0,0,'2011-06-25 12:45:33',3),(18,8,1,1,5,6,0,0,0,0,'2011-06-25 13:08:38',2),(12,8,2,1,2,5,5,40,10,0,'2011-06-25 18:11:01',5),(1,8,2,1,3,5,4,24,16,1,'2011-06-25 18:28:19',2),(10,8,2,1,3,5,2,12,11,1,'2011-06-25 23:42:21',2),(7,8,2,1,5,4,5,3,7,-1,'2011-06-26 13:54:13',4),(2,8,2,1,5,2,1,19,4,1,'2011-06-26 13:42:01',6),(18,8,2,1,5,2,5,25,19,0,'2011-06-26 13:51:25',10),(2,8,1,1,5,3,0,0,0,0,'2011-06-25 13:56:06',4),(12,9,2,1,2,3,1,15,6,1,'2011-07-08 11:24:41',1),(6,9,1,1,2,3,0,0,0,0,'2011-07-08 16:53:31',2),(6,9,2,2,1,5,2,23,19,0,'2011-07-10 03:38:27',8),(18,9,1,5,1,6,0,0,0,0,'2011-07-09 13:09:34',3),(7,9,1,1,5,6,0,0,0,0,'2011-07-09 13:24:49',2),(1,9,1,1,2,5,0,0,0,0,'2011-07-09 13:42:53',4),(10,9,1,1,2,5,0,0,0,0,'2011-07-09 13:43:25',4),(2,9,1,1,5,3,0,0,0,0,'2011-07-09 13:53:10',2),(1,9,2,5,6,2,2,26,3,0,'2011-07-10 00:54:53',5),(10,9,2,2,1,5,2,26,3,1,'2011-07-10 13:25:50',3),(18,9,2,5,2,1,5,3,19,0,'2011-07-10 13:29:56',9),(7,9,2,1,5,2,5,12,3,1,'2011-07-10 13:40:00',4),(2,9,2,5,1,2,5,11,9,0,'2011-07-10 13:54:58',11),(12,10,1,1,2,5,0,0,0,0,'2011-07-16 14:36:08',2),(12,10,2,1,2,5,5,11,10,-1,'2011-07-16 14:37:09',2),(12,11,1,1,2,5,0,0,0,0,'2011-07-16 14:38:31',2),(12,11,2,1,2,5,5,11,10,-1,'2011-07-16 14:39:47',3),(6,10,2,2,1,5,2,21,19,0,'2011-07-24 12:23:26',3),(6,10,1,5,1,2,0,0,0,0,'2011-07-23 10:48:52',2),(1,10,1,1,2,5,0,0,0,0,'2011-07-23 13:10:23',2),(10,10,1,1,5,2,0,0,0,0,'2011-07-23 13:12:17',2),(7,10,1,1,5,2,0,0,0,0,'2011-07-23 13:25:25',2),(18,10,1,1,5,2,0,0,0,0,'2011-07-23 13:30:44',2),(2,10,1,2,5,1,0,0,0,0,'2011-07-23 13:57:26',4),(1,10,2,3,1,2,2,45,16,1,'2011-07-24 12:37:57',6),(10,10,2,2,1,3,2,24,19,1,'2011-07-24 12:58:30',1),(2,10,2,5,2,3,3,21,16,0,'2011-07-24 13:50:09',8),(7,10,2,3,1,5,3,19,7,1,'2011-07-24 13:55:48',3),(10,11,1,2,1,3,0,0,0,0,'2011-07-30 10:57:15',2),(18,11,1,1,5,3,0,0,0,0,'2011-07-30 13:29:37',3),(1,11,1,1,3,5,0,0,0,0,'2011-07-30 13:42:09',4),(2,11,1,1,5,3,0,0,0,0,'2011-07-30 13:43:45',3),(7,11,1,3,1,5,0,0,0,0,'2011-07-30 13:52:09',2),(1,11,2,3,1,5,3,21,18,0,'2011-07-31 09:14:09',8),(6,11,2,1,4,5,5,21,16,0,'2011-07-31 12:01:46',5),(18,11,2,3,1,5,5,15,19,0,'2011-07-31 13:35:38',5),(10,11,2,1,3,5,5,26,18,1,'2011-07-31 13:41:28',5),(7,11,2,1,3,2,3,12,10,1,'2011-07-31 13:47:30',0),(2,11,2,3,1,4,3,23,18,0,'2011-07-31 13:57:55',7),(12,12,1,1,5,2,0,0,0,0,'2011-08-26 16:55:52',4),(6,12,1,2,5,1,0,0,0,0,'2011-08-27 01:00:14',2),(6,12,2,2,1,5,2,20,18,0,'2011-08-27 01:01:10',2),(7,12,1,2,3,5,0,0,0,0,'2011-08-27 13:02:25',3),(10,12,1,2,4,3,0,0,0,0,'2011-08-27 13:14:23',2),(1,12,1,2,3,1,0,0,0,0,'2011-08-27 13:31:44',4),(18,12,1,2,3,5,0,0,0,0,'2011-08-27 13:40:38',3),(2,12,1,5,1,3,0,0,0,0,'2011-08-27 13:48:19',2),(12,12,2,1,8,3,3,19,7,1,'2011-08-28 09:22:48',8),(1,12,2,3,1,2,5,20,7,1,'2011-08-28 13:40:32',6),(10,12,2,1,3,2,5,12,7,-1,'2011-08-28 13:41:32',6),(7,12,2,1,2,3,3,12,7,0,'2011-08-28 13:42:43',6),(2,12,2,3,1,2,1,26,7,0,'2011-08-28 13:54:37',4),(18,12,2,1,2,5,5,15,4,1,'2011-08-28 13:55:35',5),(12,13,1,3,5,1,0,0,0,0,'2011-09-09 14:52:58',2),(7,13,1,1,2,3,0,0,0,0,'2011-09-10 12:37:47',3),(18,13,1,1,5,2,0,0,0,0,'2011-09-10 13:02:35',2),(10,13,1,1,2,3,0,0,0,0,'2011-09-10 13:21:17',3),(1,13,1,1,2,3,0,0,0,0,'2011-09-10 13:36:51',3),(2,13,1,1,3,2,0,0,0,0,'2011-09-10 13:49:24',4),(12,13,2,1,4,3,1,35,19,-1,'2011-09-10 22:07:45',7),(6,13,2,1,3,4,1,19,7,0,'2011-09-11 02:07:29',2),(1,13,2,1,3,5,2,19,16,0,'2011-09-11 08:58:09',3),(10,13,2,1,3,5,2,12,16,-1,'2011-09-11 10:56:48',4),(7,13,2,4,5,1,1,12,14,1,'2011-09-11 13:50:10',4),(2,13,2,1,3,5,1,20,16,1,'2011-09-11 13:53:46',5),(1,14,1,1,3,2,0,0,0,0,'2011-09-24 14:43:47',3),(10,14,1,1,3,5,0,0,0,0,'2011-09-24 14:44:32',2),(7,14,1,1,2,4,0,0,0,0,'2011-09-24 15:15:20',6),(18,14,1,5,1,3,0,0,0,0,'2011-09-24 15:32:49',1),(12,14,2,1,2,4,4,19,10,0,'2011-09-24 19:34:23',4),(6,14,2,1,4,5,1,35,19,1,'2011-09-24 23:30:45',5),(18,14,2,1,4,5,4,16,19,1,'2011-09-25 11:48:04',6),(1,14,2,1,4,5,1,19,16,1,'2011-09-25 12:39:34',5),(7,14,2,1,4,5,1,3,15,1,'2011-09-25 13:34:13',8),(2,14,2,1,5,3,0,0,0,-1,'2011-09-15 13:39:00',2),(10,14,2,1,2,5,1,12,19,1,'2011-09-25 13:48:21',4),(12,15,1,4,1,3,0,0,0,0,'2011-10-07 09:27:45',4),(1,15,1,4,3,1,0,0,0,0,'2011-10-08 06:51:14',3),(10,15,1,1,4,5,0,0,0,0,'2011-10-07 22:14:17',4),(18,15,1,4,5,2,0,0,0,0,'2011-10-08 00:53:01',1),(2,15,1,4,1,3,0,0,0,0,'2011-10-08 06:57:34',4),(6,15,2,1,4,3,4,19,10,-1,'2011-10-08 11:29:57',3),(18,15,2,1,4,5,4,20,8,0,'2011-10-08 14:44:43',6),(12,15,2,4,3,1,3,7,8,1,'2011-10-08 21:00:36',8),(1,15,2,4,1,5,4,23,8,0,'2011-10-08 21:18:53',7),(10,15,2,1,4,5,4,24,8,1,'2011-10-09 01:03:53',8),(2,15,2,4,1,3,3,23,8,0,'2011-10-09 07:35:00',5),(12,16,1,5,4,1,0,0,0,0,'2011-10-14 09:51:04',2),(12,16,2,5,4,1,4,18,8,1,'2011-10-14 09:51:49',2),(6,16,1,4,1,5,0,0,0,0,'2011-10-14 20:46:08',3),(6,16,2,4,5,1,4,18,8,-1,'2011-10-14 20:47:36',1),(10,16,1,1,4,3,0,0,0,0,'2011-10-14 20:52:55',3),(1,16,1,4,3,1,0,0,0,0,'2011-10-14 22:47:29',3),(18,16,1,3,4,5,0,0,0,0,'2011-10-14 23:54:30',3),(2,16,1,1,4,3,0,0,0,0,'2011-10-15 06:48:09',3),(1,16,2,4,1,5,3,23,17,1,'2011-10-15 10:03:53',2),(10,16,2,3,1,4,3,18,7,-1,'2011-10-15 13:24:01',2),(18,16,2,1,3,4,4,24,7,1,'2011-10-15 22:31:20',5),(2,16,2,3,4,1,3,25,35,0,'2011-10-16 07:46:46',1),(12,17,1,1,5,2,0,0,0,0,'2011-10-28 18:32:47',4),(10,17,1,1,4,3,0,0,0,0,'2011-10-29 09:26:10',3),(1,17,1,1,3,4,0,0,0,0,'2011-10-29 09:54:47',4),(18,17,1,1,4,3,0,0,0,0,'2011-10-29 10:12:33',3),(12,17,2,1,2,5,5,35,10,-1,'2011-10-29 18:05:04',4),(18,17,2,1,5,2,5,24,7,0,'2011-10-29 18:41:53',4),(1,17,2,1,4,5,1,35,10,1,'2011-10-29 23:11:36',6),(10,17,2,1,5,3,5,24,16,1,'2011-10-29 23:52:10',2),(18,18,1,1,3,4,0,0,0,0,'2011-11-12 08:51:41',6),(12,18,1,3,1,4,0,0,0,0,'2011-11-12 09:40:52',4),(6,18,1,4,3,1,0,0,0,0,'2011-11-12 13:04:29',4),(6,18,2,4,1,5,4,16,7,-1,'2011-11-12 13:05:48',2),(1,18,1,3,1,4,0,0,0,0,'2011-11-12 13:15:44',4),(10,18,1,3,1,2,0,0,0,0,'2011-11-12 13:35:43',2),(2,18,1,3,1,4,0,0,0,0,'2011-11-12 13:56:38',4),(12,18,2,1,3,4,5,6,10,-1,'2011-11-13 08:37:08',3),(18,18,2,1,3,4,1,20,19,0,'2011-11-13 11:55:30',4),(1,18,2,3,1,4,1,24,11,0,'2011-11-13 13:38:00',8),(10,18,2,1,3,2,1,24,11,1,'2011-11-13 13:38:41',3),(12,19,1,1,5,3,0,0,0,0,'2011-11-26 09:58:22',2),(18,19,1,1,4,5,0,0,0,0,'2011-11-26 15:45:09',3),(10,19,1,1,3,2,0,0,0,0,'2011-11-26 15:57:12',3),(1,19,1,1,3,2,0,0,0,0,'2011-11-26 16:02:43',3),(1,19,2,1,4,2,1,21,12,1,'2011-11-26 18:36:54',2),(12,19,2,2,5,8,5,35,7,1,'2011-11-26 20:02:27',1),(10,19,2,1,4,3,1,12,16,1,'2011-11-27 16:32:30',4),(18,19,2,1,4,5,5,10,7,1,'2011-11-27 16:56:15',1); /*!40000 ALTER TABLE `tips` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `users` -- DROP TABLE IF EXISTS `users`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `users` ( `u_id` int(11) NOT NULL AUTO_INCREMENT, `u_name` char(3) NOT NULL DEFAULT '', `u_passcode` varchar(41) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL DEFAULT '', `u_pic` varchar(40) DEFAULT NULL, `u_realname` varchar(40) NOT NULL DEFAULT '', `u_nickname` varchar(20) NOT NULL DEFAULT 'not revealed', `u_email` varchar(50) NOT NULL DEFAULT '', `u_emailreminder` int(1) NOT NULL DEFAULT '0', `u_nationality` varchar(20) NOT NULL DEFAULT 'not revealed', `u_favdriver` int(11) NOT NULL DEFAULT '0', `u_since` year(4) NOT NULL DEFAULT '0000', `u_gtwins` int(3) NOT NULL DEFAULT '0', `u_admin` int(1) NOT NULL DEFAULT '0', PRIMARY KEY (`u_id`) ) ENGINE=MyISAM AUTO_INCREMENT=23 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `users` -- LOCK TABLES `users` WRITE; /*!40000 ALTER TABLE `users` DISABLE KEYS */; INSERT INTO `users` VALUES (1,'MAM','18d022103920e120b2faabf4be68aa8f','pic_MAM.gif','Markus A. Mascelli','MAM','mam@heimam.at',0,'italian',602,2006,2,1),(2,'GUE','78918cecf8926d0cada4c5bc31af87a3','pic_GUE.gif','Guenther Schmidt','GueStar','guenther.schmidt@gmail.com',0,'austrian',15,2006,2,0),(3,'ZEI','8dad7cabce9c511bd4983e8dc96ea5da','pic_ZEI.gif','Christian Zeichmann','Zeichi','christian.zeichmann@atosorigin.com',0,'austrian',0,2007,1,0),(4,'AFG','83384431390a14889c9955938bb5604f','pic_AFG.gif','Andrea F. Grohmann','','andrea.grohmann@chello.at',0,'austrian',0,2007,0,0),(5,'JIR','8522c2ccfd6fc5d242ed16d168401fad','avatar.jpg','Juergen Iser','','j.iser@gmx.at',0,'austrian',602,2008,0,0),(6,'KAI','e5f4d97a4961dea1184bbbe847b591f3','avatar.jpg','Roman Kailbach','Kailo','kailo@gmx.at',0,'austrian',334,2008,0,0),(7,'WOB','776ad0ef27acc0602c337dc2736f3a97','imagesca63vc0b.jpg','Wolfgang Boehm','WoB','wboehm@gmail.com',0,'austrian',0,2008,0,0),(8,'REG','776ad0ef27acc0602c337dc2736f3a97','yoshi1.jpg','Regina Boehm','','wboehm@gmail.com',0,'austrian',0,2008,0,0),(9,'ISA','3c4db9561aa2b8530d5c60014dbfbe86','isa_grid_kl_hp_3.jpg','Ildiko Samu-Puehringer','sam','ildiko.samu@aon.at',0,'hungarian',781,2008,0,0),(10,'MRO','cda0fd2918d19e20ac871ed79a8d2bb0','pic_MRO.jpg','Martha Rossa','RoMa','rossama@yahoo.com',0,'austrian',334,2008,1,1),(11,'MPU','48d54f43c30a27137edb383de2605a86','mpu_grid_tip_blaukl.jpg','Michael Puehringer','','michael.puehringer@atosorigin.com',0,'austrian',621,2008,0,0),(12,'RHA','9ced82c0515df69d4e3311f63d40ffa0','avatar.jpg','Robert Haller','','robert.haller@kabsi.at',0,'austrian',0,2008,0,0),(13,'FAN','33c2e20d31b3ae8f4564d7517738eb7d','extremeevil.gif','Georg Juren','Schurl','georg.juren@atosorigin.com',0,'austrian',49,2009,0,0),(14,'MBR','f9c17117b5b8dbf8cfa83d8057ee1a0b','avatar.jpg','Markus Brenner','','m.brenn@gmx.net',0,'austrian',0,2009,0,0),(15,'RSC','d67ee0b6a91696158441100ba2e5a9b0','schicht_roman.jpg','Roman Schicht','','rschicht@yahoo.com',0,'austrian',0,2009,0,0),(16,'FAB','f9c17117b5b8dbf8cfa83d8057ee1a0b','avatar.jpg','Alexander Fabozzi','','a.fabozzi@gmx.at',0,'austrian',0,2010,0,0),(17,'MAR','776ad0ef27acc0602c337dc2736f3a97','avatar.jpg','Marina Boehm','','wboehm@gmail.com',0,'austrian',0,2010,0,0),(18,'IRS','8918b74d571421bcc47fc59816bf8fc2','foto_ivan.png','Ivan Rodriguez','','irodriguezs@hotmail.com',0,'Spanish',15,2010,0,0),(19,'QNC','d41d8cd98f00b204e9800998ecf8427e','avatar.jpg','qncovjfq@ytkfegpz.com','qncovjfq@ytkfegpz.co','qncovjfq@ytkfegpz.com',0,'qncovjfq@ytkfegpz.co',537,2014,0,0),(20,'CHR','d41d8cd98f00b204e9800998ecf8427e','avatar.jpg','chrqwa@goksoj.com','chrqwa@goksoj.com','chrqwa@goksoj.com',0,'chrqwa@goksoj.com',702,2014,0,0),(21,'SIN','d41d8cd98f00b204e9800998ecf8427e','avatar.jpg','sinockmj@qizzqnub.com','sinockmj@qizzqnub.co','sinockmj@qizzqnub.com',0,'sinockmj@qizzqnub.co',521,2014,0,0),(22,'JZD','d41d8cd98f00b204e9800998ecf8427e','avatar.jpg','jzdkihrj@vfaqryvy.com','jzdkihrj@vfaqryvy.co','jzdkihrj@vfaqryvy.com',0,'jzdkihrj@vfaqryvy.co',259,2014,0,0); /*!40000 ALTER TABLE `users` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `winners` -- DROP TABLE IF EXISTS `winners`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `winners` ( `w_season` int(4) NOT NULL DEFAULT '0', `w_u_id` int(4) NOT NULL DEFAULT '0', PRIMARY KEY (`w_season`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `winners` -- LOCK TABLES `winners` WRITE; /*!40000 ALTER TABLE `winners` DISABLE KEYS */; INSERT INTO `winners` VALUES (2006,2),(2007,2),(2008,10),(2009,1),(2010,3),(2011,1); /*!40000 ALTER TABLE `winners` ENABLE KEYS */; UNLOCK TABLES; -- -- Current Database: `niki_2012` -- CREATE DATABASE /*!32312 IF NOT EXISTS*/ `niki_2012` /*!40100 DEFAULT CHARACTER SET latin1 */; USE `niki_2012`; -- -- Table structure for table `alldrivers` -- DROP TABLE IF EXISTS `alldrivers`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `alldrivers` ( `a_id` int(4) NOT NULL AUTO_INCREMENT, `a_lname` varchar(20) NOT NULL DEFAULT '', `a_fname` varchar(20) NOT NULL DEFAULT '', PRIMARY KEY (`a_id`) ) ENGINE=MyISAM AUTO_INCREMENT=826 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `alldrivers` -- LOCK TABLES `alldrivers` WRITE; /*!40000 ALTER TABLE `alldrivers` DISABLE KEYS */; INSERT INTO `alldrivers` VALUES (1,'ABATE','Carlo'),(2,'ABECASSIS','George'),(3,'ACHESON','Kenny'),(4,'ADAMS','Philippe'),(5,'ADER','Walt'),(6,'ADOLFF','Kurt'),(7,'AGABASHIAN','Fred'),(8,'AHRENS','Kurt Jr.'),(9,'ALBERS','Christijan'),(10,'ALBORETO','Michele'),(11,'ALESI','Jean'),(12,'ALGUERSUARI','Jaime'),(13,'ALLIOT','Philippe'),(14,'ALLISON','Cliff'),(15,'ALONSO','Fernando'),(16,'AMATI','Giovanna'),(17,'AMICK','George'),(18,'AMICK','Red'),(19,'AMON','Chris'),(20,'ANDERSON','Bob'),(21,'ANDERSSON','Conny'),(22,'ANDRETTI','Mario'),(23,'ANDRETTI','Michael'),(24,'ANDREWS','Keith'),(25,'APICELLA','Marco'),(26,'ARMI','Frank'),(27,'ARNOLD','Chuck'),(28,'ARNOUX','Rene'),(29,'ARUNDELL','Peter'),(30,'ASCARI','Alberto'),(31,'ASHDOWN','Peter'),(32,'ASHLEY','Ian'),(33,'ASHMORE','Gerry'),(34,'ASTON','Bill'),(35,'ATTWOOD','Richard'),(36,'AYULO','Manny'),(37,'BADOER','Luca'),(38,'BAGHETTI','Giancarlo'),(39,'BAILEY','Julian'),(40,'BALDI','Mauro'),(41,'BALL','Bobby'),(42,'BALSA','Marcel'),(43,'BANDINI','Lorenzo'),(44,'BANKS','Henry'),(45,'BARBAZZA','Fabrizio'),(46,'BARBER','John'),(47,'BARBER','Skip'),(48,'BARILLA','Paolo'),(49,'BARRICHELLO','Rubens'),(50,'BARTELS','Michael'),(51,'BARTH','Edgar'),(52,'BASSI','Giorgio'),(53,'BAUER','Erwin'),(54,'BAUMGARTNER','Zsolt'),(55,'BAYOL','Elie'),(56,'BEAUMAN','Don'),(57,'BECHEM','Karl–Guenther'),(58,'BEHRA','Jean'),(59,'BELL','Derek'),(60,'BELLOF','Stefan'),(61,'BELMONDO','Paul'),(62,'BELSO','Tom'),(63,'BELTOISE','Jean-Pierre'),(64,'BERETTA','Olivier'),(65,'BERG','Allen'),(66,'BERGER','Georges'),(67,'BERGER','Gerhard'),(68,'BERNARD','Eric'),(69,'BERNOLDI','Enrique'),(70,'BERTAGGIA','Enrico'),(71,'BETTENHAUSEN','Tony'),(72,'BEUTTLER','Mike'),(73,'BHANUBANDH','Birabongse'),(74,'BIANCHI','Lucien'),(75,'BIANCO','Gino'),(76,'BINDER','Hans'),(77,'BIONDETTI','Clemente'),(78,'BIRGER','Pablo'),(79,'BISCH','Art'),(80,'BLANCHARD','Harry'),(81,'BLEEKEMOLEN','Michael'),(82,'BLIGNAUT','Alex'),(83,'BLOKDYK','Trevor'),(84,'BLUNDELL','Mark'),(85,'BOESEL','Raul'),(86,'BOFFA','Menato'),(87,'BONDURANT','Bob'),(88,'BONETTO','Felice'),(89,'BONNIER','Jo'),(90,'BONOMI','Roberto'),(91,'BORDEU','Juan Manuel'),(92,'BORGUDD','Slim'),(93,'BOTHA','Luki'),(94,'BOULLION','Jean-Christophe'),(95,'BOURDAIS','Sebastien'),(96,'BOUTSEN','Thierry'),(97,'BOYD','Johnny'),(98,'BRABHAM','David'),(99,'BRABHAM','Gary'),(100,'BRABHAM','Jack'),(101,'BRACK','Bill'),(102,'BRAMBILLA','Ernesto'),(103,'BRAMBILLA','Vittorio'),(104,'BRANCA','Toni'),(105,'BRANCATELLI','Gianfranco'),(106,'BRANDON','Eric'),(107,'BRANSON','Don'),(108,'BRIDGER','Tom'),(109,'BRISE','Tony'),(110,'BRISTOW','Chris'),(111,'BROEKER','Peter'),(112,'BROOKS','Tony'),(113,'BROWN','Alan'),(114,'BROWN','Walt'),(115,'BROWN','Warwick'),(116,'BRUDES','Adolf'),(117,'BRUNDLE','Martin'),(118,'BRUNI','Gianmaria'),(119,'BRYAN','Jimmy'),(120,'BUCCI','Clemar'),(121,'BUCKNUM','Ronnie'),(122,'BUEB','Ivor'),(123,'BUEMI','Sebastien'),(124,'BUENO','Luiz'),(125,'BURGESS','Ian'),(126,'BURTI','Luciano'),(127,'BUSSINELLO','Roberto'),(128,'BUTTON','Jenson'),(129,'BYRNE','Tommy'),(130,'CABIANCA','Giulio'),(131,'CADE','Phil'),(132,'CAFFI','Alex'),(133,'CAMPBELL-JONES','John'),(134,'CAMPOS','Adrian'),(135,'CANNON','John'),(136,'CANTONI','Eitel'),(137,'CANTRELL','Bill'),(138,'CAPELLI','Ivan'),(139,'CARINI','Piero'),(140,'CARTER','Duane'),(141,'CASTELLOTTI','Eugenio'),(142,'CECOTTO','Johnny'),(143,'CEVERT','Francois'),(144,'CHABOUD','Eugène'),(145,'CHAMBERLAIN','Jay'),(146,'CHAPMAN','Colin'),(147,'CHARLTON','Dave'),(148,'CHAVES','Pedro Matos'),(149,'CHEESBOURG','Bill'),(150,'CHEEVER','Eddie'),(151,'CHIESA','Andrea'),(152,'CHIMERI','Ettore'),(153,'CHIRON','Louis'),(154,'CHITWOOD','Joie'),(155,'CHRISTIE','Bob'),(156,'CLAES','Johnny'),(157,'CLAPHAM','David'),(158,'CLARK','Jim'),(159,'COGAN','Kevin'),(160,'COLLINS','Peter'),(161,'COLLOMB','Bernard'),(162,'COLOMBO','Alberto'),(163,'COMAS','Erik'),(164,'COMOTTI','Franco'),(165,'CONNOR','George'),(166,'CONSTANTINE','George'),(167,'CORDTS','John'),(168,'COULTHARD','David'),(169,'COURAGE','Piers'),(170,'CRAFT','Chris'),(171,'CRAWFORD','Jim'),(172,'CRAWFORD','Ray'),(173,'CRESPO','Alberto'),(174,'CREUS','Antonio'),(175,'CROCKETT','Larry'),(176,'CROOK','Tony'),(177,'CROSS','Art'),(178,'CROSSLEY','Geoff'),(179,'DA MATTA','Cristiano'),(180,'DA SLIVA RAMOS','Hernando'),(181,'DAIGH','Chuck'),(182,'DALMAS','Yannick'),(183,'DALY','Derek'),(184,'DANNER','Christian'),(185,'DAPONTE','Jorge'),(186,'DAVIDSON','Anthony'),(187,'DAVIES','Jimmy'),(188,'DAVIS','Colin'),(189,'DAYWALT','Jimmy'),(190,'DE ADAMICH','Andrea'),(191,'DE ANGELIS','Elio'),(192,'DE ARAUJO CABRAL','Mario'),(193,'DE CESARIS','Andrea'),(194,'DE CHANGY','Alain'),(195,'DE DRYVER','Bernard'),(196,'DE FILIPPIS','Maria Teresa'),(197,'DE GRAFFENRIED','Emmanuel'),(198,'DE KLERK','Peter'),(199,'DE LA ROSA','Pedro'),(200,'DE PORTAGO','Alfonso'),(201,'DE RIU','Giovanni'),(202,'DE TOMASO','Alejandro'),(203,'DE TORNACO','Charles'),(204,'DE VILLOTA','Emilio'),(205,'DE VOS','Ernie'),(206,'DELETRAZ','Jean-Denis'),(207,'DEPAILLER','Patrick'),(208,'DINIZ','Pedro'),(209,'DINSMORE','Duke'),(210,'DOCHNAL','Frank'),(211,'DOLHEM','Jose'),(212,'DONNELLY','Martin'),(213,'DONOHUE','Mark'),(214,'DOORNBOS','Robert'),(215,'D\'OREY','Fritz'),(216,'DOWNING','Ken'),(217,'DRAKE','Bob'),(218,'DRIVER','Paddy'),(219,'DROGO','Piero'),(220,'DUKE','Geoff'),(221,'DUMFRIES','Johnny'),(222,'DUNCAN','Len'),(223,'DUSIO','Piero'),(224,'EATON','George'),(225,'ECCLESTONE','Bernie'),(226,'EDMUNDS','Don'),(227,'EDWARDS','Guy'),(228,'ELFORD','Vic'),(229,'ELISIAN','Ed'),(230,'EMERY','Paul'),(231,'ENGE','Tomas'),(232,'ENGLAND','Paul'),(233,'ERTL','Harald'),(234,'ESTEFANO','Nasif'),(235,'ETANCELIN','Philippe'),(236,'EVANS','Bob'),(237,'FABI','Corrado'),(238,'FABI','Teo'),(239,'FABRE','Pascal'),(240,'FACETTI','Carlo'),(241,'FAGIOLI','Luigi'),(242,'FAIRMAN','Jack'),(243,'FANGIO','Juan Manuel'),(244,'FARINA','Nino'),(245,'FAULKNER','Walt'),(246,'FERGUSON','William'),(247,'FIRMAN','Ralph'),(248,'FISCHER','Ludwig'),(249,'FISCHER','Rudi'),(250,'FISHER','Mike'),(251,'FISICHELLA','Giancarlo'),(252,'FITCH','John'),(253,'FITTIPALDI','Christian'),(254,'FITTIPALDI','Emerson'),(255,'FITTIPALDI','Wilson'),(256,'FITZAU','Theo'),(257,'FLAHERTY','Pat'),(258,'FLINTERMAN','Jan'),(259,'FLOCKHART','Ron'),(260,'FOHR','Myron'),(261,'FOITEK','Gregor'),(262,'FOLLMER','George'),(263,'FONDER','George'),(264,'FONTANA','Norberto'),(265,'FONTES BAYARDO','Azdrubal'),(266,'FORBERG','Carl'),(267,'FORCE','Gene'),(268,'FORINI','Franco'),(269,'FOTHERINGHAM-PARKER','Philip'),(270,'FOYT','A.J.'),(271,'FRANCIA','Giorgio'),(272,'FREELAND','Don'),(273,'FRENTZEN','Heinz-Harald'),(274,'FRERE','Paul'),(275,'FRIESACHER','Patrick'),(276,'FRY','Joe'),(277,'FUSHIDA','Hiroshi'),(278,'GABBIANI','Beppe'),(279,'GACHOT','Bertrand'),(280,'GAILLARD','Patrick'),(281,'GALICA','Divina'),(282,'GALLI','Nanni'),(283,'GALVEZ','Oscar Alfredo'),(284,'GAMBLE','Fred'),(285,'GANLEY','Howden'),(286,'GARDNER','Frank'),(287,'GARRETT','Billy'),(288,'GARTNER','Jo'),(289,'GAZE','Tony'),(290,'GEKI','NN'),(291,'GENDEBIEN','Olivier'),(292,'GENE','Marc'),(293,'GEORGE','Elmer'),(294,'GERARD','Bob'),(295,'GERINI','Gerino'),(296,'GETHIN','Peter'),(297,'GHINZANI','Piercarlo'),(298,'GIACOMELLI','Bruno'),(299,'GIBSON','Dick'),(300,'GINTHER','Richie'),(301,'GIRAUD-CABANTOUS','Yves'),(302,'GIUNTI','Ignazio'),(303,'GLOCK','Timo'),(304,'GLOECKLER','Helm'),(305,'GODIA','Paco'),(306,'GODIN DE BEAUFORT','Carel'),(307,'GOETHALS','Christian'),(308,'GOLDSMITH','Paul'),(309,'GONZALEZ','Jose Froilan'),(310,'GONZALEZ','Oscar'),(311,'GORDINI','Aldo'),(312,'GOULD','Horace'),(313,'GOUNON','Jean-Marc'),(314,'GREEN','Cecil'),(315,'GREENE','Keith'),(316,'GREGORY','Masten'),(317,'GRIFFITH','Cliff'),(318,'GRIGNARD','Georges'),(319,'GRIM','Bobby'),(320,'GROSJEAN','Romain'),(321,'GROUILLARD','Olivier'),(322,'GUBBY','Brian'),(323,'GUELFI','Andre'),(324,'GUERRA','Miguel Angel'),(325,'GUERRERO','Roberto'),(326,'GUGELMIN','Mauricio'),(327,'GURNEY','Dan'),(328,'HAHNE','Hubert'),(329,'HAILWOOD','Mike'),(330,'HAKKINEN','Mika'),(331,'HALFORD','Bruce'),(332,'HALL','Jim'),(333,'HAMILTON','Duncan'),(334,'HAMILTON','Lewis'),(335,'HAMPSHIRE','David'),(336,'HANKS','Sam'),(337,'HANSGEN','Walt'),(338,'HARRIS','Mike'),(339,'HARRISON','Cuth'),(340,'HART','Brian'),(341,'HARTLEY','Gene'),(342,'HASEMI','Masahiro'),(343,'HATTORI','Naoki'),(344,'HAWKINS','Paul'),(345,'HAWTHORN','Mike'),(346,'HAYJE','Boy'),(347,'HEEKS','Willi'),(348,'HEIDFELD','Nick'),(349,'HELFRICH','Theo'),(350,'HELLINGS','Mack'),(351,'HENTON','Brian'),(352,'HERBERT','Johnny'),(353,'HERMAN','Al'),(354,'HERRMANN','Hans'),(355,'HESNAULT','Francois'),(356,'HEYER','Hans'),(357,'HILL','Damon'),(358,'HILL','Graham'),(359,'HILL','Phil'),(360,'HIRT','Peter'),(361,'HOBBS','David'),(362,'HOCKING','Gary'),(363,'HOFFMANN','Ingo'),(364,'HOLLAND','Bill'),(365,'HOLMES','Jackie'),(366,'HOMEIER','Bill'),(367,'HOSHINO','Kazuyoshi'),(368,'HOYT','Jerry'),(369,'HULME','Denny'),(370,'HUNT','James'),(371,'HURTUBISE','Jim'),(372,'HUTCHISON','Gus'),(373,'ICKX','Jacky'),(374,'IDE','Yuji'),(375,'IGLESIAS','Jesus'),(376,'INOUE','Taki'),(377,'IRELAND','Innes'),(378,'IRVINE','Eddie'),(379,'IRWIN','Chris'),(380,'JABOUILLE','Jean-Pierre'),(381,'JACKSON','Jimmy'),(382,'JAMES','Joe'),(383,'JAMES','John'),(384,'JARIER','Jean-Pierre'),(385,'JEAN','Max'),(386,'JOHANSSON','Stefan'),(387,'JOHNSON','Eddie'),(388,'JOHNSON','Leslie'),(389,'JOHNSTONE','Bruce'),(390,'JONES','Alan'),(391,'JONES','Tom'),(392,'JOVER','Juan'),(393,'KARCH','Oswald'),(394,'KARTHIKEYAN','Narain'),(395,'KATAYAMA','Ukyo'),(396,'KAVANAGH','Ken'),(397,'KEEGAN','Rupert'),(398,'KEIZAN','Eddie'),(399,'KELLER','Al'),(400,'KELLY','Joe'),(401,'KENNEDY','Dave'),(402,'KESSEL','Loris'),(403,'KESSLER','Bruce'),(404,'KIESA','Nicolas'),(405,'KINNUNEN','Leo'),(406,'KLADIS','Danny'),(407,'KLENK','Hans'),(408,'KLIEN','Christian'),(409,'KLING','Karl'),(410,'KLODWIG','Ernst'),(411,'KOBAYASHI','Kamui'),(412,'KOINIGG','Helmuth'),(413,'KOVALAINEN','Heikki'),(414,'KOZAROWITZKY','Mikko'),(415,'KRAKAU','Willi'),(416,'KRAUSE','Rudolf'),(417,'KUBICA','Robert'),(418,'KUHNKE','Kurt'),(419,'KUWASHIMA','Masami'),(420,'LA CAZE','Robert'),(421,'LAFFITE','Jacques'),(422,'LAGORCE','Franck'),(423,'LAMMERS','Jan'),(424,'LAMY','Pedro'),(425,'LANDI','Chico'),(426,'LANG','Hermann'),(427,'LANGES','Claudio'),(428,'LARINI','Nicola'),(429,'LARRAURI','Oscar'),(430,'LARROUSSE','Gerard'),(431,'LARSON','Jud'),(432,'LAUDA','Niki'),(433,'LAURENT','Roger'),(434,'LAVAGGI','Giovanni'),(435,'LAWRENCE','Chris'),(436,'LECLERE','Michel'),(437,'LEDERLE','Neville'),(438,'LEES','Geoff'),(439,'LEGAT','Arthur'),(440,'LEHTO','JJ'),(441,'LEONI','Lamberto'),(442,'LESTON','Les'),(443,'LEVEGH','Pierre'),(444,'LEVRETT','Bayliss'),(445,'LEWIS','Jackie'),(446,'LEWIS-EVANS','Stuart'),(447,'LIGIER','Guy'),(448,'LINDEN','Andy'),(449,'LIPPI','Roberto'),(450,'LIUZZI','Vitantonio'),(451,'LOMBARDI','Lella'),(452,'LONDONO','Ricardo'),(453,'LOOF','Ernst'),(454,'LOUVEAU','Henri'),(455,'LOVE','John'),(456,'LOVELY','Pete'),(457,'LOYER','Roger'),(458,'LUCAS','Jean'),(459,'LUCIENBONNET','Jean'),(460,'LUNGER','Brett'),(461,'MACDOWEL','Mike'),(462,'MACKAY-FRASER','Herbert'),(463,'MACKEY','Bill'),(464,'MACKLIN','Lance'),(465,'MAGEE','Damien'),(466,'MAGGS','Tony'),(467,'MAGILL','Mike'),(468,'MAGLIOLI','Umberto'),(469,'MAGNUSSEN','Jan'),(470,'MAIRESSE','Guy'),(471,'MAIRESSE','Willy'),(472,'MANSELL','Nigel'),(473,'MANTOVANI','Sergio'),(474,'MANTZ','Johnny'),(475,'MANZON','Robert'),(476,'MARIMON','Onofre'),(477,'MARKO','Helmut'),(478,'MARQUES','Tarso'),(479,'MARR','Leslie'),(480,'MARSH','Tony'),(481,'MARTIN','Eugene'),(482,'MARTINI','Pierluigi'),(483,'MASS','Jochen'),(484,'MASSA','Felipe'),(485,'MAY','Michael'),(486,'MAYER','Timmy'),(487,'MAZET','Francois'),(488,'MAZZACANE','Gaston'),(489,'MCALPINE','Kenneth'),(490,'MCCARTHY','Perry'),(491,'MCCOY','Ernie'),(492,'MCDOWELL','Johnny'),(493,'MCGRATH','Jack'),(494,'MCGUIRE','Brian'),(495,'MCLAREN','Bruce'),(496,'MCNISH','Allan'),(497,'MCRAE','Graham'),(498,'MCWITHEY','Jim'),(499,'MENDITEGUY','Carlos'),(500,'MERKEL','Harry'),(501,'MERZARIO','Arturo'),(502,'MIERES','Roberto'),(503,'MIGAULT','Francois'),(504,'MILES','John'),(505,'MILES','Ken'),(506,'MILHOUX','Andre'),(507,'MILLER','Chet'),(508,'MITTER','Gerhard'),(509,'MODENA','Stefano'),(510,'MONARCH','Thomas'),(511,'MONTAGNY','Franck'),(512,'MONTEIRO','Tiago'),(513,'MONTERMINI','Andrea'),(514,'MONTEVERDI','Peter'),(515,'MONTGOMERIE-CHARRING','Robin'),(516,'MONTOYA','Juan Pablo'),(517,'MORBIDELLI','Gianni'),(518,'MORENO','Roberto'),(519,'MORGAN','Dave'),(520,'MOSER','Silvio'),(521,'MOSS','Bill'),(522,'MOSS','Stirling'),(523,'MUNARON','Gino'),(524,'MURRAY','David'),(525,'MUSSO','Luigi'),(526,'NAKAJIMA','Kazuki'),(527,'NAKAJIMA','Satoru'),(528,'NAKANO','Shinji'),(529,'NALON','Duke'),(530,'NANNINI','Alessandro'),(531,'NASPETTI','Emanuele'),(532,'NATILI','Massimo'),(533,'NAYLOR','Brian'),(534,'NAZARUK','Mike'),(535,'NEEDELL','Tiff'),(536,'NELLEMAN','Jac'),(537,'NEVE','Patrick'),(538,'NICHOLSON','John'),(539,'NIDAY','Cal'),(540,'NIEDERMAYR','Helmut'),(541,'NIEMANN','Brausch'),(542,'NILSSON','Gunnar'),(543,'NODA','Hideki'),(544,'NUCKEY','Rodney'),(545,'O\'BRIEN','Robert'),(546,'O\'CONNOR','Pat'),(547,'OLIVER','Jackie'),(548,'ONGAIS','Danny'),(549,'OPPITZHAUSER','Karl'),(550,'OWEN','Arthur'),(551,'PACE','Carlos'),(552,'PAGANI','Nello'),(553,'PALETTI','Riccardo'),(554,'PALM','Torsten'),(555,'PALMER','Jonathan'),(556,'PANIS','Olivier'),(557,'PANTANO','Giorgio'),(558,'PAPIS','Massimiliano'),(559,'PARKES','Mike'),(560,'PARNELL','Reg'),(561,'PARNELL','Tim'),(562,'PARSONS','Johnnie'),(563,'PATRESE','Riccardo'),(564,'PEASE','Al'),(565,'PENSKE','Roger'),(566,'PERDISA','Cesare'),(567,'PEREZ-SALA','Luis'),(568,'PERKINS','Larry'),(569,'PESCAROLO','Henri'),(570,'PESENTI-ROSSI','Alessandro'),(571,'PETERS','Josef'),(572,'PETERSON','Ronnie'),(573,'PIAN','Alfredo'),(574,'PICARD','Francois'),(575,'PIETERSE','Ernie'),(576,'PIETSCH','Paul'),(577,'PILETTE','Andre'),(578,'PILETTE','Teddy'),(579,'PIOTTI','Luigi'),(580,'PIPER','David'),(581,'PIQUET','Nelson'),(582,'PIQUET','Nelson Jr.'),(583,'PIROCCHI','Renato'),(584,'PIRONI','Didier'),(585,'PIRRO','Emanuele'),(586,'PIZZONIA','Antonio'),(587,'POLLET','Jacques'),(588,'PON','Ben'),(589,'POORE','Dennis'),(590,'POSEY','Sam'),(591,'POZZI','Charles'),(592,'PRETORIUS','Jackie'),(593,'PRINOTH','Ernesto'),(594,'PROPHET','David'),(595,'PROST','Alain'),(596,'PRYCE','Tom'),(597,'PURLEY','David'),(598,'PUZEY','Clive'),(599,'QUESTER','Dieter'),(600,'RABY','Ian'),(601,'RAHAL','Bobby'),(602,'RAIKKONEN','Kimi'),(603,'RAPHANEL','Pierre-Henri'),(604,'RATHMANN','Dick'),(605,'RATHMANN','Jim'),(606,'RATZENBERGER','Roland'),(607,'REBAQUE','Hector'),(608,'REDMAN','Brian'),(609,'REECE','Jimmy'),(610,'REED','Ray'),(611,'REES','Alan'),(612,'REGAZZONI','Clay'),(613,'REUTEMANN','Carlos'),(614,'REVENTLOW','Lance'),(615,'REVSON','Peter'),(616,'RHODES','John'),(617,'RIBEIRO','Alex'),(618,'RICHARDSON','Ken'),(619,'RIESS','Fritz'),(620,'RIGSBY','Jim'),(621,'RINDT','Jochen'),(622,'RISELEY-PRICHARD','John'),(623,'ROBARTS','Richard'),(624,'RODRIGUEZ','Pedro'),(625,'RODRIGUEZ','Ricardo'),(626,'RODRIGUEZ LARRETA','Alberto'),(627,'ROL','Franco'),(628,'ROLLINSON','Alan'),(629,'ROLT','Tony'),(630,'ROOS','Bertil'),(631,'ROSBERG','Keke'),(632,'ROSBERG','Nico'),(633,'ROSE','Mauri'),(634,'ROSIER','Louis'),(635,'ROSSET','Ricardo'),(636,'ROTHENGATTER','Huub'),(637,'RUBY','Lloyd'),(638,'RUDAZ','Jean-Claude'),(639,'RUSSO','Eddie'),(640,'RUSSO','Paul'),(641,'RUTTMAN','Troy'),(642,'RYAN','Peter'),(643,'SACHS','Eddie'),(644,'SAID','Bob'),(645,'SALAZAR','Eliseo'),(646,'SALO','Mika'),(647,'SALVADORI','Roy'),(648,'SANESI','Consalvo'),(649,'SARRAZIN','Stephane'),(650,'SATO','Takuma'),(651,'SCARBOROUGH','Carl'),(652,'SCARFIOTTI','Ludovico'),(653,'SCARLATTI','Giorgio'),(654,'SCHECKTER','Ian'),(655,'SCHECKTER','Jody'),(656,'SCHELL','Harry'),(657,'SCHENKEN','Tim'),(658,'SCHERRER','Albert'),(659,'SCHIATTARELLA','Domenico'),(660,'SCHILLER','Heinz'),(661,'SCHINDLER','Bill'),(662,'SCHLESSER','Jean-Louis'),(663,'SCHLESSER','Jo'),(664,'SCHNEIDER','Bernd'),(665,'SCHOELLER','Rudolf'),(666,'SCHROEDER','Rob'),(667,'SCHUMACHER','Michael'),(668,'SCHUMACHER','Ralf'),(669,'SCHUPPAN','Vern'),(670,'SCHWELM CRUZ','Adolfo'),(671,'SCOTT','Bob'),(672,'SCOTT BROWN','Archie'),(673,'SCOTTI','Piero'),(674,'SEIDEL','Wolfgang'),(675,'SEIFFERT','Guenther'),(676,'SENNA','Ayrton'),(677,'SERAFINI','Dorino'),(678,'SERRA','Chico'),(679,'SERRURIER','Doug'),(680,'SERVOZ-GAVIN','Johnny'),(681,'SETTEMBER','Tony'),(682,'SHARP','Hap'),(683,'SHAWE-TAYLOR','Brian'),(684,'SHELBY','Carroll'),(685,'SHELLY','Tony'),(686,'SIFFERT','Jo'),(687,'SIMON','Andre'),(688,'SLOTEMAKER','Rob'),(689,'SOLANA','Moises'),(690,'SOLER-ROIG','Alex'),(691,'SOMMER','Raymond'),(692,'SOSPIRI','Vincenzo'),(693,'SOUTH','Stephen'),(694,'SPARKEN','Mike'),(695,'SPEED','Scott'),(696,'SPENCE','Mike'),(697,'STACEY','Alan'),(698,'STARRABBA','Gaetano'),(699,'STEVENSON','Chuck'),(700,'STEWART','Ian'),(701,'STEWART','Jackie'),(702,'STEWART','Jimmy'),(703,'STOHR','Siegfried'),(704,'STOMMELEN','Rolf'),(705,'STREIFF','Philippe'),(706,'STUCK','Hans'),(707,'STUCK','Hans Joachim'),(708,'STUPPACHER','Otto'),(709,'SULLIVAN','Danny'),(710,'SURER','Marc'),(711,'SURTEES','John'),(712,'SUTCLIFFE','Andy'),(713,'SUTIL','Adrian'),(714,'SUTTON','Len'),(715,'SUZUKI','Aguri'),(716,'SUZUKI','Toshio'),(717,'SWATERS','Jacques'),(718,'SWEIKERT','Bob'),(719,'TAKAGI','Toranosuke'),(720,'TAKAHARA','Noritake'),(721,'TAKAHASHI','Kunimitsu'),(722,'TAMBAY','Patrick'),(723,'TARAMAZZO','Luigi'),(724,'TARQUINI','Gabriele'),(725,'TARUFFI','Piero'),(726,'TAYLOR','Dennis'),(727,'TAYLOR','Henry'),(728,'TAYLOR','John'),(729,'TAYLOR','Mike'),(730,'TAYLOR','Trevor'),(731,'TEAGUE','Marshall'),(732,'TEMPLEMAN','Shorty'),(733,'TERRA','Max de'),(734,'TESTUT','Andre'),(735,'THACKWELL','Mike'),(736,'THIELE','Alfonso'),(737,'THOMPSON','Eric'),(738,'THOMSON','Johnny'),(739,'THORNE','Leslie'),(740,'TINGELSTAD','Bud'),(741,'TINGLE','Sam'),(742,'TITTERINGTON','Desmond'),(743,'TOLAN','Johnnie'),(744,'TRIMMER','Tony'),(745,'TRINTIGNANT','Maurice'),(746,'TRULLI','Jarno'),(747,'TUERO','Esteban'),(748,'TUNMER','Guy'),(749,'TURNER','Jack'),(750,'ULMEN','Toni'),(751,'UNSER','Bobby'),(752,'UNSER','Jerry'),(753,'URIA','Alberto'),(754,'VACCARELLA','Nino'),(755,'VAN DE POELE','Eric'),(756,'VAN DER LOF','Dries'),(757,'VAN DER VYVER','Syd'),(758,'VAN LENNEP','Gijs'),(759,'VAN ROOYEN','Basil'),(760,'VEITH','Bob'),(761,'VERSTAPPEN','Jos'),(762,'VETTEL','Sebastian'),(763,'VILLENEUVE','Gilles'),(764,'VILLENEUVE','Jacques'),(765,'VILLENEUVE SR.','Jacques'),(766,'VILLORESI','Luigi'),(767,'VOLONTERIO','Ottorino'),(768,'VON OPEL','Rikky'),(769,'VON TRIPS','Wolfgang'),(770,'VONLANTHEN','Jo'),(771,'VUKOVICH','Bill'),(772,'WACKER','Fred'),(773,'WALKER','David'),(774,'WALKER','Peter'),(775,'WALLARD','Lee'),(776,'WALTER','Heini'),(777,'WARD','Rodger'),(778,'WARWICK','Derek'),(779,'WATSON','John'),(780,'WEBB','Spider'),(781,'WEBBER','Mark'),(782,'WEIDLER','Volker'),(783,'WEILER','Wayne'),(784,'WENDLINGER','Karl'),(785,'WESTBURY','Peter'),(786,'WEYANT','Chuck'),(787,'WHARTON','Ken'),(788,'WHITEAWAY','Ted'),(789,'WHITEHEAD','Graham'),(790,'WHITEHEAD','Peter'),(791,'WHITEHOUSE','Bill'),(792,'WIDDOWS','Robin'),(793,'WIETZES','Eppie'),(794,'WILDS','Mike'),(795,'WILLIAMS','Jonathan'),(796,'WILLIAMSON','Roger'),(797,'WILSON','Dempsey'),(798,'WILSON','Desire'),(799,'WILSON','Justin'),(800,'WILSON','Vic'),(801,'WINKELHOCK','Joachim'),(802,'WINKELHOCK','Manfred'),(803,'WINKELHOCK','Markus'),(804,'WISELL','Reine'),(805,'WUNDERINK','Roelof'),(806,'WURZ','Alexander'),(807,'YAMAMOTO','Sakon'),(808,'YOONG','Alex'),(809,'ZANARDI','Alex'),(810,'ZAPICO','Emilio'),(811,'ZONTA','Ricardo'),(812,'ZORZI','Renzo'),(813,'ZUNINO','Ricardo'),(814,'CHANDHOK','Karun'),(815,'DI GRASSI','Lucas'),(816,'HUELKENBERG','Nico'),(817,'PETROV','Vitaly'),(818,'SENNA','Bruno'),(819,'D\'AMBROSIO','Jerome'),(820,'DI RESTA','Paul'),(821,'MALDONADO','Pastor'),(822,'PEREZ','Sergio'),(823,'PIC','Charles'),(824,'RICCIARDO','Daniel'),(825,'VERGNE','Jean-Eric'); /*!40000 ALTER TABLE `alldrivers` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `drivers` -- DROP TABLE IF EXISTS `drivers`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `drivers` ( `d_id` int(4) NOT NULL AUTO_INCREMENT, `d_lname` varchar(20) NOT NULL DEFAULT '', `d_fname` varchar(20) NOT NULL DEFAULT '', `d_currseason` int(1) NOT NULL DEFAULT '0', `d_miod` int(3) NOT NULL DEFAULT '0', `d_fa_id` int(3) NOT NULL DEFAULT '0', PRIMARY KEY (`d_id`) ) ENGINE=MyISAM AUTO_INCREMENT=50 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `drivers` -- LOCK TABLES `drivers` WRITE; /*!40000 ALTER TABLE `drivers` DISABLE KEYS */; INSERT INTO `drivers` VALUES (1,'VETTEL','Sebastian',1,30,7),(2,'WEBBER','Mark',1,28,7),(3,'HAMILTON','Lewis',1,26,2),(4,'BUTTON','Jenson',1,29,2),(5,'ALONSO','Fernando',1,27,1),(6,'MASSA','Felipe',1,25,1),(7,'SCHUMACHER','Michael',1,23,11),(8,'ROSBERG','Nico',1,24,11),(9,'RAIKKONEN','Kimi',1,22,18),(10,'GROSJEAN','Romain',1,9,18),(11,'DI RESTA','Paul',1,19,14),(12,'HUELKENBERG','Nico',1,13,14),(14,'KOBAYASHI','Kamui',1,20,12),(15,'PEREZ','Sergio',1,18,12),(16,'RICCIARDO','Daniel',1,12,6),(17,'VERGNE','Jean-Eric',1,8,6),(18,'MALDONADO','Pastor',1,17,19),(19,'SENNA','Bruno',1,10,19),(20,'KOVALAINEN','Heikki',1,15,20),(21,'PETROV','Vitaly',1,21,20),(22,'DE LA ROSA','Pedro',1,16,16),(23,'KARTHIKEYAN','Narain',1,11,16),(24,'GLOCK','Timo',1,14,21),(25,'PIC','Charles',1,7,21),(26,'BUEMI','Sebastien',0,0,0),(27,'PAFFETT','Gary',0,0,0),(28,'TURVEY','Oliver',0,0,0),(29,'FISICHELLA','Giancarlo',0,0,0),(30,'GENE','Marc',0,0,0),(31,'BERTOLINI','Andrea',0,0,0),(32,'D\'AMBROSIO','Jerome',0,0,0),(33,'BIANCHI','Jules',0,0,0),(34,'GUTIERREZ','Esteban',0,0,0),(35,'BOTTAS','Valtteri',0,0,0),(36,'VAN DER GARDE','Giedo',0,0,0),(37,'ROSSI','Alexander',0,0,0),(38,'CLOS','Dani',0,0,0),(39,'LIUZZI','Vitantonio',0,0,0),(40,'DE VILLOTA','Maria',0,0,0); /*!40000 ALTER TABLE `drivers` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `events` -- DROP TABLE IF EXISTS `events`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `events` ( `e_id` int(2) NOT NULL AUTO_INCREMENT, `e_type` varchar(20) NOT NULL DEFAULT '', PRIMARY KEY (`e_id`) ) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `events` -- LOCK TABLES `events` WRITE; /*!40000 ALTER TABLE `events` DISABLE KEYS */; INSERT INTO `events` VALUES (1,'QUALIFYING'),(2,'RACE'); /*!40000 ALTER TABLE `events` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `fflassets` -- DROP TABLE IF EXISTS `fflassets`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `fflassets` ( `fa_id` int(4) NOT NULL AUTO_INCREMENT, `fa_currseason` int(1) NOT NULL DEFAULT '0', `fa_chassis` varchar(30) NOT NULL DEFAULT '', `fa_mioc` int(3) NOT NULL DEFAULT '0', `fa_engine` varchar(30) NOT NULL DEFAULT '', `fa_mioe` int(3) NOT NULL DEFAULT '0', PRIMARY KEY (`fa_id`) ) ENGINE=MyISAM AUTO_INCREMENT=23 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `fflassets` -- LOCK TABLES `fflassets` WRITE; /*!40000 ALTER TABLE `fflassets` DISABLE KEYS */; INSERT INTO `fflassets` VALUES (1,1,'Ferrari',28,'Ferrari (Ferrari)',27),(2,1,'McLaren',29,'Mercedes (McLaren)',29),(3,0,'BMW Sauber',0,'BMW (BMW Sauber)',0),(4,0,'Renault',0,'Renault (Renault)',0),(5,0,'Toyota',0,'Toyota (Toyota)',0),(6,1,'Toro Rosso',23,'Ferrari (Toro Rosso)',25),(7,1,'Red Bull',30,'Renault (Red Bull)',23),(8,0,'Williams',0,'Toyota (Williams)',0),(9,0,'Brawn',0,'Mercedes (Brawn)',0),(10,0,'Force India',0,'Ferrari (Force India)',0),(11,1,'Mercedes GP',27,'Mercedes (Mercedes GP)',30),(12,1,'Sauber',24,'Ferrari (Sauber)',26),(13,0,'Williams',0,'Cosworth (Williams)',0),(14,1,'Force India',25,'Mercedes (Force India)',28),(15,0,'Lotus',0,'Cosworth (Lotus)',0),(16,1,'HRT',20,'Cosworth (HRT)',20),(17,0,'Virgin',0,'Cosworth (Virgin)',0),(18,1,'Lotus',26,'Renault (Lotus)',24),(19,1,'Williams',22,'Renault (Williams)',22),(20,1,'Caterham',21,'Renault (Caterham)',21),(21,1,'Marussia',19,'Cosworth (Marussia)',19); /*!40000 ALTER TABLE `fflassets` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `fflpoints` -- DROP TABLE IF EXISTS `fflpoints`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `fflpoints` ( `fp_u_id` int(4) NOT NULL DEFAULT '0', `fp_g_id` int(4) NOT NULL DEFAULT '0', `fp_points` decimal(3,1) NOT NULL DEFAULT '0.0' ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `fflpoints` -- LOCK TABLES `fflpoints` WRITE; /*!40000 ALTER TABLE `fflpoints` DISABLE KEYS */; INSERT INTO `fflpoints` VALUES (1,1,'76.0'),(12,1,'80.0'),(6,1,'48.0'),(9,1,'70.0'),(10,1,'88.0'),(2,1,'54.0'),(7,1,'30.0'),(1,2,'39.0'),(12,2,'52.0'),(6,2,'39.0'),(9,2,'32.0'),(10,2,'31.0'),(2,2,'22.0'),(7,2,'28.0'),(1,3,'55.0'),(12,3,'65.0'),(6,3,'25.0'),(9,3,'55.0'),(10,3,'65.0'),(2,3,'40.0'),(7,3,'32.0'),(1,4,'59.0'),(12,4,'62.0'),(6,4,'45.0'),(9,4,'42.0'),(10,4,'66.0'),(2,4,'95.0'),(7,4,'91.0'),(1,5,'30.0'),(12,5,'44.0'),(6,5,'37.0'),(9,5,'14.0'),(10,5,'22.0'),(2,5,'43.0'),(7,5,'62.0'),(1,6,'53.0'),(12,6,'62.0'),(6,6,'64.0'),(9,6,'47.0'),(10,6,'59.0'),(2,6,'51.0'),(7,6,'17.0'),(1,7,'47.0'),(12,7,'71.0'),(6,7,'31.0'),(9,7,'43.0'),(10,7,'55.0'),(2,7,'52.0'),(7,7,'56.0'),(1,8,'44.0'),(12,8,'41.0'),(6,8,'47.0'),(9,8,'31.0'),(10,8,'16.0'),(2,8,'30.0'),(7,8,'37.0'),(1,9,'55.0'),(12,9,'71.0'),(6,9,'70.0'),(9,9,'51.0'),(10,9,'60.0'),(2,9,'73.0'),(7,9,'53.0'),(1,10,'49.0'),(12,10,'57.0'),(6,10,'53.0'),(9,10,'38.0'),(10,10,'42.0'),(2,10,'39.0'),(7,10,'40.0'),(1,11,'67.0'),(12,11,'74.0'),(6,11,'28.0'),(9,11,'49.0'),(10,11,'61.0'),(2,11,'61.0'),(7,11,'84.0'),(1,12,'78.0'),(12,12,'51.0'),(6,12,'48.0'),(9,12,'61.0'),(10,12,'73.0'),(2,12,'59.0'),(7,12,'48.0'),(1,13,'35.0'),(12,13,'40.0'),(6,13,'29.0'),(9,13,'33.0'),(10,13,'25.0'),(2,13,'10.0'),(7,13,'21.0'),(1,14,'51.0'),(12,14,'64.0'),(6,14,'44.0'),(9,14,'43.0'),(10,14,'68.0'),(2,14,'64.0'),(7,14,'53.0'),(1,15,'63.0'),(12,15,'49.0'),(6,15,'66.0'),(9,15,'49.0'),(10,15,'74.0'),(2,15,'60.0'),(7,15,'41.0'),(1,16,'62.0'),(12,16,'65.0'),(6,16,'78.0'),(9,16,'48.0'),(10,16,'73.0'),(2,16,'84.0'),(7,16,'57.0'),(1,17,'72.0'),(12,17,'82.0'),(6,17,'70.0'),(9,17,'62.0'),(10,17,'87.0'),(2,17,'73.0'),(7,17,'42.0'),(1,18,'52.0'),(12,18,'45.0'),(6,18,'47.0'),(9,18,'27.0'),(10,18,'42.0'),(2,18,'55.0'),(7,18,'69.0'),(1,19,'65.0'),(12,19,'74.0'),(6,19,'49.0'),(9,19,'53.0'),(10,19,'71.0'),(2,19,'50.0'),(7,19,'47.0'),(1,20,'56.0'),(12,20,'63.0'),(6,20,'65.0'),(9,20,'55.0'),(10,20,'57.0'),(2,20,'29.0'),(7,20,'10.0'); /*!40000 ALTER TABLE `fflpoints` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `fflresults` -- DROP TABLE IF EXISTS `fflresults`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `fflresults` ( `fr_season` int(4) NOT NULL DEFAULT '0', `fr_u_id` int(4) NOT NULL DEFAULT '0', `fr_ft_a_id_d1` int(4) NOT NULL DEFAULT '0', `fr_ft_a_id_d2` int(4) NOT NULL DEFAULT '0', `fr_fa_id_chassis` int(4) NOT NULL DEFAULT '0', `fr_fa_id_engine` int(4) NOT NULL DEFAULT '0', `fr_totalpoints` decimal(5,1) DEFAULT '0.0', PRIMARY KEY (`fr_season`,`fr_u_id`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `fflresults` -- LOCK TABLES `fflresults` WRITE; /*!40000 ALTER TABLE `fflresults` DISABLE KEYS */; INSERT INTO `fflresults` VALUES (2009,0,128,762,9,9,'523.0'),(2009,1,746,762,8,7,'304.5'),(2009,2,15,251,9,1,'276.0'),(2009,3,49,303,9,1,'343.0'),(2009,6,484,128,9,6,'297.0'),(2009,9,602,128,5,7,'356.0'),(2009,10,334,128,8,9,'350.5'),(2009,11,746,128,7,1,'351.0'),(2009,12,762,128,9,1,'421.0'),(2010,0,15,713,7,7,'1295.0'),(2010,1,334,411,11,7,'984.0'),(2010,4,484,762,17,7,'898.0'),(2010,6,484,713,7,6,'702.0'),(2010,9,816,15,11,2,'942.0'),(2010,10,417,303,2,7,'1088.0'),(2010,11,818,15,1,1,'1044.0'),(2010,12,15,816,11,7,'986.0'),(2010,13,49,818,1,6,'456.0'),(2011,6,713,348,2,7,'1223.0'),(2011,1,632,822,1,7,'1128.0'),(2011,12,667,820,7,1,'1128.0'),(2011,10,484,820,7,2,'1292.0'),(2011,0,128,820,7,7,'1597.0'),(2012,1,602,816,2,7,'1108.0'),(2012,12,15,320,2,7,'1212.0'),(2012,6,411,816,7,1,'983.0'),(2012,9,667,825,7,2,'903.0'),(2012,10,762,825,2,7,'1135.0'),(2012,2,762,398,18,7,'1044.0'),(2012,7,762,818,18,18,'918.0'),(2012,0,15,320,7,7,'1294.0'); /*!40000 ALTER TABLE `fflresults` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `fflteams` -- DROP TABLE IF EXISTS `fflteams`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `fflteams` ( `ft_u_id` int(4) NOT NULL DEFAULT '0', `ft_d_id_d1` int(4) NOT NULL DEFAULT '0', `ft_d_id_d2` int(4) NOT NULL DEFAULT '0', `ft_fa_id_chassis` int(4) NOT NULL DEFAULT '0', `ft_fa_id_engine` int(4) NOT NULL DEFAULT '0', PRIMARY KEY (`ft_u_id`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `fflteams` -- LOCK TABLES `fflteams` WRITE; /*!40000 ALTER TABLE `fflteams` DISABLE KEYS */; INSERT INTO `fflteams` VALUES (1,9,12,2,7),(12,5,10,2,7),(6,14,12,7,1),(9,7,17,7,2),(10,1,17,2,7),(2,1,23,18,7),(7,1,19,18,18); /*!40000 ALTER TABLE `fflteams` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `gps` -- DROP TABLE IF EXISTS `gps`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `gps` ( `g_id` int(4) NOT NULL AUTO_INCREMENT, `g_name` varchar(40) NOT NULL DEFAULT '', `g_datetime_q` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `g_datetime_r` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `g_flag` varchar(20) NOT NULL DEFAULT '', `g_circuit` varchar(40) NOT NULL DEFAULT '', PRIMARY KEY (`g_id`) ) ENGINE=MyISAM AUTO_INCREMENT=21 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `gps` -- LOCK TABLES `gps` WRITE; /*!40000 ALTER TABLE `gps` DISABLE KEYS */; INSERT INTO `gps` VALUES (1,'AUSTRALIA (Melbourne)','2012-03-17 07:00:00','2012-03-18 07:00:00','flag_AUSTRALIA.gif','circuit_AUSTRALIA.gif'),(2,'MALAYSIA (Sepang)','2012-03-24 09:00:00','2012-03-25 10:00:00','flag_MALAYSIA.gif','circuit_MALAYSIA.gif'),(3,'CHINA (Shanghai)','2012-04-14 08:00:00','2012-04-15 09:00:00','flag_CHINA.gif','circuit_CHINA.gif'),(4,'BAHRAIN (Sakhir)','2012-04-21 13:00:00','2012-04-22 14:00:00','flag_BAHRAIN.gif','circuit_BAHRAIN.gif'),(5,'SPAIN (Barcelona)','2012-05-12 14:00:00','2012-05-13 14:00:00','flag_SPAIN.gif','circuit_SPAIN_(Barcelona).gif'),(6,'MONACO (Monte Carlo)','2012-05-26 14:00:00','2012-05-27 14:00:00','flag_MONACO.gif','circuit_MONACO.gif'),(7,'CANADA (Montreal)','2012-06-09 19:00:00','2012-06-10 20:00:00','flag_CANADA.gif','circuit_CANADA.gif'),(8,'EUROPE (Valencia)','2012-06-23 14:00:00','2012-06-24 14:00:00','flag_EUROPE.gif','circuit_EUROPE_(Valencia).gif'),(9,'GREAT BRITAIN (Silverstone)','2012-07-07 14:00:00','2012-07-08 14:00:00','flag_UK.gif','circuit_UK.gif'),(10,'GERMANY (Hockenheim)','2012-07-21 14:00:00','2012-07-22 14:00:00','flag_GERMANY.gif','circuit_GERMANY_(Hockenheim).gif'),(11,'HUNGARY (Budapest)','2012-07-28 14:00:00','2012-07-29 14:00:00','flag_HUNGARY.gif','circuit_HUNGARY.gif'),(12,'BELGIUM (Spa)','2012-09-01 14:00:00','2012-09-02 14:00:00','flag_BELGIUM.gif','circuit_BELGIUM.gif'),(13,'ITALY (Monza)','2012-09-08 14:00:00','2012-09-09 14:00:00','flag_ITALY.gif','circuit_ITALY.gif'),(14,'SINGAPORE (Singapore)','2012-09-22 15:00:00','2012-09-23 14:00:00','flag_SINGAPORE.gif','circuit_SINGAPORE.gif'),(15,'JAPAN (Suzuka)','2012-10-06 07:00:00','2012-10-07 08:00:00','flag_JAPAN.gif','circuit_JAPAN_(Suzuka).gif'),(16,'SOUTH KOREA (Yeongam)','2012-10-13 07:00:00','2012-10-14 08:00:00','flag_SKOREA.gif','circuit_SKOREA.gif'),(17,'INDIA (New Delhi)','2012-10-27 10:30:00','2012-10-28 10:30:00','flag_INDIA.gif','circuit_INDIA.gif'),(18,'UNITED ARAB EMIRATES (Abu Dhabi)','2012-11-03 14:00:00','2012-11-04 14:00:00','flag_UAE.gif','circuit_UAE.gif'),(19,'USA (Austin)','2012-11-17 19:00:00','2012-11-18 20:00:00','flag_USA.gif','circuit_USA_(Austin).gif'),(20,'BRAZIL (Sao Paulo)','2012-11-24 17:00:00','2012-11-25 17:00:00','flag_BRAZIL.gif','circuit_BRAZIL.gif'); /*!40000 ALTER TABLE `gps` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `results` -- DROP TABLE IF EXISTS `results`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `results` ( `r_g_id` int(4) NOT NULL DEFAULT '0', `r_e_id` int(2) NOT NULL DEFAULT '0', `r_d_id_p1` int(4) NOT NULL DEFAULT '0', `r_d_id_p2` int(4) NOT NULL DEFAULT '0', `r_d_id_p3` int(4) NOT NULL DEFAULT '0', `r_d_id_p4` int(4) NOT NULL DEFAULT '0', `r_d_id_p5` int(4) NOT NULL DEFAULT '0', `r_d_id_p6` int(4) NOT NULL DEFAULT '0', `r_d_id_p7` int(4) NOT NULL DEFAULT '0', `r_d_id_p8` int(4) NOT NULL DEFAULT '0', `r_d_id_p9` int(4) NOT NULL DEFAULT '0', `r_d_id_p10` int(4) NOT NULL DEFAULT '0', `r_fl` int(4) NOT NULL DEFAULT '0', `r_firstout` varchar(20) NOT NULL DEFAULT '0', `r_bestcup` varchar(20) NOT NULL DEFAULT '0', `r_sc` int(2) NOT NULL DEFAULT '-1', `r_hp` int(1) NOT NULL DEFAULT '0', PRIMARY KEY (`r_g_id`,`r_e_id`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `results` -- LOCK TABLES `results` WRITE; /*!40000 ALTER TABLE `results` DISABLE KEYS */; INSERT INTO `results` VALUES (1,1,3,4,10,0,0,0,0,0,0,0,0,'0','0',-1,0),(1,2,4,1,3,2,5,14,9,15,16,11,4,'12','15',1,0),(2,1,3,4,7,0,0,0,0,0,0,0,0,'0','0',-1,0),(2,2,5,15,3,2,9,19,11,17,12,7,9,'10','17',1,0),(3,1,8,3,7,0,0,0,0,0,0,0,0,'0','0',-1,0),(3,2,8,4,3,2,1,10,19,18,5,14,14,'7','17',0,0),(4,1,1,3,2,0,0,0,0,0,0,0,0,'0','0',-1,0),(4,2,1,9,10,2,8,11,5,3,6,7,1,'25','7',0,0),(5,1,3,18,5,0,0,0,0,0,0,0,0,'0','0',-1,0),(5,2,18,5,9,10,14,1,8,3,4,12,10,'7','3',0,0),(6,1,7,2,8,0,0,0,0,0,0,0,0,'0','0',-1,0),(6,2,2,8,5,1,3,6,11,12,9,19,15,'10','15',1,0),(7,1,1,3,5,0,0,0,0,0,0,0,0,'0','0',-1,0),(7,2,3,10,15,1,5,8,2,9,14,6,1,'23','15',0,0),(8,1,1,3,18,0,0,0,0,0,0,0,0,'0','0',-1,0),(8,2,5,9,7,2,12,8,11,4,15,19,8,'17','2',1,0),(9,1,5,2,7,0,0,0,0,0,0,0,0,'0','0',-1,0),(9,2,2,5,1,6,9,10,7,3,19,4,9,'21','17',0,0),(10,1,5,1,2,0,0,0,0,0,0,0,0,'0','0',-1,0),(10,2,5,4,9,14,1,15,7,2,12,8,7,'3','15,8',0,0),(11,1,3,10,1,0,0,0,0,0,0,0,0,'0','0',-1,0),(11,2,3,9,10,1,5,4,19,2,6,8,1,'7','9,16,8,2',0,0),(12,1,4,14,18,0,0,0,0,0,0,0,0,'0','0',-1,0),(12,2,4,1,9,12,6,2,7,17,16,11,19,'5,10,3,15','8',1,0),(13,1,3,4,6,0,0,0,0,0,0,0,0,'0','0',-1,0),(13,2,3,15,5,6,9,7,8,11,14,19,8,'17','18',0,0),(14,1,3,18,1,0,0,0,0,0,0,0,0,'0','0',-1,0),(14,2,1,4,5,11,8,9,10,6,16,15,12,'3','24',1,0),(15,1,1,2,4,0,0,0,0,0,0,0,0,'0','0',-1,0),(15,2,1,6,14,4,3,9,12,18,2,16,1,'5,8','7',1,0),(16,1,2,1,3,0,0,0,0,0,0,0,0,'0','0',-1,0),(16,2,1,2,5,6,9,12,10,17,16,3,2,'4','16',0,0),(17,1,1,2,3,0,0,0,0,0,0,0,0,'0','0',-1,0),(17,2,1,5,2,3,4,6,9,12,10,19,4,'15','25',0,0),(18,1,3,2,1,0,0,0,0,0,0,0,0,'0','0',-1,0),(18,2,9,5,1,4,18,14,6,19,11,16,1,'12','1',1,0),(19,1,1,3,2,0,0,0,0,0,0,0,0,'0','0',-1,0),(19,2,3,1,5,6,4,9,10,12,18,19,1,'17','4,6',0,0),(20,1,3,4,2,0,0,0,0,0,0,0,0,'0','0',-1,0),(20,2,4,5,6,2,12,1,7,17,14,9,3,'15,19','25',1,0); /*!40000 ALTER TABLE `results` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tips` -- DROP TABLE IF EXISTS `tips`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `tips` ( `t_u_id` int(4) NOT NULL DEFAULT '0', `t_g_id` int(4) NOT NULL DEFAULT '0', `t_e_id` int(2) NOT NULL DEFAULT '0', `t_d_id_p1` int(4) NOT NULL DEFAULT '0', `t_d_id_p2` int(4) NOT NULL DEFAULT '0', `t_d_id_p3` int(4) NOT NULL DEFAULT '0', `t_fl` int(4) NOT NULL DEFAULT '0', `t_firstout` int(4) NOT NULL DEFAULT '0', `t_bestcup` int(4) NOT NULL DEFAULT '0', `t_sc` int(2) NOT NULL DEFAULT '0', `t_timestamp` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `t_score` int(4) NOT NULL DEFAULT '0', PRIMARY KEY (`t_u_id`,`t_g_id`,`t_e_id`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tips` -- LOCK TABLES `tips` WRITE; /*!40000 ALTER TABLE `tips` DISABLE KEYS */; INSERT INTO `tips` VALUES (12,1,1,3,4,8,0,0,0,0,'2012-03-16 17:57:05',4),(4,1,1,4,1,3,0,0,0,0,'2012-03-16 06:13:36',2),(13,1,2,3,4,2,3,24,1,0,'2012-03-16 10:47:38',1),(13,1,1,4,3,1,0,0,0,0,'2012-03-16 10:48:16',2),(1,1,1,1,3,2,0,0,0,0,'2012-03-16 10:55:35',1),(6,1,1,4,1,3,0,0,0,0,'2012-03-16 12:52:22',2),(6,1,2,3,4,7,3,25,9,0,'2012-03-18 06:29:25',1),(9,1,1,1,7,2,0,0,0,0,'2012-03-16 17:03:06',0),(10,1,1,1,3,9,0,0,0,0,'2012-03-16 18:25:40',1),(2,1,1,3,1,8,0,0,0,0,'2012-03-17 06:57:56',2),(18,1,1,4,3,5,0,0,0,0,'2012-03-16 22:40:36',2),(7,1,1,4,3,2,0,0,0,0,'2012-03-17 04:34:23',2),(1,1,2,4,3,7,3,6,9,1,'2012-03-17 11:00:54',4),(4,1,2,4,3,2,3,25,9,1,'2012-03-17 15:00:24',4),(10,1,2,3,4,1,3,17,9,0,'2012-03-17 16:55:58',2),(12,1,2,3,4,7,4,19,9,1,'2012-03-17 18:44:30',4),(18,1,2,3,4,7,3,17,5,1,'2012-03-17 22:31:00',3),(9,1,2,4,7,3,3,20,9,1,'2012-03-18 06:28:30',5),(2,1,2,4,3,1,3,25,9,0,'2012-03-18 06:52:01',3),(7,1,2,4,1,3,3,6,1,-1,'2012-03-18 06:55:08',6),(13,2,2,3,1,4,3,14,7,0,'2012-03-22 14:23:44',0),(13,2,1,3,1,4,0,0,0,0,'2012-03-22 14:23:43',3),(6,2,1,3,4,8,0,0,0,0,'2012-03-23 14:06:40',4),(6,2,2,4,3,1,4,12,15,-1,'2012-03-23 14:08:20',1),(10,2,1,4,3,1,0,0,0,0,'2012-03-23 19:13:01',2),(12,2,1,3,1,4,0,0,0,0,'2012-03-23 19:28:15',3),(1,2,1,3,4,1,0,0,0,0,'2012-03-24 00:17:22',4),(4,2,1,4,5,3,0,0,0,0,'2012-03-24 06:29:58',2),(7,2,1,1,8,9,0,0,0,0,'2012-03-24 08:20:31',0),(9,2,1,3,4,7,0,0,0,0,'2012-03-24 08:37:41',6),(2,2,1,3,4,8,0,0,0,0,'2012-03-24 08:53:26',4),(18,2,1,1,4,9,0,0,0,0,'2012-03-24 08:54:52',2),(7,2,2,4,1,9,4,17,9,1,'2012-03-25 09:35:21',1),(12,2,2,3,4,1,9,12,9,1,'2012-03-24 16:53:33',3),(4,2,2,4,3,2,1,12,6,1,'2012-03-24 18:30:07',2),(1,2,2,4,3,1,4,21,14,0,'2012-03-24 19:51:09',0),(10,2,2,3,4,1,4,6,9,-1,'2012-03-24 20:12:40',1),(9,2,2,4,7,3,4,12,20,1,'2012-03-25 09:45:41',3),(2,2,2,4,3,1,3,23,14,1,'2012-03-25 09:57:10',2),(18,2,2,4,3,1,3,23,5,1,'2012-03-25 09:59:37',2),(13,3,1,3,2,4,0,0,0,0,'2012-04-13 08:24:08',1),(13,3,2,1,3,2,3,39,7,0,'2012-04-13 08:25:14',2),(4,3,1,3,1,7,0,0,0,0,'2012-04-13 20:15:40',3),(12,3,1,1,3,7,0,0,0,0,'2012-04-13 22:12:05',4),(7,3,1,3,7,1,0,0,0,0,'2012-04-13 23:36:26',2),(1,3,1,3,4,7,0,0,0,0,'2012-04-13 23:46:36',3),(10,3,1,4,3,1,0,0,0,0,'2012-04-13 23:51:42',2),(6,3,1,3,4,1,0,0,0,0,'2012-04-14 01:47:45',1),(6,3,2,4,9,14,4,28,15,-1,'2012-04-14 22:17:40',1),(9,3,1,3,4,7,0,0,0,0,'2012-04-14 07:05:31',3),(2,3,1,3,8,1,0,0,0,0,'2012-04-14 07:54:54',2),(18,3,1,4,7,2,0,0,0,0,'2012-04-14 07:55:47',1),(12,3,2,3,9,8,9,12,1,0,'2012-04-14 12:17:53',3),(1,3,2,4,3,2,3,10,17,1,'2012-04-15 00:40:35',3),(10,3,2,8,4,7,4,6,1,1,'2012-04-15 02:17:25',3),(7,3,2,8,9,14,8,10,1,-1,'2012-04-15 08:13:42',2),(4,3,2,3,7,8,3,39,1,1,'2012-04-15 08:23:28',1),(9,3,2,7,4,3,4,1,18,0,'2012-04-15 08:48:28',5),(18,3,2,8,7,3,3,14,1,0,'2012-04-15 08:56:32',5),(2,3,2,9,4,3,8,7,3,0,'2012-04-15 08:57:25',8),(13,4,1,3,4,7,0,0,0,0,'2012-04-20 09:17:48',1),(13,4,2,3,5,7,3,11,7,1,'2012-04-20 09:19:43',1),(6,4,1,8,3,1,0,0,0,0,'2012-04-20 11:19:38',3),(6,4,2,4,8,3,7,10,17,-1,'2012-04-20 12:04:52',0),(12,4,1,8,1,3,0,0,0,0,'2012-04-20 18:55:57',2),(10,4,1,1,3,8,0,0,0,0,'2012-04-20 18:59:58',4),(18,4,1,8,1,3,0,0,0,0,'2012-04-21 11:01:36',2),(1,4,1,8,1,3,0,0,0,0,'2012-04-21 12:56:10',2),(9,4,1,1,8,3,0,0,0,0,'2012-04-21 12:19:13',3),(7,4,1,8,2,1,0,0,0,0,'2012-04-21 12:50:21',2),(1,4,2,3,4,1,2,19,7,0,'2012-04-22 12:41:07',4),(2,4,2,1,3,4,2,23,7,0,'2012-04-22 13:53:08',5),(4,4,2,1,2,3,1,25,9,0,'2012-04-22 06:38:44',7),(12,4,2,1,2,3,5,25,7,0,'2012-04-22 09:05:06',8),(10,4,2,1,3,8,11,24,7,-1,'2012-04-22 12:41:06',4),(7,4,2,4,3,8,8,11,7,0,'2012-04-22 13:47:37',3),(9,4,2,3,4,1,4,12,7,0,'2012-04-22 13:52:22',4),(18,4,2,1,2,3,1,16,7,0,'2012-04-22 13:57:25',6),(13,5,1,3,9,1,0,0,0,0,'2012-05-11 09:07:26',2),(13,5,2,1,9,4,1,25,9,0,'2012-05-11 09:09:43',2),(6,5,1,5,1,14,0,0,0,0,'2012-05-11 15:10:48',1),(6,5,2,5,4,1,4,25,7,-1,'2012-05-11 15:11:50',1),(12,5,1,1,3,10,0,0,0,0,'2012-05-12 00:58:34',1),(10,5,1,4,1,3,0,0,0,0,'2012-05-12 10:29:17',1),(7,5,1,1,4,2,0,0,0,0,'2012-05-12 13:54:32',0),(18,5,1,1,2,5,0,0,0,0,'2012-05-12 12:02:09',2),(1,5,1,1,3,4,0,0,0,0,'2012-05-12 12:35:59',1),(9,5,1,1,4,2,0,0,0,0,'2012-05-12 13:39:43',0),(2,5,1,1,8,3,0,0,0,0,'2012-05-12 13:47:57',1),(12,5,2,9,1,10,10,21,3,1,'2012-05-12 21:06:31',3),(7,5,2,9,5,4,5,17,3,-1,'2012-05-13 13:58:42',5),(9,5,2,5,9,1,9,24,3,0,'2012-05-13 12:15:56',5),(10,5,2,9,10,5,9,19,3,1,'2012-05-13 12:32:49',3),(1,5,2,9,1,10,3,7,3,0,'2012-05-13 13:05:16',7),(18,5,2,5,9,18,5,19,3,0,'2012-05-13 13:37:53',6),(2,5,2,5,9,1,3,14,3,0,'2012-05-13 13:43:23',5),(13,6,2,3,5,1,3,25,5,1,'2012-05-25 08:44:20',2),(13,6,1,5,3,1,0,0,0,0,'2012-05-25 08:44:42',0),(4,6,1,6,4,5,0,0,0,0,'2012-05-26 07:26:37',0),(12,6,1,5,3,8,0,0,0,0,'2012-05-26 08:59:40',2),(1,6,1,5,1,10,0,0,0,0,'2012-05-26 12:14:55',0),(10,6,1,5,10,1,0,0,0,0,'2012-05-26 12:55:46',0),(7,6,1,5,6,8,0,0,0,0,'2012-05-26 13:24:44',2),(18,6,1,5,1,6,0,0,0,0,'2012-05-26 13:49:52',0),(12,6,2,3,10,8,5,6,4,1,'2012-05-26 17:59:19',2),(1,6,2,3,5,2,8,7,18,1,'2012-05-27 13:55:31',3),(4,6,2,2,3,8,7,39,1,1,'2012-05-27 07:05:02',4),(18,6,2,2,5,3,5,19,15,1,'2012-05-27 11:46:58',6),(10,6,2,2,8,3,2,15,18,1,'2012-05-27 12:07:46',5),(2,6,2,2,8,3,10,25,18,1,'2012-05-27 13:43:17',5),(7,6,2,2,3,1,2,15,1,1,'2012-05-27 13:46:24',3),(9,6,2,2,8,3,2,25,15,-1,'2012-05-27 13:37:44',6),(12,7,1,1,3,4,0,0,0,0,'2012-06-08 22:18:38',4),(19,7,2,5,1,8,1,11,7,0,'2012-06-09 12:38:11',2),(19,7,1,5,1,6,0,0,0,0,'2012-06-09 12:39:20',2),(1,7,1,3,1,5,0,0,0,0,'2012-06-09 17:02:11',4),(10,7,1,1,3,2,0,0,0,0,'2012-06-09 18:04:16',4),(4,7,1,5,1,2,0,0,0,0,'2012-06-09 18:24:44',2),(18,7,1,5,3,1,0,0,0,0,'2012-06-09 18:29:02',4),(7,7,1,5,3,1,0,0,0,0,'2012-06-09 18:42:08',4),(2,7,1,1,3,5,0,0,0,0,'2012-06-09 18:47:16',6),(9,7,1,3,1,5,0,0,0,0,'2012-06-09 18:56:46',4),(12,7,2,1,5,3,10,7,17,-1,'2012-06-09 22:42:18',1),(6,7,2,1,5,3,1,10,15,-1,'2012-06-09 23:09:08',4),(1,7,2,1,3,5,2,18,15,1,'2012-06-10 05:08:14',2),(10,7,2,1,3,2,5,24,23,-1,'2012-06-10 09:31:10',1),(4,7,2,1,5,3,1,11,4,1,'2012-06-10 09:51:47',1),(9,7,2,1,3,5,1,25,18,-1,'2012-06-10 17:28:17',2),(7,7,2,1,3,5,1,18,7,1,'2012-06-10 19:26:15',1),(2,7,2,1,5,3,1,21,18,1,'2012-06-10 19:47:34',1),(18,7,2,5,1,3,5,18,4,0,'2012-06-10 19:52:08',2),(13,8,1,3,9,1,0,0,0,0,'2012-06-22 08:00:54',2),(13,8,2,1,5,4,1,26,4,0,'2012-06-22 08:01:40',0),(6,8,1,1,18,2,0,0,0,0,'2012-06-22 13:07:02',3),(6,8,2,18,1,4,1,23,15,-1,'2012-06-22 13:08:46',0),(12,8,1,1,2,7,0,0,0,0,'2012-06-22 20:51:51',2),(19,8,1,1,7,2,0,0,0,0,'2012-06-23 11:50:29',2),(1,8,1,1,4,10,0,0,0,0,'2012-06-23 12:40:59',2),(18,8,1,1,4,3,0,0,0,0,'2012-06-23 13:17:11',3),(7,8,1,4,1,9,0,0,0,0,'2012-06-23 13:35:33',1),(10,8,1,4,1,3,0,0,0,0,'2012-06-23 13:36:36',2),(2,8,1,3,1,5,0,0,0,0,'2012-06-23 13:55:23',2),(12,8,2,1,3,10,9,7,2,-1,'2012-06-24 00:35:45',2),(1,8,2,1,3,10,1,7,2,0,'2012-06-24 11:31:42',1),(10,8,2,1,3,8,5,17,2,0,'2012-06-24 12:48:36',4),(2,8,2,1,3,9,18,6,5,0,'2012-06-24 13:02:23',0),(9,8,2,1,10,3,1,7,2,0,'2012-06-24 13:15:11',1),(7,8,2,1,10,8,10,3,4,1,'2012-06-24 13:27:40',1),(18,8,2,1,3,9,1,16,5,0,'2012-06-24 13:48:24',0),(13,9,2,5,3,1,3,33,1,0,'2012-07-06 15:02:53',4),(13,9,1,3,1,5,0,0,0,0,'2012-07-06 15:03:13',1),(12,9,1,1,10,3,0,0,0,0,'2012-07-06 23:37:53',0),(1,9,1,3,5,10,0,0,0,0,'2012-07-07 13:55:09',1),(18,9,1,5,1,10,0,0,0,0,'2012-07-07 13:19:52',2),(10,9,1,3,1,5,0,0,0,0,'2012-07-07 13:39:06',1),(2,9,1,1,5,3,0,0,0,0,'2012-07-07 13:56:06',1),(12,9,2,1,3,5,5,12,4,1,'2012-07-07 20:10:42',1),(7,9,2,5,2,1,5,11,8,1,'2012-07-08 09:32:59',3),(1,9,2,5,1,3,5,19,4,1,'2012-07-07 23:52:19',1),(10,9,2,5,1,3,5,16,4,1,'2012-07-08 13:30:58',1),(18,9,2,5,2,1,5,19,15,1,'2012-07-08 13:35:15',3),(9,9,2,5,1,7,1,23,15,1,'2012-07-08 13:45:16',1),(19,9,2,1,9,6,1,20,10,0,'2012-07-08 13:48:27',2),(2,9,2,5,1,2,3,21,4,1,'2012-07-08 13:57:30',5),(12,10,2,1,2,5,10,12,4,-1,'2012-07-12 13:50:18',1),(12,10,1,1,2,5,0,0,0,0,'2012-07-12 13:52:07',3),(13,10,2,1,3,2,1,11,3,1,'2012-07-20 08:43:57',-1),(13,10,1,3,1,2,0,0,0,0,'2012-07-20 14:28:04',4),(6,10,1,4,5,1,0,0,0,0,'2012-07-20 14:26:17',2),(6,10,2,4,1,3,9,17,15,-1,'2012-07-20 14:27:50',3),(7,10,1,3,5,4,0,0,0,0,'2012-07-21 09:56:02',1),(19,10,1,2,18,4,0,0,0,0,'2012-07-21 11:57:30',1),(2,10,1,5,1,2,0,0,0,0,'2012-07-21 13:38:23',6),(10,10,1,5,3,1,0,0,0,0,'2012-07-21 13:42:45',3),(1,10,1,5,3,2,0,0,0,0,'2012-07-21 13:48:22',4),(18,10,1,5,1,3,0,0,0,0,'2012-07-21 13:59:14',4),(19,10,2,5,3,1,7,39,20,0,'2012-07-22 05:20:18',4),(7,10,2,1,5,4,1,12,2,1,'2012-07-22 09:30:27',1),(1,10,2,1,5,18,2,17,10,0,'2012-07-22 12:41:35',2),(10,10,2,5,1,4,5,25,8,1,'2012-07-22 12:45:29',4),(18,10,2,5,1,7,5,19,10,1,'2012-07-22 13:54:46',1),(2,10,2,1,5,3,3,18,10,0,'2012-07-22 13:55:29',2),(9,10,2,5,7,3,9,1,8,-1,'2012-07-22 13:59:11',4),(6,11,1,5,1,3,0,0,0,0,'2012-07-27 14:56:37',2),(6,11,2,5,4,1,9,3,15,-1,'2012-07-27 14:58:23',0),(12,11,1,3,5,10,0,0,0,0,'2012-07-27 22:01:26',3),(7,11,1,3,1,5,0,0,0,0,'2012-07-28 12:41:11',3),(1,11,1,3,5,2,0,0,0,0,'2012-07-28 13:31:49',2),(18,11,1,3,2,5,0,0,0,0,'2012-07-28 13:34:49',2),(10,11,1,1,2,3,0,0,0,0,'2012-07-28 13:45:50',2),(2,11,1,3,1,2,0,0,0,0,'2012-07-28 13:53:04',3),(12,11,2,3,10,1,9,17,7,1,'2012-07-28 16:37:49',2),(1,11,2,3,4,1,9,17,15,0,'2012-07-29 07:13:54',3),(10,11,2,3,1,9,5,24,2,0,'2012-07-29 11:21:45',6),(7,11,2,3,1,10,3,17,2,-1,'2012-07-29 13:12:19',6),(18,11,2,3,1,5,3,16,2,0,'2012-07-29 13:44:37',5),(2,11,2,3,1,5,3,25,7,0,'2012-07-29 13:57:32',3),(12,12,1,1,5,9,0,0,0,0,'2012-08-31 20:44:18',0),(10,12,1,1,3,5,0,0,0,0,'2012-09-01 01:36:19',0),(1,12,1,1,5,4,0,0,0,0,'2012-09-01 03:41:45',1),(6,12,1,1,5,2,0,0,0,0,'2012-09-01 12:17:14',0),(6,12,2,4,5,9,5,3,1,-1,'2012-09-02 09:37:05',7),(19,12,1,14,15,3,0,0,0,0,'2012-09-01 12:45:27',1),(18,12,1,5,9,4,0,0,0,0,'2012-09-01 13:23:08',1),(7,12,1,5,14,9,0,0,0,0,'2012-09-01 13:41:29',2),(1,12,2,9,5,4,9,17,8,0,'2012-09-02 13:06:21',3),(10,12,2,4,5,9,5,21,1,1,'2012-09-02 13:30:19',5),(18,12,2,4,9,5,4,18,7,1,'2012-09-02 13:50:07',4),(2,12,2,4,9,5,4,7,8,0,'2012-09-02 13:58:38',4),(18,13,1,5,3,4,0,0,0,0,'2012-09-08 12:03:57',2),(6,13,1,4,3,5,0,0,0,0,'2012-09-08 12:22:57',2),(6,13,2,4,9,5,5,10,7,-1,'2012-09-08 12:29:05',2),(1,13,1,3,5,4,0,0,0,0,'2012-09-08 13:45:41',3),(10,13,1,3,5,4,0,0,0,0,'2012-09-08 13:46:17',3),(19,13,1,5,4,6,0,0,0,0,'2012-09-08 13:46:42',4),(2,13,1,3,5,4,0,0,0,0,'2012-09-08 13:56:05',3),(12,13,2,3,4,6,5,10,12,1,'2012-09-08 15:37:26',1),(7,13,2,3,4,1,5,17,5,0,'2012-09-09 10:50:01',6),(1,13,2,3,4,1,3,18,12,1,'2012-09-09 13:00:56',1),(2,13,2,3,4,1,5,18,12,1,'2012-09-09 13:42:20',1),(10,13,2,3,4,1,4,21,5,1,'2012-09-09 13:52:55',1),(19,13,2,3,1,7,3,6,20,0,'2012-09-09 13:54:19',3),(18,13,2,3,4,6,5,18,2,0,'2012-09-09 13:54:48',3),(12,14,1,1,3,4,0,0,0,0,'2012-09-22 10:33:31',2),(1,14,1,1,3,5,0,0,0,0,'2012-09-22 11:36:56',2),(7,14,1,1,5,3,0,0,0,0,'2012-09-22 13:46:23',2),(2,14,1,1,3,5,0,0,0,0,'2012-09-22 13:40:00',2),(6,14,1,1,5,3,0,0,0,0,'2012-09-22 13:43:49',2),(10,14,1,1,5,3,0,0,0,0,'2012-09-22 13:45:58',2),(6,14,2,3,1,5,3,10,7,-1,'2012-09-22 13:47:24',3),(18,14,1,1,3,5,0,0,0,0,'2012-09-22 14:18:16',2),(12,14,2,3,1,5,4,17,9,-1,'2012-09-23 08:58:53',3),(7,14,2,3,1,4,3,11,2,1,'2012-09-23 10:10:10',3),(10,14,2,3,1,4,3,19,14,1,'2012-09-23 12:37:09',3),(1,14,2,3,1,5,1,19,9,1,'2012-09-23 13:28:55',4),(18,14,2,3,4,5,3,18,15,1,'2012-09-23 13:40:28',5),(2,14,2,3,1,5,3,25,6,1,'2012-09-23 13:55:08',4),(1,15,1,3,1,2,0,0,0,0,'2012-10-05 18:49:57',2),(12,15,1,3,1,2,0,0,0,0,'2012-10-05 18:56:28',2),(10,15,1,1,3,4,0,0,0,0,'2012-10-05 21:04:13',4),(6,15,1,2,3,1,0,0,0,0,'2012-10-05 22:51:45',2),(6,15,2,3,1,2,3,10,7,-1,'2012-10-05 22:52:51',3),(12,15,2,1,2,5,9,4,7,1,'2012-10-06 08:35:19',5),(1,15,2,1,2,5,15,3,7,1,'2012-10-06 21:32:51',5),(10,15,2,1,2,5,1,24,7,-1,'2012-10-06 21:35:38',5),(7,15,2,1,2,14,1,7,4,-1,'2012-10-06 22:37:03',5),(2,15,2,1,2,15,1,23,7,0,'2012-10-07 07:46:09',4),(18,15,2,1,2,5,1,7,3,0,'2012-10-07 07:57:32',2),(19,16,1,1,5,4,0,0,0,0,'2012-10-12 11:58:41',1),(19,16,2,5,2,3,1,11,9,1,'2012-10-12 11:59:47',2),(6,16,1,1,2,5,0,0,0,0,'2012-10-12 15:00:34',2),(6,16,2,1,3,5,1,17,7,-1,'2012-10-12 15:02:55',4),(1,16,1,1,3,4,0,0,0,0,'2012-10-12 16:44:05',2),(10,16,1,1,3,2,0,0,0,0,'2012-10-12 16:46:10',3),(12,16,1,2,1,5,0,0,0,0,'2012-10-12 18:58:41',4),(12,16,2,1,2,5,5,10,9,1,'2012-10-12 18:59:36',5),(7,16,1,1,3,9,0,0,0,0,'2012-10-13 05:53:37',2),(2,16,1,1,2,5,0,0,0,0,'2012-10-12 22:35:16',2),(18,16,1,1,3,4,0,0,0,0,'2012-10-13 06:37:45',2),(7,16,2,1,2,3,1,10,4,-1,'2012-10-14 07:44:22',4),(1,16,2,1,3,5,1,19,4,1,'2012-10-13 23:40:49',3),(10,16,2,1,3,5,1,21,18,1,'2012-10-13 23:45:52',3),(2,16,2,2,1,5,1,24,4,0,'2012-10-14 07:56:56',5),(18,16,2,5,3,1,5,17,15,1,'2012-10-14 07:58:39',1),(12,17,1,1,2,9,0,0,0,0,'2012-10-26 15:45:17',4),(1,17,1,1,2,5,0,0,0,0,'2012-10-26 23:39:33',4),(2,17,1,1,3,5,0,0,0,0,'2012-10-27 08:52:38',3),(6,17,1,1,2,4,0,0,0,0,'2012-10-27 09:56:13',4),(6,17,2,1,2,3,1,10,7,-1,'2012-10-27 09:57:09',3),(10,17,1,1,3,4,0,0,0,0,'2012-10-27 10:01:16',3),(7,17,1,1,2,5,0,0,0,0,'2012-10-27 10:21:33',4),(18,17,1,1,2,4,0,0,0,0,'2012-10-27 10:21:35',4),(12,17,2,1,2,3,9,10,7,-1,'2012-10-27 21:02:35',3),(1,17,2,1,2,4,2,16,17,0,'2012-10-28 00:38:43',4),(7,17,2,1,3,2,1,12,14,-1,'2012-10-28 08:31:15',4),(18,17,2,1,2,5,1,10,7,0,'2012-10-28 10:19:42',5),(2,17,2,1,2,3,1,21,14,0,'2012-10-28 10:22:24',4),(10,17,2,1,3,2,1,10,14,1,'2012-10-28 10:23:14',3),(1,18,1,1,3,4,0,0,0,0,'2012-11-02 19:28:16',2),(12,18,1,1,2,3,0,0,0,0,'2012-11-03 09:55:15',4),(2,18,1,3,1,4,0,0,0,0,'2012-11-03 12:09:25',3),(10,18,1,1,2,5,0,0,0,0,'2012-11-03 13:41:36',3),(18,18,1,1,3,4,0,0,0,0,'2012-11-03 13:44:47',2),(7,18,1,1,3,4,0,0,0,0,'2012-11-03 13:47:18',2),(12,18,2,3,4,5,1,21,1,0,'2012-11-04 09:12:24',3),(1,18,2,3,2,5,3,15,1,0,'2012-11-04 10:34:07',2),(7,18,2,3,2,9,1,10,1,0,'2012-11-04 12:05:58',3),(10,18,2,3,2,5,3,7,1,0,'2012-11-04 13:44:57',2),(18,18,2,3,5,2,3,10,1,0,'2012-11-04 13:53:03',3),(2,18,2,3,2,4,3,25,1,0,'2012-11-04 13:57:32',1),(7,19,1,1,2,5,0,0,0,0,'2012-11-17 15:42:49',3),(12,19,1,1,2,5,0,0,0,0,'2012-11-17 16:04:02',3),(1,19,1,1,3,5,0,0,0,0,'2012-11-17 18:15:25',4),(10,19,1,3,1,4,0,0,0,0,'2012-11-17 18:28:24',2),(18,19,1,1,3,5,0,0,0,0,'2012-11-17 18:36:04',4),(2,19,1,1,3,5,0,0,0,0,'2012-11-17 18:42:07',4),(2,19,2,1,3,9,1,18,8,0,'2012-11-17 20:35:59',4),(12,19,2,1,9,2,1,5,8,1,'2012-11-18 09:02:44',1),(1,19,2,1,3,9,3,15,4,1,'2012-11-18 09:04:29',3),(7,19,2,1,9,2,1,10,4,1,'2012-11-18 14:48:37',3),(10,19,2,1,3,9,3,6,5,1,'2012-11-18 19:44:38',1),(18,19,2,1,5,3,1,10,15,1,'2012-11-18 19:44:42',3),(1,20,1,3,1,2,0,0,0,0,'2012-11-23 23:03:39',4),(10,20,1,1,3,2,0,0,0,0,'2012-11-24 11:18:20',3),(12,20,1,1,2,3,0,0,0,0,'2012-11-24 14:02:52',2),(18,20,1,3,2,1,0,0,0,0,'2012-11-24 16:13:24',3),(7,20,1,3,1,2,0,0,0,0,'2012-11-24 16:50:14',4),(2,20,1,1,3,5,0,0,0,0,'2012-11-24 16:56:05',1),(12,20,2,3,4,5,1,2,10,1,'2012-11-25 09:50:00',3),(7,20,2,3,4,1,3,10,5,1,'2012-11-25 13:36:11',3),(1,20,2,3,4,1,3,10,18,1,'2012-11-25 16:37:50',3),(10,20,2,3,1,4,3,6,10,1,'2012-11-25 16:40:51',3),(18,20,2,3,5,6,3,11,5,1,'2012-11-25 16:49:06',6),(2,20,2,3,4,1,3,22,10,1,'2012-11-25 16:52:31',3); /*!40000 ALTER TABLE `tips` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `users` -- DROP TABLE IF EXISTS `users`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `users` ( `u_id` int(11) NOT NULL AUTO_INCREMENT, `u_name` char(3) NOT NULL DEFAULT '', `u_passcode` varchar(41) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL DEFAULT '', `u_pic` varchar(40) DEFAULT NULL, `u_realname` varchar(40) NOT NULL DEFAULT '', `u_nickname` varchar(20) NOT NULL DEFAULT 'not revealed', `u_email` varchar(50) NOT NULL DEFAULT '', `u_emailreminder` int(1) NOT NULL DEFAULT '0', `u_nationality` varchar(20) NOT NULL DEFAULT 'not revealed', `u_favdriver` int(11) NOT NULL DEFAULT '0', `u_since` year(4) NOT NULL DEFAULT '0000', `u_gtwins` int(3) NOT NULL DEFAULT '0', `u_admin` int(1) NOT NULL DEFAULT '0', PRIMARY KEY (`u_id`) ) ENGINE=MyISAM AUTO_INCREMENT=21 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `users` -- LOCK TABLES `users` WRITE; /*!40000 ALTER TABLE `users` DISABLE KEYS */; INSERT INTO `users` VALUES (1,'MAM','18d022103920e120b2faabf4be68aa8f','pic_MAM.gif','Markus A. Mascelli','MAM','mam@heimam.at',0,'italian',602,2006,2,1),(2,'GUE','78918cecf8926d0cada4c5bc31af87a3','pic_GUE.gif','Guenther Schmidt','GueStar','guenther.schmidt@gmail.com',0,'austrian',15,2006,2,0),(3,'ZEI','8dad7cabce9c511bd4983e8dc96ea5da','pic_ZEI.gif','Christian Zeichmann','Zeichi','christian.zeichmann@atos.net',0,'austrian',0,2007,1,0),(4,'AFG','83384431390a14889c9955938bb5604f','pic_AFG.gif','Andrea F. Grohmann','','andrea.grohmann@chello.at',0,'austrian',0,2007,0,0),(5,'JIR','8522c2ccfd6fc5d242ed16d168401fad','avatar.jpg','Juergen Iser','','j.iser@gmx.at',0,'austrian',602,2008,0,0),(6,'KAI','e5f4d97a4961dea1184bbbe847b591f3','avatar.jpg','Roman Kailbach','Kailo','kailo@gmx.at',0,'austrian',334,2008,0,0),(7,'WOB','776ad0ef27acc0602c337dc2736f3a97','imagesca63vc0b.jpg','Wolfgang Boehm','WoB','wboehm@gmail.com',0,'austrian',0,2008,0,0),(8,'REG','776ad0ef27acc0602c337dc2736f3a97','yoshi1.jpg','Regina Boehm','','rboehm@gmail.com',0,'austrian',0,2008,0,0),(9,'ISA','3c4db9561aa2b8530d5c60014dbfbe86','isa_grid_kl_hp_3.jpg','Ildiko Samu-Puehringer','sam','ildiko.samu@aon.at',0,'hungarian',667,2008,0,0),(10,'MRO','cda0fd2918d19e20ac871ed79a8d2bb0','pic_MRO.jpg','Martha Rossa','RoMa','rossama@yahoo.com',0,'austrian',334,2008,1,1),(11,'MPU','f9c17117b5b8dbf8cfa83d8057ee1a0b','mpu_grid_tip_blaukl.jpg','Michael Puehringer','','michael.puehringer@lotterien.at',0,'austrian',621,2008,0,0),(12,'RHA','9ced82c0515df69d4e3311f63d40ffa0','avatar.jpg','Robert Haller','','robert.haller@kabsi.at',0,'austrian',0,2008,0,0),(13,'FAN','33c2e20d31b3ae8f4564d7517738eb7d','extremeevil.gif','Georg Juren','Schurl','georg.juren@atos.net',0,'austrian',49,2009,0,0),(14,'MBR','f9c17117b5b8dbf8cfa83d8057ee1a0b','avatar.jpg','Markus Brenner','','m.brenn@gmx.net',0,'austrian',0,2009,0,0),(15,'RSC','d67ee0b6a91696158441100ba2e5a9b0','schicht_roman.jpg','Roman Schicht','','rschicht@yahoo.com',0,'austrian',0,2009,0,0),(16,'FAB','f9c17117b5b8dbf8cfa83d8057ee1a0b','avatar.jpg','Alexander Fabozzi','','a.fabozzi@gmx.at',0,'austrian',0,2010,0,0),(17,'MAR','776ad0ef27acc0602c337dc2736f3a97','avatar.jpg','Marina Boehm','','mboehm@gmail.com',0,'austrian',0,2010,0,0),(18,'IRS','8918b74d571421bcc47fc59816bf8fc2','foto_ivan.png','Ivan Rodriguez','','irodriguezs@hotmail.com',0,'Spanish',15,2010,1,0),(19,'ALE','2ab3343875e56dc0a15cbb6a98570cf2','avatar.jpg','Alexander Doler','','alexander.doler@atos.net',0,'Austrian',0,2012,0,0); /*!40000 ALTER TABLE `users` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `winners` -- DROP TABLE IF EXISTS `winners`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `winners` ( `w_season` int(4) NOT NULL DEFAULT '0', `w_u_id` int(4) NOT NULL DEFAULT '0', PRIMARY KEY (`w_season`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `winners` -- LOCK TABLES `winners` WRITE; /*!40000 ALTER TABLE `winners` DISABLE KEYS */; INSERT INTO `winners` VALUES (2006,2),(2007,2),(2008,10),(2009,1),(2010,3),(2011,1),(2012,18); /*!40000 ALTER TABLE `winners` ENABLE KEYS */; UNLOCK TABLES; -- -- Current Database: `niki_2013` -- CREATE DATABASE /*!32312 IF NOT EXISTS*/ `niki_2013` /*!40100 DEFAULT CHARACTER SET latin1 */; USE `niki_2013`; -- -- Table structure for table `alldrivers` -- DROP TABLE IF EXISTS `alldrivers`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `alldrivers` ( `a_id` int(4) NOT NULL AUTO_INCREMENT, `a_lname` varchar(20) NOT NULL DEFAULT '', `a_fname` varchar(20) NOT NULL DEFAULT '', PRIMARY KEY (`a_id`) ) ENGINE=MyISAM AUTO_INCREMENT=831 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `alldrivers` -- LOCK TABLES `alldrivers` WRITE; /*!40000 ALTER TABLE `alldrivers` DISABLE KEYS */; INSERT INTO `alldrivers` VALUES (1,'ABATE','Carlo'),(2,'ABECASSIS','George'),(3,'ACHESON','Kenny'),(4,'ADAMS','Philippe'),(5,'ADER','Walt'),(6,'ADOLFF','Kurt'),(7,'AGABASHIAN','Fred'),(8,'AHRENS','Kurt Jr.'),(9,'ALBERS','Christijan'),(10,'ALBORETO','Michele'),(11,'ALESI','Jean'),(12,'ALGUERSUARI','Jaime'),(13,'ALLIOT','Philippe'),(14,'ALLISON','Cliff'),(15,'ALONSO','Fernando'),(16,'AMATI','Giovanna'),(17,'AMICK','George'),(18,'AMICK','Red'),(19,'AMON','Chris'),(20,'ANDERSON','Bob'),(21,'ANDERSSON','Conny'),(22,'ANDRETTI','Mario'),(23,'ANDRETTI','Michael'),(24,'ANDREWS','Keith'),(25,'APICELLA','Marco'),(26,'ARMI','Frank'),(27,'ARNOLD','Chuck'),(28,'ARNOUX','Rene'),(29,'ARUNDELL','Peter'),(30,'ASCARI','Alberto'),(31,'ASHDOWN','Peter'),(32,'ASHLEY','Ian'),(33,'ASHMORE','Gerry'),(34,'ASTON','Bill'),(35,'ATTWOOD','Richard'),(36,'AYULO','Manny'),(37,'BADOER','Luca'),(38,'BAGHETTI','Giancarlo'),(39,'BAILEY','Julian'),(40,'BALDI','Mauro'),(41,'BALL','Bobby'),(42,'BALSA','Marcel'),(43,'BANDINI','Lorenzo'),(44,'BANKS','Henry'),(45,'BARBAZZA','Fabrizio'),(46,'BARBER','John'),(47,'BARBER','Skip'),(48,'BARILLA','Paolo'),(49,'BARRICHELLO','Rubens'),(50,'BARTELS','Michael'),(51,'BARTH','Edgar'),(52,'BASSI','Giorgio'),(53,'BAUER','Erwin'),(54,'BAUMGARTNER','Zsolt'),(55,'BAYOL','Elie'),(56,'BEAUMAN','Don'),(57,'BECHEM','Karl–Guenther'),(58,'BEHRA','Jean'),(59,'BELL','Derek'),(60,'BELLOF','Stefan'),(61,'BELMONDO','Paul'),(62,'BELSO','Tom'),(63,'BELTOISE','Jean-Pierre'),(64,'BERETTA','Olivier'),(65,'BERG','Allen'),(66,'BERGER','Georges'),(67,'BERGER','Gerhard'),(68,'BERNARD','Eric'),(69,'BERNOLDI','Enrique'),(70,'BERTAGGIA','Enrico'),(71,'BETTENHAUSEN','Tony'),(72,'BEUTTLER','Mike'),(73,'BHANUBANDH','Birabongse'),(74,'BIANCHI','Lucien'),(75,'BIANCO','Gino'),(76,'BINDER','Hans'),(77,'BIONDETTI','Clemente'),(78,'BIRGER','Pablo'),(79,'BISCH','Art'),(80,'BLANCHARD','Harry'),(81,'BLEEKEMOLEN','Michael'),(82,'BLIGNAUT','Alex'),(83,'BLOKDYK','Trevor'),(84,'BLUNDELL','Mark'),(85,'BOESEL','Raul'),(86,'BOFFA','Menato'),(87,'BONDURANT','Bob'),(88,'BONETTO','Felice'),(89,'BONNIER','Jo'),(90,'BONOMI','Roberto'),(91,'BORDEU','Juan Manuel'),(92,'BORGUDD','Slim'),(93,'BOTHA','Luki'),(94,'BOULLION','Jean-Christophe'),(95,'BOURDAIS','Sebastien'),(96,'BOUTSEN','Thierry'),(97,'BOYD','Johnny'),(98,'BRABHAM','David'),(99,'BRABHAM','Gary'),(100,'BRABHAM','Jack'),(101,'BRACK','Bill'),(102,'BRAMBILLA','Ernesto'),(103,'BRAMBILLA','Vittorio'),(104,'BRANCA','Toni'),(105,'BRANCATELLI','Gianfranco'),(106,'BRANDON','Eric'),(107,'BRANSON','Don'),(108,'BRIDGER','Tom'),(109,'BRISE','Tony'),(110,'BRISTOW','Chris'),(111,'BROEKER','Peter'),(112,'BROOKS','Tony'),(113,'BROWN','Alan'),(114,'BROWN','Walt'),(115,'BROWN','Warwick'),(116,'BRUDES','Adolf'),(117,'BRUNDLE','Martin'),(118,'BRUNI','Gianmaria'),(119,'BRYAN','Jimmy'),(120,'BUCCI','Clemar'),(121,'BUCKNUM','Ronnie'),(122,'BUEB','Ivor'),(123,'BUEMI','Sebastien'),(124,'BUENO','Luiz'),(125,'BURGESS','Ian'),(126,'BURTI','Luciano'),(127,'BUSSINELLO','Roberto'),(128,'BUTTON','Jenson'),(129,'BYRNE','Tommy'),(130,'CABIANCA','Giulio'),(131,'CADE','Phil'),(132,'CAFFI','Alex'),(133,'CAMPBELL-JONES','John'),(134,'CAMPOS','Adrian'),(135,'CANNON','John'),(136,'CANTONI','Eitel'),(137,'CANTRELL','Bill'),(138,'CAPELLI','Ivan'),(139,'CARINI','Piero'),(140,'CARTER','Duane'),(141,'CASTELLOTTI','Eugenio'),(142,'CECOTTO','Johnny'),(143,'CEVERT','Francois'),(144,'CHABOUD','Eugène'),(145,'CHAMBERLAIN','Jay'),(146,'CHAPMAN','Colin'),(147,'CHARLTON','Dave'),(148,'CHAVES','Pedro Matos'),(149,'CHEESBOURG','Bill'),(150,'CHEEVER','Eddie'),(151,'CHIESA','Andrea'),(152,'CHIMERI','Ettore'),(153,'CHIRON','Louis'),(154,'CHITWOOD','Joie'),(155,'CHRISTIE','Bob'),(156,'CLAES','Johnny'),(157,'CLAPHAM','David'),(158,'CLARK','Jim'),(159,'COGAN','Kevin'),(160,'COLLINS','Peter'),(161,'COLLOMB','Bernard'),(162,'COLOMBO','Alberto'),(163,'COMAS','Erik'),(164,'COMOTTI','Franco'),(165,'CONNOR','George'),(166,'CONSTANTINE','George'),(167,'CORDTS','John'),(168,'COULTHARD','David'),(169,'COURAGE','Piers'),(170,'CRAFT','Chris'),(171,'CRAWFORD','Jim'),(172,'CRAWFORD','Ray'),(173,'CRESPO','Alberto'),(174,'CREUS','Antonio'),(175,'CROCKETT','Larry'),(176,'CROOK','Tony'),(177,'CROSS','Art'),(178,'CROSSLEY','Geoff'),(179,'DA MATTA','Cristiano'),(180,'DA SLIVA RAMOS','Hernando'),(181,'DAIGH','Chuck'),(182,'DALMAS','Yannick'),(183,'DALY','Derek'),(184,'DANNER','Christian'),(185,'DAPONTE','Jorge'),(186,'DAVIDSON','Anthony'),(187,'DAVIES','Jimmy'),(188,'DAVIS','Colin'),(189,'DAYWALT','Jimmy'),(190,'DE ADAMICH','Andrea'),(191,'DE ANGELIS','Elio'),(192,'DE ARAUJO CABRAL','Mario'),(193,'DE CESARIS','Andrea'),(194,'DE CHANGY','Alain'),(195,'DE DRYVER','Bernard'),(196,'DE FILIPPIS','Maria Teresa'),(197,'DE GRAFFENRIED','Emmanuel'),(198,'DE KLERK','Peter'),(199,'DE LA ROSA','Pedro'),(200,'DE PORTAGO','Alfonso'),(201,'DE RIU','Giovanni'),(202,'DE TOMASO','Alejandro'),(203,'DE TORNACO','Charles'),(204,'DE VILLOTA','Emilio'),(205,'DE VOS','Ernie'),(206,'DELETRAZ','Jean-Denis'),(207,'DEPAILLER','Patrick'),(208,'DINIZ','Pedro'),(209,'DINSMORE','Duke'),(210,'DOCHNAL','Frank'),(211,'DOLHEM','Jose'),(212,'DONNELLY','Martin'),(213,'DONOHUE','Mark'),(214,'DOORNBOS','Robert'),(215,'D\'OREY','Fritz'),(216,'DOWNING','Ken'),(217,'DRAKE','Bob'),(218,'DRIVER','Paddy'),(219,'DROGO','Piero'),(220,'DUKE','Geoff'),(221,'DUMFRIES','Johnny'),(222,'DUNCAN','Len'),(223,'DUSIO','Piero'),(224,'EATON','George'),(225,'ECCLESTONE','Bernie'),(226,'EDMUNDS','Don'),(227,'EDWARDS','Guy'),(228,'ELFORD','Vic'),(229,'ELISIAN','Ed'),(230,'EMERY','Paul'),(231,'ENGE','Tomas'),(232,'ENGLAND','Paul'),(233,'ERTL','Harald'),(234,'ESTEFANO','Nasif'),(235,'ETANCELIN','Philippe'),(236,'EVANS','Bob'),(237,'FABI','Corrado'),(238,'FABI','Teo'),(239,'FABRE','Pascal'),(240,'FACETTI','Carlo'),(241,'FAGIOLI','Luigi'),(242,'FAIRMAN','Jack'),(243,'FANGIO','Juan Manuel'),(244,'FARINA','Nino'),(245,'FAULKNER','Walt'),(246,'FERGUSON','William'),(247,'FIRMAN','Ralph'),(248,'FISCHER','Ludwig'),(249,'FISCHER','Rudi'),(250,'FISHER','Mike'),(251,'FISICHELLA','Giancarlo'),(252,'FITCH','John'),(253,'FITTIPALDI','Christian'),(254,'FITTIPALDI','Emerson'),(255,'FITTIPALDI','Wilson'),(256,'FITZAU','Theo'),(257,'FLAHERTY','Pat'),(258,'FLINTERMAN','Jan'),(259,'FLOCKHART','Ron'),(260,'FOHR','Myron'),(261,'FOITEK','Gregor'),(262,'FOLLMER','George'),(263,'FONDER','George'),(264,'FONTANA','Norberto'),(265,'FONTES BAYARDO','Azdrubal'),(266,'FORBERG','Carl'),(267,'FORCE','Gene'),(268,'FORINI','Franco'),(269,'FOTHERINGHAM-PARKER','Philip'),(270,'FOYT','A.J.'),(271,'FRANCIA','Giorgio'),(272,'FREELAND','Don'),(273,'FRENTZEN','Heinz-Harald'),(274,'FRERE','Paul'),(275,'FRIESACHER','Patrick'),(276,'FRY','Joe'),(277,'FUSHIDA','Hiroshi'),(278,'GABBIANI','Beppe'),(279,'GACHOT','Bertrand'),(280,'GAILLARD','Patrick'),(281,'GALICA','Divina'),(282,'GALLI','Nanni'),(283,'GALVEZ','Oscar Alfredo'),(284,'GAMBLE','Fred'),(285,'GANLEY','Howden'),(286,'GARDNER','Frank'),(287,'GARRETT','Billy'),(288,'GARTNER','Jo'),(289,'GAZE','Tony'),(290,'GEKI','NN'),(291,'GENDEBIEN','Olivier'),(292,'GENE','Marc'),(293,'GEORGE','Elmer'),(294,'GERARD','Bob'),(295,'GERINI','Gerino'),(296,'GETHIN','Peter'),(297,'GHINZANI','Piercarlo'),(298,'GIACOMELLI','Bruno'),(299,'GIBSON','Dick'),(300,'GINTHER','Richie'),(301,'GIRAUD-CABANTOUS','Yves'),(302,'GIUNTI','Ignazio'),(303,'GLOCK','Timo'),(304,'GLOECKLER','Helm'),(305,'GODIA','Paco'),(306,'GODIN DE BEAUFORT','Carel'),(307,'GOETHALS','Christian'),(308,'GOLDSMITH','Paul'),(309,'GONZALEZ','Jose Froilan'),(310,'GONZALEZ','Oscar'),(311,'GORDINI','Aldo'),(312,'GOULD','Horace'),(313,'GOUNON','Jean-Marc'),(314,'GREEN','Cecil'),(315,'GREENE','Keith'),(316,'GREGORY','Masten'),(317,'GRIFFITH','Cliff'),(318,'GRIGNARD','Georges'),(319,'GRIM','Bobby'),(320,'GROSJEAN','Romain'),(321,'GROUILLARD','Olivier'),(322,'GUBBY','Brian'),(323,'GUELFI','Andre'),(324,'GUERRA','Miguel Angel'),(325,'GUERRERO','Roberto'),(326,'GUGELMIN','Mauricio'),(327,'GURNEY','Dan'),(328,'HAHNE','Hubert'),(329,'HAILWOOD','Mike'),(330,'HAKKINEN','Mika'),(331,'HALFORD','Bruce'),(332,'HALL','Jim'),(333,'HAMILTON','Duncan'),(334,'HAMILTON','Lewis'),(335,'HAMPSHIRE','David'),(336,'HANKS','Sam'),(337,'HANSGEN','Walt'),(338,'HARRIS','Mike'),(339,'HARRISON','Cuth'),(340,'HART','Brian'),(341,'HARTLEY','Gene'),(342,'HASEMI','Masahiro'),(343,'HATTORI','Naoki'),(344,'HAWKINS','Paul'),(345,'HAWTHORN','Mike'),(346,'HAYJE','Boy'),(347,'HEEKS','Willi'),(348,'HEIDFELD','Nick'),(349,'HELFRICH','Theo'),(350,'HELLINGS','Mack'),(351,'HENTON','Brian'),(352,'HERBERT','Johnny'),(353,'HERMAN','Al'),(354,'HERRMANN','Hans'),(355,'HESNAULT','Francois'),(356,'HEYER','Hans'),(357,'HILL','Damon'),(358,'HILL','Graham'),(359,'HILL','Phil'),(360,'HIRT','Peter'),(361,'HOBBS','David'),(362,'HOCKING','Gary'),(363,'HOFFMANN','Ingo'),(364,'HOLLAND','Bill'),(365,'HOLMES','Jackie'),(366,'HOMEIER','Bill'),(367,'HOSHINO','Kazuyoshi'),(368,'HOYT','Jerry'),(369,'HULME','Denny'),(370,'HUNT','James'),(371,'HURTUBISE','Jim'),(372,'HUTCHISON','Gus'),(373,'ICKX','Jacky'),(374,'IDE','Yuji'),(375,'IGLESIAS','Jesus'),(376,'INOUE','Taki'),(377,'IRELAND','Innes'),(378,'IRVINE','Eddie'),(379,'IRWIN','Chris'),(380,'JABOUILLE','Jean-Pierre'),(381,'JACKSON','Jimmy'),(382,'JAMES','Joe'),(383,'JAMES','John'),(384,'JARIER','Jean-Pierre'),(385,'JEAN','Max'),(386,'JOHANSSON','Stefan'),(387,'JOHNSON','Eddie'),(388,'JOHNSON','Leslie'),(389,'JOHNSTONE','Bruce'),(390,'JONES','Alan'),(391,'JONES','Tom'),(392,'JOVER','Juan'),(393,'KARCH','Oswald'),(394,'KARTHIKEYAN','Narain'),(395,'KATAYAMA','Ukyo'),(396,'KAVANAGH','Ken'),(397,'KEEGAN','Rupert'),(398,'KEIZAN','Eddie'),(399,'KELLER','Al'),(400,'KELLY','Joe'),(401,'KENNEDY','Dave'),(402,'KESSEL','Loris'),(403,'KESSLER','Bruce'),(404,'KIESA','Nicolas'),(405,'KINNUNEN','Leo'),(406,'KLADIS','Danny'),(407,'KLENK','Hans'),(408,'KLIEN','Christian'),(409,'KLING','Karl'),(410,'KLODWIG','Ernst'),(411,'KOBAYASHI','Kamui'),(412,'KOINIGG','Helmuth'),(413,'KOVALAINEN','Heikki'),(414,'KOZAROWITZKY','Mikko'),(415,'KRAKAU','Willi'),(416,'KRAUSE','Rudolf'),(417,'KUBICA','Robert'),(418,'KUHNKE','Kurt'),(419,'KUWASHIMA','Masami'),(420,'LA CAZE','Robert'),(421,'LAFFITE','Jacques'),(422,'LAGORCE','Franck'),(423,'LAMMERS','Jan'),(424,'LAMY','Pedro'),(425,'LANDI','Chico'),(426,'LANG','Hermann'),(427,'LANGES','Claudio'),(428,'LARINI','Nicola'),(429,'LARRAURI','Oscar'),(430,'LARROUSSE','Gerard'),(431,'LARSON','Jud'),(432,'LAUDA','Niki'),(433,'LAURENT','Roger'),(434,'LAVAGGI','Giovanni'),(435,'LAWRENCE','Chris'),(436,'LECLERE','Michel'),(437,'LEDERLE','Neville'),(438,'LEES','Geoff'),(439,'LEGAT','Arthur'),(440,'LEHTO','JJ'),(441,'LEONI','Lamberto'),(442,'LESTON','Les'),(443,'LEVEGH','Pierre'),(444,'LEVRETT','Bayliss'),(445,'LEWIS','Jackie'),(446,'LEWIS-EVANS','Stuart'),(447,'LIGIER','Guy'),(448,'LINDEN','Andy'),(449,'LIPPI','Roberto'),(450,'LIUZZI','Vitantonio'),(451,'LOMBARDI','Lella'),(452,'LONDONO','Ricardo'),(453,'LOOF','Ernst'),(454,'LOUVEAU','Henri'),(455,'LOVE','John'),(456,'LOVELY','Pete'),(457,'LOYER','Roger'),(458,'LUCAS','Jean'),(459,'LUCIENBONNET','Jean'),(460,'LUNGER','Brett'),(461,'MACDOWEL','Mike'),(462,'MACKAY-FRASER','Herbert'),(463,'MACKEY','Bill'),(464,'MACKLIN','Lance'),(465,'MAGEE','Damien'),(466,'MAGGS','Tony'),(467,'MAGILL','Mike'),(468,'MAGLIOLI','Umberto'),(469,'MAGNUSSEN','Jan'),(470,'MAIRESSE','Guy'),(471,'MAIRESSE','Willy'),(472,'MANSELL','Nigel'),(473,'MANTOVANI','Sergio'),(474,'MANTZ','Johnny'),(475,'MANZON','Robert'),(476,'MARIMON','Onofre'),(477,'MARKO','Helmut'),(478,'MARQUES','Tarso'),(479,'MARR','Leslie'),(480,'MARSH','Tony'),(481,'MARTIN','Eugene'),(482,'MARTINI','Pierluigi'),(483,'MASS','Jochen'),(484,'MASSA','Felipe'),(485,'MAY','Michael'),(486,'MAYER','Timmy'),(487,'MAZET','Francois'),(488,'MAZZACANE','Gaston'),(489,'MCALPINE','Kenneth'),(490,'MCCARTHY','Perry'),(491,'MCCOY','Ernie'),(492,'MCDOWELL','Johnny'),(493,'MCGRATH','Jack'),(494,'MCGUIRE','Brian'),(495,'MCLAREN','Bruce'),(496,'MCNISH','Allan'),(497,'MCRAE','Graham'),(498,'MCWITHEY','Jim'),(499,'MENDITEGUY','Carlos'),(500,'MERKEL','Harry'),(501,'MERZARIO','Arturo'),(502,'MIERES','Roberto'),(503,'MIGAULT','Francois'),(504,'MILES','John'),(505,'MILES','Ken'),(506,'MILHOUX','Andre'),(507,'MILLER','Chet'),(508,'MITTER','Gerhard'),(509,'MODENA','Stefano'),(510,'MONARCH','Thomas'),(511,'MONTAGNY','Franck'),(512,'MONTEIRO','Tiago'),(513,'MONTERMINI','Andrea'),(514,'MONTEVERDI','Peter'),(515,'MONTGOMERIE-CHARRING','Robin'),(516,'MONTOYA','Juan Pablo'),(517,'MORBIDELLI','Gianni'),(518,'MORENO','Roberto'),(519,'MORGAN','Dave'),(520,'MOSER','Silvio'),(521,'MOSS','Bill'),(522,'MOSS','Stirling'),(523,'MUNARON','Gino'),(524,'MURRAY','David'),(525,'MUSSO','Luigi'),(526,'NAKAJIMA','Kazuki'),(527,'NAKAJIMA','Satoru'),(528,'NAKANO','Shinji'),(529,'NALON','Duke'),(530,'NANNINI','Alessandro'),(531,'NASPETTI','Emanuele'),(532,'NATILI','Massimo'),(533,'NAYLOR','Brian'),(534,'NAZARUK','Mike'),(535,'NEEDELL','Tiff'),(536,'NELLEMAN','Jac'),(537,'NEVE','Patrick'),(538,'NICHOLSON','John'),(539,'NIDAY','Cal'),(540,'NIEDERMAYR','Helmut'),(541,'NIEMANN','Brausch'),(542,'NILSSON','Gunnar'),(543,'NODA','Hideki'),(544,'NUCKEY','Rodney'),(545,'O\'BRIEN','Robert'),(546,'O\'CONNOR','Pat'),(547,'OLIVER','Jackie'),(548,'ONGAIS','Danny'),(549,'OPPITZHAUSER','Karl'),(550,'OWEN','Arthur'),(551,'PACE','Carlos'),(552,'PAGANI','Nello'),(553,'PALETTI','Riccardo'),(554,'PALM','Torsten'),(555,'PALMER','Jonathan'),(556,'PANIS','Olivier'),(557,'PANTANO','Giorgio'),(558,'PAPIS','Massimiliano'),(559,'PARKES','Mike'),(560,'PARNELL','Reg'),(561,'PARNELL','Tim'),(562,'PARSONS','Johnnie'),(563,'PATRESE','Riccardo'),(564,'PEASE','Al'),(565,'PENSKE','Roger'),(566,'PERDISA','Cesare'),(567,'PEREZ-SALA','Luis'),(568,'PERKINS','Larry'),(569,'PESCAROLO','Henri'),(570,'PESENTI-ROSSI','Alessandro'),(571,'PETERS','Josef'),(572,'PETERSON','Ronnie'),(573,'PIAN','Alfredo'),(574,'PICARD','Francois'),(575,'PIETERSE','Ernie'),(576,'PIETSCH','Paul'),(577,'PILETTE','Andre'),(578,'PILETTE','Teddy'),(579,'PIOTTI','Luigi'),(580,'PIPER','David'),(581,'PIQUET','Nelson'),(582,'PIQUET','Nelson Jr.'),(583,'PIROCCHI','Renato'),(584,'PIRONI','Didier'),(585,'PIRRO','Emanuele'),(586,'PIZZONIA','Antonio'),(587,'POLLET','Jacques'),(588,'PON','Ben'),(589,'POORE','Dennis'),(590,'POSEY','Sam'),(591,'POZZI','Charles'),(592,'PRETORIUS','Jackie'),(593,'PRINOTH','Ernesto'),(594,'PROPHET','David'),(595,'PROST','Alain'),(596,'PRYCE','Tom'),(597,'PURLEY','David'),(598,'PUZEY','Clive'),(599,'QUESTER','Dieter'),(600,'RABY','Ian'),(601,'RAHAL','Bobby'),(602,'RAIKKONEN','Kimi'),(603,'RAPHANEL','Pierre-Henri'),(604,'RATHMANN','Dick'),(605,'RATHMANN','Jim'),(606,'RATZENBERGER','Roland'),(607,'REBAQUE','Hector'),(608,'REDMAN','Brian'),(609,'REECE','Jimmy'),(610,'REED','Ray'),(611,'REES','Alan'),(612,'REGAZZONI','Clay'),(613,'REUTEMANN','Carlos'),(614,'REVENTLOW','Lance'),(615,'REVSON','Peter'),(616,'RHODES','John'),(617,'RIBEIRO','Alex'),(618,'RICHARDSON','Ken'),(619,'RIESS','Fritz'),(620,'RIGSBY','Jim'),(621,'RINDT','Jochen'),(622,'RISELEY-PRICHARD','John'),(623,'ROBARTS','Richard'),(624,'RODRIGUEZ','Pedro'),(625,'RODRIGUEZ','Ricardo'),(626,'RODRIGUEZ LARRETA','Alberto'),(627,'ROL','Franco'),(628,'ROLLINSON','Alan'),(629,'ROLT','Tony'),(630,'ROOS','Bertil'),(631,'ROSBERG','Keke'),(632,'ROSBERG','Nico'),(633,'ROSE','Mauri'),(634,'ROSIER','Louis'),(635,'ROSSET','Ricardo'),(636,'ROTHENGATTER','Huub'),(637,'RUBY','Lloyd'),(638,'RUDAZ','Jean-Claude'),(639,'RUSSO','Eddie'),(640,'RUSSO','Paul'),(641,'RUTTMAN','Troy'),(642,'RYAN','Peter'),(643,'SACHS','Eddie'),(644,'SAID','Bob'),(645,'SALAZAR','Eliseo'),(646,'SALO','Mika'),(647,'SALVADORI','Roy'),(648,'SANESI','Consalvo'),(649,'SARRAZIN','Stephane'),(650,'SATO','Takuma'),(651,'SCARBOROUGH','Carl'),(652,'SCARFIOTTI','Ludovico'),(653,'SCARLATTI','Giorgio'),(654,'SCHECKTER','Ian'),(655,'SCHECKTER','Jody'),(656,'SCHELL','Harry'),(657,'SCHENKEN','Tim'),(658,'SCHERRER','Albert'),(659,'SCHIATTARELLA','Domenico'),(660,'SCHILLER','Heinz'),(661,'SCHINDLER','Bill'),(662,'SCHLESSER','Jean-Louis'),(663,'SCHLESSER','Jo'),(664,'SCHNEIDER','Bernd'),(665,'SCHOELLER','Rudolf'),(666,'SCHROEDER','Rob'),(667,'SCHUMACHER','Michael'),(668,'SCHUMACHER','Ralf'),(669,'SCHUPPAN','Vern'),(670,'SCHWELM CRUZ','Adolfo'),(671,'SCOTT','Bob'),(672,'SCOTT BROWN','Archie'),(673,'SCOTTI','Piero'),(674,'SEIDEL','Wolfgang'),(675,'SEIFFERT','Guenther'),(676,'SENNA','Ayrton'),(677,'SERAFINI','Dorino'),(678,'SERRA','Chico'),(679,'SERRURIER','Doug'),(680,'SERVOZ-GAVIN','Johnny'),(681,'SETTEMBER','Tony'),(682,'SHARP','Hap'),(683,'SHAWE-TAYLOR','Brian'),(684,'SHELBY','Carroll'),(685,'SHELLY','Tony'),(686,'SIFFERT','Jo'),(687,'SIMON','Andre'),(688,'SLOTEMAKER','Rob'),(689,'SOLANA','Moises'),(690,'SOLER-ROIG','Alex'),(691,'SOMMER','Raymond'),(692,'SOSPIRI','Vincenzo'),(693,'SOUTH','Stephen'),(694,'SPARKEN','Mike'),(695,'SPEED','Scott'),(696,'SPENCE','Mike'),(697,'STACEY','Alan'),(698,'STARRABBA','Gaetano'),(699,'STEVENSON','Chuck'),(700,'STEWART','Ian'),(701,'STEWART','Jackie'),(702,'STEWART','Jimmy'),(703,'STOHR','Siegfried'),(704,'STOMMELEN','Rolf'),(705,'STREIFF','Philippe'),(706,'STUCK','Hans'),(707,'STUCK','Hans Joachim'),(708,'STUPPACHER','Otto'),(709,'SULLIVAN','Danny'),(710,'SURER','Marc'),(711,'SURTEES','John'),(712,'SUTCLIFFE','Andy'),(713,'SUTIL','Adrian'),(714,'SUTTON','Len'),(715,'SUZUKI','Aguri'),(716,'SUZUKI','Toshio'),(717,'SWATERS','Jacques'),(718,'SWEIKERT','Bob'),(719,'TAKAGI','Toranosuke'),(720,'TAKAHARA','Noritake'),(721,'TAKAHASHI','Kunimitsu'),(722,'TAMBAY','Patrick'),(723,'TARAMAZZO','Luigi'),(724,'TARQUINI','Gabriele'),(725,'TARUFFI','Piero'),(726,'TAYLOR','Dennis'),(727,'TAYLOR','Henry'),(728,'TAYLOR','John'),(729,'TAYLOR','Mike'),(730,'TAYLOR','Trevor'),(731,'TEAGUE','Marshall'),(732,'TEMPLEMAN','Shorty'),(733,'TERRA','Max de'),(734,'TESTUT','Andre'),(735,'THACKWELL','Mike'),(736,'THIELE','Alfonso'),(737,'THOMPSON','Eric'),(738,'THOMSON','Johnny'),(739,'THORNE','Leslie'),(740,'TINGELSTAD','Bud'),(741,'TINGLE','Sam'),(742,'TITTERINGTON','Desmond'),(743,'TOLAN','Johnnie'),(744,'TRIMMER','Tony'),(745,'TRINTIGNANT','Maurice'),(746,'TRULLI','Jarno'),(747,'TUERO','Esteban'),(748,'TUNMER','Guy'),(749,'TURNER','Jack'),(750,'ULMEN','Toni'),(751,'UNSER','Bobby'),(752,'UNSER','Jerry'),(753,'URIA','Alberto'),(754,'VACCARELLA','Nino'),(755,'VAN DE POELE','Eric'),(756,'VAN DER LOF','Dries'),(757,'VAN DER VYVER','Syd'),(758,'VAN LENNEP','Gijs'),(759,'VAN ROOYEN','Basil'),(760,'VEITH','Bob'),(761,'VERSTAPPEN','Jos'),(762,'VETTEL','Sebastian'),(763,'VILLENEUVE','Gilles'),(764,'VILLENEUVE','Jacques'),(765,'VILLENEUVE SR.','Jacques'),(766,'VILLORESI','Luigi'),(767,'VOLONTERIO','Ottorino'),(768,'VON OPEL','Rikky'),(769,'VON TRIPS','Wolfgang'),(770,'VONLANTHEN','Jo'),(771,'VUKOVICH','Bill'),(772,'WACKER','Fred'),(773,'WALKER','David'),(774,'WALKER','Peter'),(775,'WALLARD','Lee'),(776,'WALTER','Heini'),(777,'WARD','Rodger'),(778,'WARWICK','Derek'),(779,'WATSON','John'),(780,'WEBB','Spider'),(781,'WEBBER','Mark'),(782,'WEIDLER','Volker'),(783,'WEILER','Wayne'),(784,'WENDLINGER','Karl'),(785,'WESTBURY','Peter'),(786,'WEYANT','Chuck'),(787,'WHARTON','Ken'),(788,'WHITEAWAY','Ted'),(789,'WHITEHEAD','Graham'),(790,'WHITEHEAD','Peter'),(791,'WHITEHOUSE','Bill'),(792,'WIDDOWS','Robin'),(793,'WIETZES','Eppie'),(794,'WILDS','Mike'),(795,'WILLIAMS','Jonathan'),(796,'WILLIAMSON','Roger'),(797,'WILSON','Dempsey'),(798,'WILSON','Desire'),(799,'WILSON','Justin'),(800,'WILSON','Vic'),(801,'WINKELHOCK','Joachim'),(802,'WINKELHOCK','Manfred'),(803,'WINKELHOCK','Markus'),(804,'WISELL','Reine'),(805,'WUNDERINK','Roelof'),(806,'WURZ','Alexander'),(807,'YAMAMOTO','Sakon'),(808,'YOONG','Alex'),(809,'ZANARDI','Alex'),(810,'ZAPICO','Emilio'),(811,'ZONTA','Ricardo'),(812,'ZORZI','Renzo'),(813,'ZUNINO','Ricardo'),(814,'CHANDHOK','Karun'),(815,'DI GRASSI','Lucas'),(816,'HUELKENBERG','Nico'),(817,'PETROV','Vitaly'),(818,'SENNA','Bruno'),(819,'D\'AMBROSIO','Jerome'),(820,'DI RESTA','Paul'),(821,'MALDONADO','Pastor'),(822,'PEREZ','Sergio'),(823,'PIC','Charles'),(824,'RICCIARDO','Daniel'),(825,'VERGNE','Jean-Eric'),(826,'BIANCHI','Jules'),(827,'BOTTAS','Valtteri'),(828,'CHILTON','Max'),(829,'GUTIERREZ','Esteban'),(830,'VAN DER GARDE','Giedo'); /*!40000 ALTER TABLE `alldrivers` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `drivers` -- DROP TABLE IF EXISTS `drivers`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `drivers` ( `d_id` int(4) NOT NULL AUTO_INCREMENT, `d_lname` varchar(20) NOT NULL DEFAULT '', `d_fname` varchar(20) NOT NULL DEFAULT '', `d_currseason` int(1) NOT NULL DEFAULT '0', `d_miod` int(3) NOT NULL DEFAULT '0', `d_fa_id` int(3) NOT NULL DEFAULT '0', PRIMARY KEY (`d_id`) ) ENGINE=MyISAM AUTO_INCREMENT=50 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `drivers` -- LOCK TABLES `drivers` WRITE; /*!40000 ALTER TABLE `drivers` DISABLE KEYS */; INSERT INTO `drivers` VALUES (1,'VETTEL','Sebastian',1,30,7),(2,'WEBBER','Mark',1,25,7),(3,'ALONSO','Fernando',1,29,1),(4,'MASSA','Felipe',1,24,1),(5,'BUTTON','Jenson',1,26,2),(6,'PEREZ','Sergio',1,21,2),(7,'RAIKKONEN','Kimi',1,28,18),(8,'GROSJEAN','Romain',1,22,18),(9,'ROSBERG','Nico',1,23,11),(10,'HAMILTON','Lewis',1,27,11),(11,'HUELKENBERG','Nico',1,20,12),(12,'GUTIERREZ','Esteban',1,10,12),(14,'DI RESTA','Paul',1,18,14),(15,'SUTIL','Adrian',1,16,14),(16,'MALDONADO','Pastor',1,17,19),(17,'BOTTAS','Valtteri',1,12,19),(18,'VERGNE','Jean-Eric',1,15,6),(19,'RICCIARDO','Daniel',1,14,6),(20,'PIC','Charles',1,13,20),(21,'VAN DER GARDE','Giedo',1,9,20),(22,'BIANCHI','Jules',1,11,21),(23,'CHILTON','Max',1,8,21),(24,'BUEMI','Sebastien',0,0,0),(25,'DE LA ROSA','Pedro',0,0,0),(26,'PAFFETT','Gary',0,0,0),(27,'TURVEY','Oliver',0,0,0),(28,'D\'AMBROSIO','Jerome',0,0,0),(29,'VALSECCHI','Davide',0,0,0),(30,'PROST','Nicolas',0,0,0),(31,'FRIJNS','Robin',0,0,0),(32,'WOLFF','Susie',0,0,0),(33,'ROSSI','Alexander',0,0,0),(34,'MA','Qing-Hua',0,0,0),(35,'KOVALAINEN','Heikki',0,0,0),(36,'GONZALEZ','Rodolfo',0,0,0); /*!40000 ALTER TABLE `drivers` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `events` -- DROP TABLE IF EXISTS `events`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `events` ( `e_id` int(2) NOT NULL AUTO_INCREMENT, `e_type` varchar(20) NOT NULL DEFAULT '', PRIMARY KEY (`e_id`) ) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `events` -- LOCK TABLES `events` WRITE; /*!40000 ALTER TABLE `events` DISABLE KEYS */; INSERT INTO `events` VALUES (1,'QUALIFYING'),(2,'RACE'); /*!40000 ALTER TABLE `events` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `fflassets` -- DROP TABLE IF EXISTS `fflassets`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `fflassets` ( `fa_id` int(4) NOT NULL AUTO_INCREMENT, `fa_currseason` int(1) NOT NULL DEFAULT '0', `fa_chassis` varchar(30) NOT NULL DEFAULT '', `fa_mioc` int(3) NOT NULL DEFAULT '0', `fa_engine` varchar(30) NOT NULL DEFAULT '', `fa_mioe` int(3) NOT NULL DEFAULT '0', PRIMARY KEY (`fa_id`) ) ENGINE=MyISAM AUTO_INCREMENT=23 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `fflassets` -- LOCK TABLES `fflassets` WRITE; /*!40000 ALTER TABLE `fflassets` DISABLE KEYS */; INSERT INTO `fflassets` VALUES (1,1,'Ferrari',29,'Ferrari (Ferrari)',27),(2,1,'McLaren',28,'Mercedes (McLaren)',29),(3,0,'BMW Sauber',0,'BMW (BMW Sauber)',0),(4,0,'Renault',0,'Renault (Renault)',0),(5,0,'Toyota',0,'Toyota (Toyota)',0),(6,1,'Toro Rosso',22,'Ferrari (Toro Rosso)',25),(7,1,'Red Bull',30,'Renault (Red Bull)',23),(8,0,'Williams',0,'Toyota (Williams)',0),(9,0,'Brawn',0,'Mercedes (Brawn)',0),(10,0,'Force India',0,'Ferrari (Force India)',0),(11,1,'Mercedes GP',26,'Mercedes (Mercedes GP)',30),(12,1,'Sauber',25,'Ferrari (Sauber)',26),(13,0,'Williams',0,'Cosworth (Williams)',0),(14,1,'Force India',24,'Mercedes (Force India)',28),(15,0,'Lotus',0,'Cosworth (Lotus)',0),(16,0,'HRT',0,'Cosworth (HRT)',0),(17,0,'Virgin',0,'Cosworth (Virgin)',0),(18,1,'Lotus',27,'Renault (Lotus)',24),(19,1,'Williams',23,'Renault (Williams)',22),(20,1,'Caterham',21,'Renault (Caterham)',21),(21,1,'Marussia',20,'Cosworth (Marussia)',20),(22,0,'Toro Rosso',0,'Renault (Toro Rosso)',0); /*!40000 ALTER TABLE `fflassets` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `fflpoints` -- DROP TABLE IF EXISTS `fflpoints`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `fflpoints` ( `fp_u_id` int(4) NOT NULL DEFAULT '0', `fp_g_id` int(4) NOT NULL DEFAULT '0', `fp_points` decimal(3,1) NOT NULL DEFAULT '0.0' ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `fflpoints` -- LOCK TABLES `fflpoints` WRITE; /*!40000 ALTER TABLE `fflpoints` DISABLE KEYS */; INSERT INTO `fflpoints` VALUES (1,1,'68.0'),(20,1,'78.0'),(12,1,'78.0'),(10,1,'40.0'),(18,1,'48.0'),(1,2,'78.0'),(20,2,'59.0'),(12,2,'59.0'),(10,2,'70.0'),(18,2,'10.0'),(1,3,'57.0'),(20,3,'63.0'),(12,3,'63.0'),(10,3,'34.0'),(18,3,'58.0'),(1,4,'60.0'),(20,4,'53.0'),(12,4,'53.0'),(10,4,'65.0'),(18,4,'8.0'),(1,5,'74.0'),(20,5,'80.0'),(12,5,'80.0'),(10,5,'40.0'),(18,5,'65.0'),(1,6,'57.0'),(20,6,'40.0'),(12,6,'40.0'),(10,6,'59.0'),(18,6,'12.0'),(1,7,'84.0'),(20,7,'61.0'),(12,7,'61.0'),(10,7,'62.0'),(18,7,'40.0'),(1,8,'41.0'),(20,8,'51.0'),(12,8,'51.0'),(10,8,'18.0'),(18,8,'38.0'),(1,9,'68.0'),(20,9,'61.0'),(12,9,'61.0'),(10,9,'68.0'),(18,9,'24.0'),(1,10,'56.0'),(20,10,'59.0'),(12,10,'59.0'),(10,10,'50.0'),(18,10,'25.0'),(1,11,'84.0'),(20,11,'59.0'),(12,11,'59.0'),(10,11,'68.0'),(18,11,'42.0'),(1,12,'95.0'),(20,12,'70.0'),(12,12,'70.0'),(10,12,'66.0'),(18,12,'48.0'),(1,13,'76.0'),(20,13,'66.0'),(12,13,'66.0'),(10,13,'60.0'),(18,13,'44.0'),(1,14,'60.0'),(20,14,'53.0'),(12,14,'53.0'),(10,14,'55.0'),(18,14,'18.0'),(1,15,'81.0'),(20,15,'72.0'),(12,15,'72.0'),(10,15,'70.0'),(18,15,'25.0'),(1,16,'62.0'),(20,16,'43.0'),(12,16,'43.0'),(10,16,'60.0'),(18,16,'12.0'),(1,17,'82.0'),(20,17,'57.0'),(12,17,'57.0'),(10,17,'70.0'),(18,17,'24.0'),(1,18,'75.0'),(20,18,'50.0'),(12,18,'50.0'),(10,18,'72.0'),(18,18,'24.0'),(1,19,'89.0'),(20,19,'64.0'),(12,19,'64.0'),(10,19,'88.0'),(18,19,'36.0'); /*!40000 ALTER TABLE `fflpoints` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `fflresults` -- DROP TABLE IF EXISTS `fflresults`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `fflresults` ( `fr_season` int(4) NOT NULL DEFAULT '0', `fr_u_id` int(4) NOT NULL DEFAULT '0', `fr_ft_a_id_d1` int(4) NOT NULL DEFAULT '0', `fr_ft_a_id_d2` int(4) NOT NULL DEFAULT '0', `fr_fa_id_chassis` int(4) NOT NULL DEFAULT '0', `fr_fa_id_engine` int(4) NOT NULL DEFAULT '0', `fr_totalpoints` decimal(5,1) DEFAULT '0.0', PRIMARY KEY (`fr_season`,`fr_u_id`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `fflresults` -- LOCK TABLES `fflresults` WRITE; /*!40000 ALTER TABLE `fflresults` DISABLE KEYS */; INSERT INTO `fflresults` VALUES (2009,0,128,762,9,9,'523.0'),(2009,1,746,762,8,7,'304.5'),(2009,2,15,251,9,1,'276.0'),(2009,3,49,303,9,1,'343.0'),(2009,6,484,128,9,6,'297.0'),(2009,9,602,128,5,7,'356.0'),(2009,10,334,128,8,9,'350.5'),(2009,11,746,128,7,1,'351.0'),(2009,12,762,128,9,1,'421.0'),(2010,0,15,713,7,7,'1295.0'),(2010,1,334,411,11,7,'984.0'),(2010,4,484,762,17,7,'898.0'),(2010,6,484,713,7,6,'702.0'),(2010,9,816,15,11,2,'942.0'),(2010,10,417,303,2,7,'1088.0'),(2010,11,818,15,1,1,'1044.0'),(2010,12,15,816,11,7,'986.0'),(2010,13,49,818,1,6,'456.0'),(2011,6,713,348,2,7,'1223.0'),(2011,1,632,822,1,7,'1128.0'),(2011,12,667,820,7,1,'1128.0'),(2011,10,484,820,7,2,'1292.0'),(2011,0,128,820,7,7,'1597.0'),(2012,1,602,816,2,7,'1108.0'),(2012,12,15,320,2,7,'1212.0'),(2012,6,411,816,7,1,'983.0'),(2012,9,667,825,7,2,'903.0'),(2012,10,762,825,2,7,'1135.0'),(2012,2,762,394,18,7,'1044.0'),(2012,7,762,818,18,18,'918.0'),(2012,0,15,320,7,7,'1294.0'),(2013,1,762,828,1,7,'1347.0'),(2013,20,602,829,1,7,'1139.0'),(2013,12,602,829,1,7,'1139.0'),(2013,10,762,830,2,7,'1115.0'),(2013,18,15,826,19,1,'601.0'),(2013,0,15,828,7,7,'1434.0'); /*!40000 ALTER TABLE `fflresults` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `fflteams` -- DROP TABLE IF EXISTS `fflteams`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `fflteams` ( `ft_u_id` int(4) NOT NULL DEFAULT '0', `ft_d_id_d1` int(4) NOT NULL DEFAULT '0', `ft_d_id_d2` int(4) NOT NULL DEFAULT '0', `ft_fa_id_chassis` int(4) NOT NULL DEFAULT '0', `ft_fa_id_engine` int(4) NOT NULL DEFAULT '0', PRIMARY KEY (`ft_u_id`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `fflteams` -- LOCK TABLES `fflteams` WRITE; /*!40000 ALTER TABLE `fflteams` DISABLE KEYS */; INSERT INTO `fflteams` VALUES (1,1,23,1,7),(20,7,12,1,7),(12,7,12,1,7),(10,1,21,2,7),(18,3,22,19,1); /*!40000 ALTER TABLE `fflteams` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `gps` -- DROP TABLE IF EXISTS `gps`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `gps` ( `g_id` int(4) NOT NULL AUTO_INCREMENT, `g_name` varchar(40) NOT NULL DEFAULT '', `g_datetime_q` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `g_datetime_r` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `g_flag` varchar(20) NOT NULL DEFAULT '', `g_circuit` varchar(40) NOT NULL DEFAULT '', PRIMARY KEY (`g_id`) ) ENGINE=MyISAM AUTO_INCREMENT=21 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `gps` -- LOCK TABLES `gps` WRITE; /*!40000 ALTER TABLE `gps` DISABLE KEYS */; INSERT INTO `gps` VALUES (1,'AUSTRALIA (Melbourne)','2013-03-16 07:00:00','2013-03-17 06:00:00','flag_AUSTRALIA.gif','circuit_AUSTRALIA.gif'),(2,'MALAYSIA (Sepang)','2013-03-23 09:00:00','2013-03-24 09:00:00','flag_MALAYSIA.gif','circuit_MALAYSIA.gif'),(3,'CHINA (Shanghai)','2013-04-13 08:00:00','2013-04-14 09:00:00','flag_CHINA.gif','circuit_CHINA.gif'),(4,'BAHRAIN (Sakhir)','2013-04-20 13:00:00','2013-04-21 14:00:00','flag_BAHRAIN.gif','circuit_BAHRAIN.gif'),(5,'SPAIN (Barcelona)','2013-05-11 14:00:00','2013-05-12 14:00:00','flag_SPAIN.gif','circuit_SPAIN_(Barcelona).gif'),(6,'MONACO (Monte Carlo)','2013-05-25 14:00:00','2013-05-26 14:00:00','flag_MONACO.gif','circuit_MONACO.gif'),(7,'CANADA (Montreal)','2013-06-08 19:00:00','2013-06-09 20:00:00','flag_CANADA.gif','circuit_CANADA.gif'),(8,'GREAT BRITAIN (Silverstone)','2013-06-29 14:00:00','2013-06-30 14:00:00','flag_UK.gif','circuit_UK.gif'),(9,'GERMANY (Nuerburgring)','2013-07-06 14:00:00','2013-07-07 14:00:00','flag_GERMANY.gif','circuit_GERMANY_(Nuerburgring).gif'),(10,'HUNGARY (Budapest)','2013-07-27 14:00:00','2013-07-28 14:00:00','flag_HUNGARY.gif','circuit_HUNGARY.gif'),(11,'BELGIUM (Spa)','2013-08-24 14:00:00','2013-08-25 14:00:00','flag_BELGIUM.gif','circuit_BELGIUM.gif'),(12,'ITALY (Monza)','2013-09-07 14:00:00','2013-09-08 14:00:00','flag_ITALY.gif','circuit_ITALY.gif'),(13,'SINGAPORE (Singapore)','2013-09-21 15:00:00','2013-09-22 14:00:00','flag_SINGAPORE.gif','circuit_SINGAPORE.gif'),(14,'SOUTH KOREA (Yeongam)','2013-10-05 07:00:00','2013-10-06 08:00:00','flag_SKOREA.gif','circuit_SKOREA.gif'),(15,'JAPAN (Suzuka)','2013-10-12 07:00:00','2013-10-13 08:00:00','flag_JAPAN.gif','circuit_JAPAN_(Suzuka).gif'),(16,'INDIA (New Delhi)','2013-10-26 10:30:00','2013-10-27 10:30:00','flag_INDIA.gif','circuit_INDIA.gif'),(17,'UNITED ARAB EMIRATES (Abu Dhabi)','2013-11-02 14:00:00','2013-11-03 14:00:00','flag_UAE.gif','circuit_UAE.gif'),(18,'USA (Austin)','2013-11-16 19:00:00','2013-11-17 20:00:00','flag_USA.gif','circuit_USA_(Austin).gif'),(19,'BRAZIL (Sao Paulo)','2013-11-23 17:00:00','2013-11-24 17:00:00','flag_BRAZIL.gif','circuit_BRAZIL.gif'); /*!40000 ALTER TABLE `gps` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `results` -- DROP TABLE IF EXISTS `results`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `results` ( `r_g_id` int(4) NOT NULL DEFAULT '0', `r_e_id` int(2) NOT NULL DEFAULT '0', `r_d_id_p1` int(4) NOT NULL DEFAULT '0', `r_d_id_p2` int(4) NOT NULL DEFAULT '0', `r_d_id_p3` int(4) NOT NULL DEFAULT '0', `r_d_id_p4` int(4) NOT NULL DEFAULT '0', `r_d_id_p5` int(4) NOT NULL DEFAULT '0', `r_d_id_p6` int(4) NOT NULL DEFAULT '0', `r_d_id_p7` int(4) NOT NULL DEFAULT '0', `r_d_id_p8` int(4) NOT NULL DEFAULT '0', `r_d_id_p9` int(4) NOT NULL DEFAULT '0', `r_d_id_p10` int(4) NOT NULL DEFAULT '0', `r_fl` int(4) NOT NULL DEFAULT '0', `r_firstout` varchar(20) NOT NULL DEFAULT '0', `r_bestcup` varchar(20) NOT NULL DEFAULT '0', `r_sc` int(2) NOT NULL DEFAULT '-1', `r_hp` int(1) NOT NULL DEFAULT '0', PRIMARY KEY (`r_g_id`,`r_e_id`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `results` -- LOCK TABLES `results` WRITE; /*!40000 ALTER TABLE `results` DISABLE KEYS */; INSERT INTO `results` VALUES (1,1,1,2,10,0,0,0,0,0,0,0,0,'0','0',-1,0),(1,2,7,3,1,4,10,2,15,14,5,8,7,'11','20,7',0,0),(2,1,1,4,3,0,0,0,0,0,0,0,0,'0','0',-1,0),(2,2,1,2,10,9,4,8,7,11,6,18,6,'3','17,21,18',0,0),(3,1,10,7,3,0,0,0,0,0,0,0,0,'0','0',-1,0),(3,2,3,7,10,1,5,4,19,14,8,11,1,'12','1',0,0),(4,1,9,1,3,0,0,0,0,0,0,0,0,'0','0',-1,0),(4,2,1,7,8,14,10,6,2,3,9,5,1,'18','8',0,0),(5,1,9,10,1,0,0,0,0,0,0,0,0,'0','0',-1,0),(5,2,3,7,4,1,2,9,14,5,6,19,12,'8','12',0,0),(6,1,9,10,1,0,0,0,0,0,0,0,0,'0','0',-1,0),(6,2,9,1,2,10,15,5,3,18,14,7,1,'20','23,14',1,0),(7,1,1,10,17,0,0,0,0,0,0,0,0,'0','0',-1,0),(7,2,1,3,10,2,9,18,14,4,7,15,2,'21','14',0,0),(8,1,10,9,1,0,0,0,0,0,0,0,0,'0','0',-1,0),(8,2,9,2,3,10,7,4,15,19,14,11,2,'18','14',1,0),(9,1,10,1,2,0,0,0,0,0,0,0,0,'0','0',-1,0),(9,2,1,7,8,3,10,5,2,6,9,11,3,'4','6',1,0),(10,1,10,1,8,0,0,0,0,0,0,0,0,'0','0',-1,0),(10,2,10,7,1,2,3,8,5,4,6,16,2,'15','5,21,2',0,0),(11,1,10,1,2,0,0,0,0,0,0,0,0,'0','0',-1,0),(11,2,1,3,10,9,2,5,4,8,15,19,1,'20','19',0,0),(12,1,1,2,11,0,0,0,0,0,0,0,0,'0','0',-1,0),(12,2,1,3,2,4,11,9,19,8,10,5,10,'14','8',0,0),(13,1,1,9,8,0,0,0,0,0,0,0,0,'0','0',-1,0),(13,2,1,3,7,9,10,4,5,6,11,15,1,'19','7',1,0),(14,1,1,10,2,0,0,0,0,0,0,0,0,'0','0',-1,0),(14,2,1,7,8,11,10,3,9,5,4,6,1,'14','7',1,0),(15,1,2,1,10,0,0,0,0,0,0,0,0,'0','0',-1,0),(15,2,1,2,8,3,7,11,12,9,5,4,2,'22,21','15',0,0),(16,1,1,9,10,0,0,0,0,0,0,0,0,'0','0',-1,0),(16,2,1,9,8,4,6,10,7,14,15,19,7,'21','8',0,0),(17,1,2,1,9,0,0,0,0,0,0,0,0,'0','0',-1,0),(17,2,1,2,9,8,3,14,10,4,6,15,3,'7','15',0,0),(18,1,1,2,8,0,0,0,0,0,0,0,0,'0','0',-1,0),(18,2,1,8,2,10,3,11,6,17,9,5,1,'15','12',1,0),(19,1,1,9,3,0,0,0,0,0,0,0,0,'0','0',-1,0),(19,2,1,2,3,5,9,6,4,11,10,19,2,'8','6',0,0); /*!40000 ALTER TABLE `results` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tips` -- DROP TABLE IF EXISTS `tips`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `tips` ( `t_u_id` int(4) NOT NULL DEFAULT '0', `t_g_id` int(4) NOT NULL DEFAULT '0', `t_e_id` int(2) NOT NULL DEFAULT '0', `t_d_id_p1` int(4) NOT NULL DEFAULT '0', `t_d_id_p2` int(4) NOT NULL DEFAULT '0', `t_d_id_p3` int(4) NOT NULL DEFAULT '0', `t_fl` int(4) NOT NULL DEFAULT '0', `t_firstout` int(4) NOT NULL DEFAULT '0', `t_bestcup` int(4) NOT NULL DEFAULT '0', `t_sc` int(2) NOT NULL DEFAULT '0', `t_timestamp` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `t_score` int(4) NOT NULL DEFAULT '0', PRIMARY KEY (`t_u_id`,`t_g_id`,`t_e_id`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tips` -- LOCK TABLES `tips` WRITE; /*!40000 ALTER TABLE `tips` DISABLE KEYS */; INSERT INTO `tips` VALUES (20,1,1,1,7,10,0,0,0,0,'2013-03-09 19:01:13',4),(20,1,2,1,10,2,9,12,6,-1,'2013-03-17 01:39:27',1),(12,1,1,1,9,3,0,0,0,0,'2013-03-15 18:13:46',2),(1,1,1,1,3,7,0,0,0,0,'2013-03-16 05:44:06',2),(7,1,1,1,2,7,0,0,0,0,'2013-03-15 20:03:52',4),(4,1,1,1,2,7,0,0,0,0,'2013-03-15 22:32:33',4),(10,1,1,1,2,7,0,0,0,0,'2013-03-15 22:39:27',4),(2,1,1,1,2,10,0,0,0,0,'2013-03-16 06:40:53',6),(18,1,1,3,4,1,0,0,0,0,'2013-03-16 06:54:10',1),(10,1,2,1,3,7,3,21,8,1,'2013-03-16 22:22:33',3),(7,1,2,1,2,10,1,8,6,1,'2013-03-17 02:57:01',0),(12,1,2,1,2,5,7,4,9,-1,'2013-03-16 23:21:39',2),(1,1,2,1,2,3,1,21,6,1,'2013-03-17 01:48:38',1),(18,1,2,1,2,3,1,8,5,1,'2013-03-17 06:52:54',1),(2,1,2,1,2,3,1,21,6,0,'2013-03-17 06:57:57',3),(20,2,1,1,2,10,0,0,0,0,'2013-03-23 08:52:04',2),(20,2,2,3,1,7,7,16,7,1,'2013-03-24 08:59:32',0),(12,2,1,3,7,1,0,0,0,0,'2013-03-22 18:40:02',2),(7,2,1,7,1,3,0,0,0,0,'2013-03-22 22:24:03',3),(1,2,1,1,2,10,0,0,0,0,'2013-03-23 08:29:47',2),(4,2,1,1,10,2,0,0,0,0,'2013-03-23 08:31:28',2),(2,2,1,1,10,2,0,0,0,0,'2013-03-23 08:56:19',2),(10,2,1,7,1,2,0,0,0,0,'2013-03-23 08:49:36',1),(4,2,2,1,3,10,10,23,16,1,'2013-03-23 10:35:34',3),(1,2,2,3,1,10,3,21,7,1,'2013-03-23 16:58:39',2),(7,2,2,10,4,1,7,22,7,1,'2013-03-23 21:40:53',1),(12,2,2,1,3,7,1,18,12,1,'2013-03-23 22:31:03',1),(10,2,2,1,3,7,3,23,7,1,'2013-03-24 08:43:32',1),(2,2,2,1,3,10,9,17,7,0,'2013-03-24 08:49:13',5),(18,2,2,3,4,1,3,18,7,1,'2013-03-24 08:49:25',0),(12,3,1,3,4,1,0,0,0,0,'2013-04-12 10:40:33',1),(7,3,1,7,3,1,0,0,0,0,'2013-04-12 22:33:53',2),(1,3,1,3,10,1,0,0,0,0,'2013-04-13 07:42:00',2),(20,3,1,3,10,4,0,0,0,0,'2013-04-13 07:59:03',2),(10,3,1,1,10,2,0,0,0,0,'2013-04-13 01:02:59',1),(4,3,1,1,10,2,0,0,0,0,'2013-04-13 07:50:31',1),(2,3,1,3,10,4,0,0,0,0,'2013-04-13 07:55:01',2),(18,3,1,4,3,1,0,0,0,0,'2013-04-13 07:56:08',1),(12,3,2,10,3,1,3,11,2,-1,'2013-04-13 10:06:37',2),(7,3,2,10,3,7,3,21,2,-1,'2013-04-13 22:18:45',3),(1,3,2,1,10,3,10,6,2,0,'2013-04-13 23:50:29',3),(4,3,2,7,10,3,10,21,2,1,'2013-04-14 07:40:41',2),(10,3,2,10,7,1,1,4,2,-1,'2013-04-14 08:40:48',4),(2,3,2,10,3,7,10,1,2,0,'2013-04-14 08:31:08',4),(20,3,2,7,10,9,3,1,2,-1,'2013-04-14 08:53:25',2),(18,3,2,3,7,4,3,16,2,0,'2013-04-14 08:56:54',5),(20,4,1,1,7,2,0,0,0,0,'2013-04-20 10:43:19',1),(7,4,1,3,7,1,0,0,0,0,'2013-04-20 11:29:29',2),(1,4,1,3,1,2,0,0,0,0,'2013-04-20 11:30:38',3),(10,4,1,1,3,7,0,0,0,0,'2013-04-20 12:30:07',2),(2,4,1,3,1,10,0,0,0,0,'2013-04-20 12:50:57',3),(12,4,2,3,1,10,10,2,10,-1,'2013-04-20 18:13:53',1),(2,4,2,3,1,9,1,2,11,0,'2013-04-21 08:42:19',3),(4,4,2,3,9,1,3,23,10,1,'2013-04-21 08:47:09',0),(20,4,2,3,1,9,3,10,7,0,'2013-04-21 13:30:37',2),(7,4,2,3,9,1,3,12,10,0,'2013-04-21 13:38:53',2),(1,4,2,3,1,9,10,12,7,0,'2013-04-21 13:37:15',2),(10,4,2,3,1,7,3,12,11,-1,'2013-04-21 13:46:34',2),(18,4,2,3,1,2,3,17,7,0,'2013-04-21 13:55:16',2),(20,5,1,1,3,7,0,0,0,0,'2013-05-11 09:58:26',1),(1,5,1,1,3,2,0,0,0,0,'2013-05-11 07:10:15',1),(12,5,1,3,1,4,0,0,0,0,'2013-05-11 08:54:10',1),(10,5,1,7,1,2,0,0,0,0,'2013-05-11 12:28:42',1),(7,5,1,3,7,1,0,0,0,0,'2013-05-11 12:31:48',2),(4,5,1,4,2,3,0,0,0,0,'2013-05-11 12:54:38',0),(18,5,1,3,7,1,0,0,0,0,'2013-05-11 13:50:20',2),(12,5,2,7,1,9,1,4,5,1,'2013-05-11 15:09:25',0),(1,5,2,1,7,3,1,12,5,0,'2013-05-12 08:22:40',4),(10,5,2,1,10,7,3,15,4,0,'2013-05-12 08:26:08',2),(4,5,2,10,1,9,2,20,4,0,'2013-05-12 09:10:40',1),(7,5,2,10,7,3,7,23,5,-1,'2013-05-12 09:35:51',3),(2,5,2,1,3,2,1,16,7,0,'2013-05-12 10:20:08',2),(20,5,2,1,3,7,3,9,5,-1,'2013-05-12 13:39:08',2),(18,5,2,1,3,7,3,12,2,0,'2013-05-12 13:55:26',3),(20,6,1,9,1,3,0,0,0,0,'2013-05-25 13:58:39',3),(12,6,1,9,3,10,0,0,0,0,'2013-05-25 08:23:02',3),(1,6,1,9,3,10,0,0,0,0,'2013-05-25 11:04:18',3),(7,6,1,9,1,3,0,0,0,0,'2013-05-25 13:33:52',3),(6,6,1,3,9,7,0,0,0,0,'2013-05-25 13:34:27',1),(6,6,2,9,10,1,7,8,5,1,'2013-05-25 18:15:15',4),(10,6,1,9,1,3,0,0,0,0,'2013-05-25 13:47:47',3),(18,6,1,9,1,3,0,0,0,0,'2013-05-25 13:55:38',3),(2,6,1,9,1,3,0,0,0,0,'2013-05-25 13:56:03',3),(1,6,2,1,10,3,2,8,4,1,'2013-05-25 16:09:44',2),(12,6,2,1,7,9,8,18,8,1,'2013-05-25 17:40:40',3),(20,6,2,1,10,7,9,18,4,-1,'2013-05-26 13:37:33',1),(4,6,2,1,9,3,1,34,2,0,'2013-05-26 11:32:50',2),(10,6,2,9,10,1,3,15,4,1,'2013-05-26 12:33:46',4),(7,6,2,1,9,2,8,12,8,1,'2013-05-26 13:32:04',5),(2,6,2,1,9,7,1,12,4,1,'2013-05-26 13:50:57',4),(18,6,2,1,9,3,10,21,4,1,'2013-05-26 13:53:35',3),(7,7,1,3,1,10,0,0,0,0,'2013-05-28 12:58:00',2),(20,7,1,10,3,1,0,0,0,0,'2013-06-08 18:19:53',2),(12,7,1,9,1,3,0,0,0,0,'2013-06-08 10:56:53',1),(1,7,1,3,10,1,0,0,0,0,'2013-06-08 18:05:46',3),(2,7,1,9,3,1,0,0,0,0,'2013-06-08 18:12:31',1),(10,7,1,3,10,2,0,0,0,0,'2013-06-08 18:20:23',2),(18,7,1,3,10,9,0,0,0,0,'2013-06-08 18:54:55',2),(20,7,2,1,10,3,3,17,8,1,'2013-06-09 19:57:29',3),(12,7,2,1,2,10,9,8,4,1,'2013-06-08 20:52:04',3),(1,7,2,1,2,3,1,4,8,1,'2013-06-09 12:33:41',2),(10,7,2,1,10,9,3,15,8,-1,'2013-06-09 18:48:17',3),(7,7,2,10,3,2,3,17,8,-1,'2013-06-09 19:28:41',3),(18,7,2,3,2,7,3,10,5,0,'2013-06-09 19:40:55',2),(2,7,2,1,3,10,1,20,8,1,'2013-06-09 19:50:37',5),(12,8,1,1,3,9,0,0,0,0,'2013-06-29 00:12:28',2),(7,8,1,9,10,1,0,0,0,0,'2013-06-29 13:30:17',4),(20,8,1,1,9,10,0,0,0,0,'2013-06-29 09:56:52',4),(1,8,1,9,1,10,0,0,0,0,'2013-06-29 13:04:52',3),(10,8,1,10,1,2,0,0,0,0,'2013-06-29 13:05:38',3),(2,8,1,9,1,10,0,0,0,0,'2013-06-29 13:41:36',3),(18,8,1,9,1,10,0,0,0,0,'2013-06-29 13:51:32',3),(12,8,2,10,1,9,1,8,3,-1,'2013-06-29 19:41:21',1),(7,8,2,10,1,9,10,6,14,0,'2013-06-29 21:13:40',2),(7,9,1,1,2,7,0,0,0,0,'2013-06-29 21:13:00',2),(20,8,2,10,1,9,9,19,14,-1,'2013-06-29 22:54:20',3),(1,8,2,1,10,9,1,4,14,0,'2013-06-30 12:32:46',2),(10,8,2,1,10,2,1,18,11,0,'2013-06-30 13:46:05',3),(2,8,2,1,10,2,10,16,14,0,'2013-06-30 13:48:37',2),(18,8,2,1,10,9,3,16,3,0,'2013-06-30 13:56:52',0),(20,9,1,10,9,1,0,0,0,0,'2013-07-03 22:15:29',3),(12,9,1,1,2,9,0,0,0,0,'2013-07-05 21:13:37',2),(7,9,2,1,9,7,1,12,10,-1,'2013-07-06 03:17:42',3),(1,9,1,1,9,2,0,0,0,0,'2013-07-06 13:47:02',3),(10,9,1,10,9,1,0,0,0,0,'2013-07-06 11:55:25',3),(2,9,1,1,9,2,0,0,0,0,'2013-07-06 13:23:28',3),(18,9,1,1,2,9,0,0,0,0,'2013-07-06 13:43:33',2),(20,9,2,1,10,2,1,19,18,-1,'2013-07-07 12:47:12',2),(1,9,2,1,7,2,1,12,9,0,'2013-07-06 22:32:12',3),(12,9,2,1,2,10,1,11,9,0,'2013-07-06 23:20:12',1),(10,9,2,10,1,9,10,20,9,-1,'2013-07-07 13:41:14',1),(18,9,2,1,3,2,1,17,3,0,'2013-07-07 13:44:52',1),(2,9,2,1,10,3,1,21,9,0,'2013-07-07 13:52:50',1),(12,10,1,7,8,1,0,0,0,0,'2013-07-27 08:07:53',2),(20,10,1,1,7,10,0,0,0,0,'2013-07-27 10:30:25',2),(7,10,1,8,1,3,0,0,0,0,'2013-07-27 13:59:13',3),(18,10,1,3,1,4,0,0,0,0,'2013-07-27 13:19:41',2),(10,10,1,3,1,10,0,0,0,0,'2013-07-27 13:20:20',3),(1,10,1,8,1,3,0,0,0,0,'2013-07-27 13:44:47',3),(2,10,1,1,10,8,0,0,0,0,'2013-07-27 13:52:38',4),(20,10,2,1,8,7,2,11,14,-1,'2013-07-28 13:58:23',3),(12,10,2,1,7,8,3,12,11,1,'2013-07-27 16:54:26',2),(1,10,2,1,3,7,1,17,5,0,'2013-07-27 19:33:42',5),(10,10,2,1,10,9,10,4,14,-1,'2013-07-28 13:34:14',2),(2,10,2,1,8,10,1,7,5,0,'2013-07-28 13:43:53',5),(18,10,2,1,3,7,8,10,6,0,'2013-07-28 13:49:46',3),(12,11,1,1,10,7,0,0,0,0,'2013-08-23 18:15:16',2),(1,11,1,1,2,8,0,0,0,0,'2013-08-24 08:51:53',2),(10,11,1,1,2,8,0,0,0,0,'2013-08-24 09:13:32',2),(7,11,1,1,3,18,0,0,0,0,'2013-08-24 13:59:08',1),(18,11,1,1,3,2,0,0,0,0,'2013-08-24 13:53:59',3),(20,11,2,1,10,9,2,8,15,-1,'2013-08-24 18:51:32',3),(12,11,2,1,10,3,7,2,3,1,'2013-08-24 17:27:20',3),(1,11,2,1,10,3,10,21,19,1,'2013-08-24 20:28:24',5),(10,11,2,10,1,9,10,22,16,1,'2013-08-25 10:16:46',1),(7,11,2,1,10,9,10,6,14,1,'2013-08-25 13:09:44',2),(18,11,2,10,1,3,3,12,6,1,'2013-08-25 13:59:06',2),(2,11,2,1,2,10,1,14,3,0,'2013-08-25 13:59:38',6),(20,12,1,1,10,3,0,0,0,0,'2013-09-06 00:06:18',2),(12,12,1,10,1,3,0,0,0,0,'2013-09-06 20:35:50',1),(1,12,1,1,10,2,0,0,0,0,'2013-09-07 12:05:19',3),(7,12,1,1,10,3,0,0,0,0,'2013-09-07 12:11:06',2),(10,12,1,10,1,7,0,0,0,0,'2013-09-07 12:13:29',1),(18,12,1,1,10,3,0,0,0,0,'2013-09-07 13:13:37',2),(2,12,1,1,2,3,0,0,0,0,'2013-09-07 13:53:40',4),(2,12,2,1,2,3,1,8,10,0,'2013-09-07 15:55:32',5),(1,12,2,1,3,2,1,12,10,0,'2013-09-07 17:28:11',7),(12,12,2,1,2,3,1,11,10,-1,'2013-09-07 17:30:20',4),(20,12,2,1,11,3,1,2,12,-1,'2013-09-07 21:07:25',3),(7,12,2,1,2,3,1,8,10,-1,'2013-09-08 10:40:52',4),(10,12,2,1,3,10,3,4,10,-1,'2013-09-08 13:31:19',4),(18,12,2,1,2,3,3,18,10,0,'2013-09-08 13:58:14',5),(20,13,1,1,2,10,0,0,0,0,'2013-09-20 16:29:14',2),(20,13,2,1,3,10,3,14,20,-1,'2013-09-21 16:06:33',4),(12,13,1,1,2,10,0,0,0,0,'2013-09-20 18:43:58',2),(7,13,1,1,2,10,0,0,0,0,'2013-09-21 07:44:17',2),(1,13,1,1,2,10,0,0,0,0,'2013-09-21 14:15:02',2),(2,13,1,1,2,10,0,0,0,0,'2013-09-21 12:59:43',2),(10,13,1,1,10,2,0,0,0,0,'2013-09-21 13:50:25',2),(18,13,1,1,10,2,0,0,0,0,'2013-09-21 14:13:44',2),(1,13,2,1,2,3,1,12,7,1,'2013-09-21 23:10:07',7),(2,13,2,1,9,8,2,12,7,1,'2013-09-22 10:40:31',5),(12,13,2,1,10,9,1,14,7,0,'2013-09-22 12:29:02',4),(7,13,2,1,9,2,1,6,7,1,'2013-09-22 12:40:47',6),(10,13,2,1,9,2,1,4,7,1,'2013-09-22 13:31:06',6),(18,13,2,1,3,8,1,15,7,1,'2013-09-22 13:40:12',8),(20,14,1,1,10,2,0,0,0,0,'2013-10-04 14:18:01',6),(12,14,1,1,10,9,0,0,0,0,'2013-10-04 20:20:08',4),(1,14,1,1,10,2,0,0,0,0,'2013-10-05 06:56:07',6),(10,14,1,1,10,9,0,0,0,0,'2013-10-04 21:36:19',4),(7,14,1,10,1,9,0,0,0,0,'2013-10-04 22:59:27',2),(2,14,1,1,10,2,0,0,0,0,'2013-10-05 01:23:56',6),(12,14,2,1,10,9,1,15,2,1,'2013-10-05 09:49:15',4),(20,14,2,1,3,10,1,20,2,-1,'2013-10-06 07:05:37',3),(1,14,2,1,10,3,1,18,2,0,'2013-10-05 18:48:03',2),(7,14,2,1,3,10,1,8,2,-1,'2013-10-05 21:06:18',3),(10,14,2,1,10,3,1,21,2,0,'2013-10-05 22:20:03',2),(18,14,2,1,3,10,1,16,7,1,'2013-10-06 07:24:40',6),(2,14,2,1,8,3,1,14,2,0,'2013-10-06 07:54:08',6),(2,15,1,1,10,2,0,0,0,0,'2013-10-11 12:33:00',3),(2,15,2,1,2,10,1,21,7,0,'2013-10-13 07:57:51',8),(20,15,1,1,2,7,0,0,0,0,'2013-10-11 15:37:49',2),(7,15,1,1,2,8,0,0,0,0,'2013-10-11 20:00:10',2),(12,15,1,1,10,9,0,0,0,0,'2013-10-11 20:22:17',2),(1,15,1,1,2,10,0,0,0,0,'2013-10-11 21:37:35',4),(10,15,1,1,10,9,0,0,0,0,'2013-10-11 21:39:34',2),(18,15,1,1,10,2,0,0,0,0,'2013-10-11 23:12:06',3),(20,15,2,1,3,10,1,14,3,-1,'2013-10-12 11:10:30',2),(7,15,2,1,2,10,1,12,7,-1,'2013-10-12 13:58:29',4),(12,15,2,1,2,8,8,20,15,1,'2013-10-12 18:01:48',7),(1,15,2,1,8,10,1,18,15,1,'2013-10-13 00:29:50',4),(10,15,2,1,10,8,1,4,7,0,'2013-10-13 00:32:59',5),(18,15,2,2,3,10,2,17,3,0,'2013-10-13 07:55:03',3),(20,16,1,1,2,8,0,0,0,0,'2013-10-25 14:54:44',2),(1,16,1,1,2,10,0,0,0,0,'2013-10-25 20:50:18',4),(10,16,1,1,8,2,0,0,0,0,'2013-10-25 20:56:05',2),(12,16,1,1,2,10,0,0,0,0,'2013-10-25 21:22:04',4),(7,16,1,1,2,10,0,0,0,0,'2013-10-26 06:29:08',4),(18,16,1,1,2,3,0,0,0,0,'2013-10-26 10:14:35',2),(20,16,2,1,3,7,1,19,8,-1,'2013-10-26 12:02:08',4),(12,16,2,1,10,9,1,11,8,0,'2013-10-26 17:06:38',6),(1,16,2,1,10,2,1,21,8,0,'2013-10-26 22:12:43',8),(7,16,2,1,2,9,1,12,3,0,'2013-10-27 09:39:35',4),(10,16,2,1,10,9,1,21,8,0,'2013-10-27 10:08:04',9),(18,16,2,1,3,2,1,17,8,0,'2013-10-27 10:09:32',5),(20,17,1,1,2,8,0,0,0,0,'2013-11-01 15:35:22',2),(12,17,1,1,2,7,0,0,0,0,'2013-11-01 17:06:18',2),(1,17,1,1,2,10,0,0,0,0,'2013-11-01 21:13:58',2),(10,17,1,1,10,2,0,0,0,0,'2013-11-02 11:32:47',2),(7,17,1,1,2,10,0,0,0,0,'2013-11-02 12:24:58',2),(2,17,1,1,2,10,0,0,0,0,'2013-11-02 12:40:28',2),(2,17,2,1,10,2,1,19,7,0,'2013-11-03 13:58:46',4),(18,17,1,1,10,9,0,0,0,0,'2013-11-02 13:51:30',3),(12,17,2,1,2,7,1,16,3,0,'2013-11-02 15:52:53',5),(1,17,2,1,2,10,1,22,7,0,'2013-11-03 11:24:14',5),(20,17,2,1,2,8,1,3,7,-1,'2013-11-03 13:41:43',4),(7,17,2,1,2,9,1,20,3,-1,'2013-11-03 09:58:29',6),(10,17,2,1,9,10,1,20,7,-1,'2013-11-03 11:28:23',3),(18,17,2,2,1,9,2,14,7,1,'2013-11-03 13:45:47',3),(20,18,1,1,2,9,0,0,0,0,'2013-11-15 23:58:57',4),(20,18,2,1,2,8,1,14,15,-1,'2013-11-17 19:39:10',5),(12,18,1,1,2,9,0,0,0,0,'2013-11-16 13:57:56',4),(2,18,1,1,2,10,0,0,0,0,'2013-11-16 17:34:02',4),(1,18,1,1,2,10,0,0,0,0,'2013-11-16 18:22:47',4),(10,18,1,1,2,8,0,0,0,0,'2013-11-16 18:23:34',6),(18,18,1,1,2,10,0,0,0,0,'2013-11-16 18:33:42',4),(1,18,2,1,2,10,1,18,15,0,'2013-11-16 23:53:24',3),(12,18,2,1,2,8,1,20,16,1,'2013-11-17 16:20:39',6),(7,18,2,1,8,2,1,11,12,-1,'2013-11-17 18:09:10',9),(10,18,2,1,8,2,1,20,9,0,'2013-11-17 18:21:54',6),(2,18,2,1,2,8,1,16,15,0,'2013-11-17 18:51:17',4),(18,18,2,1,2,3,1,12,15,0,'2013-11-17 19:51:50',3),(20,19,1,1,9,10,0,0,0,0,'2013-11-22 20:26:57',4),(20,19,2,1,3,9,1,16,12,-1,'2013-11-24 16:56:44',3),(1,19,1,1,2,9,0,0,0,0,'2013-11-22 21:27:58',3),(10,19,1,1,9,2,0,0,0,0,'2013-11-23 10:01:42',4),(12,19,1,1,2,8,0,0,0,0,'2013-11-23 10:18:12',2),(7,19,1,9,1,10,0,0,0,0,'2013-11-23 13:52:25',2),(1,19,2,1,3,2,1,21,6,1,'2013-11-24 16:59:07',5),(12,19,2,1,2,9,1,16,15,1,'2013-11-24 00:17:57',3),(7,19,2,1,3,9,1,18,4,1,'2013-11-24 16:23:39',2),(10,19,2,1,9,3,1,12,16,-1,'2013-11-24 16:38:33',4),(18,19,2,3,1,2,3,23,5,1,'2013-11-24 16:46:05',2),(2,19,2,1,3,2,1,21,6,0,'2013-11-24 16:50:41',7); /*!40000 ALTER TABLE `tips` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `users` -- DROP TABLE IF EXISTS `users`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `users` ( `u_id` int(11) NOT NULL AUTO_INCREMENT, `u_name` char(3) NOT NULL DEFAULT '', `u_passcode` varchar(41) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL DEFAULT '', `u_pic` varchar(40) DEFAULT NULL, `u_realname` varchar(40) NOT NULL DEFAULT '', `u_nickname` varchar(20) NOT NULL DEFAULT 'not revealed', `u_email` varchar(50) NOT NULL DEFAULT '', `u_emailreminder` int(1) NOT NULL DEFAULT '0', `u_nationality` varchar(20) NOT NULL DEFAULT 'not revealed', `u_favdriver` int(11) NOT NULL DEFAULT '0', `u_since` year(4) NOT NULL DEFAULT '0000', `u_gtwins` int(3) NOT NULL DEFAULT '0', `u_admin` int(1) NOT NULL DEFAULT '0', PRIMARY KEY (`u_id`) ) ENGINE=MyISAM AUTO_INCREMENT=33 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `users` -- LOCK TABLES `users` WRITE; /*!40000 ALTER TABLE `users` DISABLE KEYS */; INSERT INTO `users` VALUES (1,'MAM','18d022103920e120b2faabf4be68aa8f','pic_MAM.gif','Markus A. Mascelli','MAM','mam@heimam.at',0,'italian',602,2006,2,1),(2,'GUE','78918cecf8926d0cada4c5bc31af87a3','pic_GUE.gif','Guenther Schmidt','GueStar','guenther.schmidt@gmail.com',0,'austrian',15,2006,3,0),(3,'ZEI','8dad7cabce9c511bd4983e8dc96ea5da','pic_ZEI.gif','Christian Zeichmann','Zeichi','christian.zeichmann@kabelnet.at',0,'austrian',0,2007,1,0),(4,'AFG','f9c17117b5b8dbf8cfa83d8057ee1a0b','pic_AFG.gif','Andrea F. Grohmann','','a.grohmann@gmx.at',0,'austrian',0,2007,0,0),(5,'JIR','8522c2ccfd6fc5d242ed16d168401fad','avatar.jpg','Juergen Iser','','j.iser@gmx.at',0,'austrian',602,2008,0,0),(6,'KAI','e5f4d97a4961dea1184bbbe847b591f3','avatar.jpg','Roman Kailbach','Kailo','kailo@gmx.at',0,'austrian',334,2008,0,0),(7,'WOB','776ad0ef27acc0602c337dc2736f3a97','300ende.jpg','Mhöb Gnagflow','WoB','wboehm@gmail.com',0,'austrian',762,2008,0,0),(8,'REG','776ad0ef27acc0602c337dc2736f3a97','yoshi1.jpg','Regina Boehm','','rboehm@gmail.com',0,'austrian',0,2008,0,0),(9,'ISA','3c4db9561aa2b8530d5c60014dbfbe86','isa_grid_kl_hp_3.jpg','Ildiko Samu-Puehringer','sam','ildiko.samu@aon.at',0,'hungarian',667,2008,0,0),(10,'MRO','cda0fd2918d19e20ac871ed79a8d2bb0','pic_MRO.jpg','Martha Rossa','RoMa','rossama@yahoo.com',0,'austrian',334,2008,1,1),(11,'MPU','f9c17117b5b8dbf8cfa83d8057ee1a0b','mpu_grid_tip_blaukl.jpg','Michael Puehringer','','michael.puehringer@lotterien.at',0,'austrian',621,2008,0,0),(12,'RHA','9ced82c0515df69d4e3311f63d40ffa0','avatar.jpg','Robert Haller','','robert.haller@kabsi.at',0,'austrian',0,2008,0,0),(13,'FAN','33c2e20d31b3ae8f4564d7517738eb7d','extremeevil.gif','Georg Juren','Schurl','georg.juren@atos.net',0,'austrian',49,2009,0,0),(14,'MBR','f9c17117b5b8dbf8cfa83d8057ee1a0b','avatar.jpg','Markus Brenner','','m.brenn@gmx.net',0,'austrian',0,2009,0,0),(15,'RSC','d67ee0b6a91696158441100ba2e5a9b0','schicht_roman.jpg','Roman Schicht','','rschicht@yahoo.com',0,'austrian',0,2009,0,0),(16,'FAB','f9c17117b5b8dbf8cfa83d8057ee1a0b','avatar.jpg','Alexander Fabozzi','','alexander.fabozzi@gmx.at',0,'austrian',0,2010,0,0),(17,'MAR','776ad0ef27acc0602c337dc2736f3a97','avatar.jpg','Marina Boehm','','mboehm@gmail.com',0,'austrian',0,2010,0,0),(18,'IRS','8918b74d571421bcc47fc59816bf8fc2','foto_ivan.png','Ivan Rodriguez','','irodriguezs@hotmail.com',0,'spanish',15,2010,1,0),(19,'ALE','2ab3343875e56dc0a15cbb6a98570cf2','avatar.jpg','Alexander Doler','','alexander.doler@atos.net',0,'austrian',0,2012,0,0),(20,'STM','f078ea5db3ca0165e914bb82ea971755','avatar.jpg','Manfred Steinacher','','mst4711@gmx.at',0,'austrian',0,2013,0,0); /*!40000 ALTER TABLE `users` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `winners` -- DROP TABLE IF EXISTS `winners`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `winners` ( `w_season` int(4) NOT NULL DEFAULT '0', `w_u_id` int(4) NOT NULL DEFAULT '0', PRIMARY KEY (`w_season`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `winners` -- LOCK TABLES `winners` WRITE; /*!40000 ALTER TABLE `winners` DISABLE KEYS */; INSERT INTO `winners` VALUES (2006,2),(2007,2),(2008,10),(2009,1),(2010,3),(2011,1),(2012,18),(2013,2); /*!40000 ALTER TABLE `winners` ENABLE KEYS */; UNLOCK TABLES; -- -- Current Database: `niki_2014` -- CREATE DATABASE /*!32312 IF NOT EXISTS*/ `niki_2014` /*!40100 DEFAULT CHARACTER SET latin1 */; USE `niki_2014`; -- -- Table structure for table `alldrivers` -- DROP TABLE IF EXISTS `alldrivers`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `alldrivers` ( `a_id` int(4) NOT NULL AUTO_INCREMENT, `a_lname` varchar(20) NOT NULL DEFAULT '', `a_fname` varchar(20) NOT NULL DEFAULT '', PRIMARY KEY (`a_id`) ) ENGINE=MyISAM AUTO_INCREMENT=836 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `alldrivers` -- LOCK TABLES `alldrivers` WRITE; /*!40000 ALTER TABLE `alldrivers` DISABLE KEYS */; INSERT INTO `alldrivers` VALUES (1,'ABATE','Carlo'),(2,'ABECASSIS','George'),(3,'ACHESON','Kenny'),(4,'ADAMS','Philippe'),(5,'ADER','Walt'),(6,'ADOLFF','Kurt'),(7,'AGABASHIAN','Fred'),(8,'AHRENS','Kurt Jr.'),(9,'ALBERS','Christijan'),(10,'ALBORETO','Michele'),(11,'ALESI','Jean'),(12,'ALGUERSUARI','Jaime'),(13,'ALLIOT','Philippe'),(14,'ALLISON','Cliff'),(15,'ALONSO','Fernando'),(16,'AMATI','Giovanna'),(17,'AMICK','George'),(18,'AMICK','Red'),(19,'AMON','Chris'),(20,'ANDERSON','Bob'),(21,'ANDERSSON','Conny'),(22,'ANDRETTI','Mario'),(23,'ANDRETTI','Michael'),(24,'ANDREWS','Keith'),(25,'APICELLA','Marco'),(26,'ARMI','Frank'),(27,'ARNOLD','Chuck'),(28,'ARNOUX','Rene'),(29,'ARUNDELL','Peter'),(30,'ASCARI','Alberto'),(31,'ASHDOWN','Peter'),(32,'ASHLEY','Ian'),(33,'ASHMORE','Gerry'),(34,'ASTON','Bill'),(35,'ATTWOOD','Richard'),(36,'AYULO','Manny'),(37,'BADOER','Luca'),(38,'BAGHETTI','Giancarlo'),(39,'BAILEY','Julian'),(40,'BALDI','Mauro'),(41,'BALL','Bobby'),(42,'BALSA','Marcel'),(43,'BANDINI','Lorenzo'),(44,'BANKS','Henry'),(45,'BARBAZZA','Fabrizio'),(46,'BARBER','John'),(47,'BARBER','Skip'),(48,'BARILLA','Paolo'),(49,'BARRICHELLO','Rubens'),(50,'BARTELS','Michael'),(51,'BARTH','Edgar'),(52,'BASSI','Giorgio'),(53,'BAUER','Erwin'),(54,'BAUMGARTNER','Zsolt'),(55,'BAYOL','Elie'),(56,'BEAUMAN','Don'),(57,'BECHEM','Karl–Guenther'),(58,'BEHRA','Jean'),(59,'BELL','Derek'),(60,'BELLOF','Stefan'),(61,'BELMONDO','Paul'),(62,'BELSO','Tom'),(63,'BELTOISE','Jean-Pierre'),(64,'BERETTA','Olivier'),(65,'BERG','Allen'),(66,'BERGER','Georges'),(67,'BERGER','Gerhard'),(68,'BERNARD','Eric'),(69,'BERNOLDI','Enrique'),(70,'BERTAGGIA','Enrico'),(71,'BETTENHAUSEN','Tony'),(72,'BEUTTLER','Mike'),(73,'BHANUBANDH','Birabongse'),(74,'BIANCHI','Lucien'),(75,'BIANCO','Gino'),(76,'BINDER','Hans'),(77,'BIONDETTI','Clemente'),(78,'BIRGER','Pablo'),(79,'BISCH','Art'),(80,'BLANCHARD','Harry'),(81,'BLEEKEMOLEN','Michael'),(82,'BLIGNAUT','Alex'),(83,'BLOKDYK','Trevor'),(84,'BLUNDELL','Mark'),(85,'BOESEL','Raul'),(86,'BOFFA','Menato'),(87,'BONDURANT','Bob'),(88,'BONETTO','Felice'),(89,'BONNIER','Jo'),(90,'BONOMI','Roberto'),(91,'BORDEU','Juan Manuel'),(92,'BORGUDD','Slim'),(93,'BOTHA','Luki'),(94,'BOULLION','Jean-Christophe'),(95,'BOURDAIS','Sebastien'),(96,'BOUTSEN','Thierry'),(97,'BOYD','Johnny'),(98,'BRABHAM','David'),(99,'BRABHAM','Gary'),(100,'BRABHAM','Jack'),(101,'BRACK','Bill'),(102,'BRAMBILLA','Ernesto'),(103,'BRAMBILLA','Vittorio'),(104,'BRANCA','Toni'),(105,'BRANCATELLI','Gianfranco'),(106,'BRANDON','Eric'),(107,'BRANSON','Don'),(108,'BRIDGER','Tom'),(109,'BRISE','Tony'),(110,'BRISTOW','Chris'),(111,'BROEKER','Peter'),(112,'BROOKS','Tony'),(113,'BROWN','Alan'),(114,'BROWN','Walt'),(115,'BROWN','Warwick'),(116,'BRUDES','Adolf'),(117,'BRUNDLE','Martin'),(118,'BRUNI','Gianmaria'),(119,'BRYAN','Jimmy'),(120,'BUCCI','Clemar'),(121,'BUCKNUM','Ronnie'),(122,'BUEB','Ivor'),(123,'BUEMI','Sebastien'),(124,'BUENO','Luiz'),(125,'BURGESS','Ian'),(126,'BURTI','Luciano'),(127,'BUSSINELLO','Roberto'),(128,'BUTTON','Jenson'),(129,'BYRNE','Tommy'),(130,'CABIANCA','Giulio'),(131,'CADE','Phil'),(132,'CAFFI','Alex'),(133,'CAMPBELL-JONES','John'),(134,'CAMPOS','Adrian'),(135,'CANNON','John'),(136,'CANTONI','Eitel'),(137,'CANTRELL','Bill'),(138,'CAPELLI','Ivan'),(139,'CARINI','Piero'),(140,'CARTER','Duane'),(141,'CASTELLOTTI','Eugenio'),(142,'CECOTTO','Johnny'),(143,'CEVERT','Francois'),(144,'CHABOUD','Eugène'),(145,'CHAMBERLAIN','Jay'),(146,'CHAPMAN','Colin'),(147,'CHARLTON','Dave'),(148,'CHAVES','Pedro Matos'),(149,'CHEESBOURG','Bill'),(150,'CHEEVER','Eddie'),(151,'CHIESA','Andrea'),(152,'CHIMERI','Ettore'),(153,'CHIRON','Louis'),(154,'CHITWOOD','Joie'),(155,'CHRISTIE','Bob'),(156,'CLAES','Johnny'),(157,'CLAPHAM','David'),(158,'CLARK','Jim'),(159,'COGAN','Kevin'),(160,'COLLINS','Peter'),(161,'COLLOMB','Bernard'),(162,'COLOMBO','Alberto'),(163,'COMAS','Erik'),(164,'COMOTTI','Franco'),(165,'CONNOR','George'),(166,'CONSTANTINE','George'),(167,'CORDTS','John'),(168,'COULTHARD','David'),(169,'COURAGE','Piers'),(170,'CRAFT','Chris'),(171,'CRAWFORD','Jim'),(172,'CRAWFORD','Ray'),(173,'CRESPO','Alberto'),(174,'CREUS','Antonio'),(175,'CROCKETT','Larry'),(176,'CROOK','Tony'),(177,'CROSS','Art'),(178,'CROSSLEY','Geoff'),(179,'DA MATTA','Cristiano'),(180,'DA SLIVA RAMOS','Hernando'),(181,'DAIGH','Chuck'),(182,'DALMAS','Yannick'),(183,'DALY','Derek'),(184,'DANNER','Christian'),(185,'DAPONTE','Jorge'),(186,'DAVIDSON','Anthony'),(187,'DAVIES','Jimmy'),(188,'DAVIS','Colin'),(189,'DAYWALT','Jimmy'),(190,'DE ADAMICH','Andrea'),(191,'DE ANGELIS','Elio'),(192,'DE ARAUJO CABRAL','Mario'),(193,'DE CESARIS','Andrea'),(194,'DE CHANGY','Alain'),(195,'DE DRYVER','Bernard'),(196,'DE FILIPPIS','Maria Teresa'),(197,'DE GRAFFENRIED','Emmanuel'),(198,'DE KLERK','Peter'),(199,'DE LA ROSA','Pedro'),(200,'DE PORTAGO','Alfonso'),(201,'DE RIU','Giovanni'),(202,'DE TOMASO','Alejandro'),(203,'DE TORNACO','Charles'),(204,'DE VILLOTA','Emilio'),(205,'DE VOS','Ernie'),(206,'DELETRAZ','Jean-Denis'),(207,'DEPAILLER','Patrick'),(208,'DINIZ','Pedro'),(209,'DINSMORE','Duke'),(210,'DOCHNAL','Frank'),(211,'DOLHEM','Jose'),(212,'DONNELLY','Martin'),(213,'DONOHUE','Mark'),(214,'DOORNBOS','Robert'),(215,'D\'OREY','Fritz'),(216,'DOWNING','Ken'),(217,'DRAKE','Bob'),(218,'DRIVER','Paddy'),(219,'DROGO','Piero'),(220,'DUKE','Geoff'),(221,'DUMFRIES','Johnny'),(222,'DUNCAN','Len'),(223,'DUSIO','Piero'),(224,'EATON','George'),(225,'ECCLESTONE','Bernie'),(226,'EDMUNDS','Don'),(227,'EDWARDS','Guy'),(228,'ELFORD','Vic'),(229,'ELISIAN','Ed'),(230,'EMERY','Paul'),(231,'ENGE','Tomas'),(232,'ENGLAND','Paul'),(233,'ERTL','Harald'),(234,'ESTEFANO','Nasif'),(235,'ETANCELIN','Philippe'),(236,'EVANS','Bob'),(237,'FABI','Corrado'),(238,'FABI','Teo'),(239,'FABRE','Pascal'),(240,'FACETTI','Carlo'),(241,'FAGIOLI','Luigi'),(242,'FAIRMAN','Jack'),(243,'FANGIO','Juan Manuel'),(244,'FARINA','Nino'),(245,'FAULKNER','Walt'),(246,'FERGUSON','William'),(247,'FIRMAN','Ralph'),(248,'FISCHER','Ludwig'),(249,'FISCHER','Rudi'),(250,'FISHER','Mike'),(251,'FISICHELLA','Giancarlo'),(252,'FITCH','John'),(253,'FITTIPALDI','Christian'),(254,'FITTIPALDI','Emerson'),(255,'FITTIPALDI','Wilson'),(256,'FITZAU','Theo'),(257,'FLAHERTY','Pat'),(258,'FLINTERMAN','Jan'),(259,'FLOCKHART','Ron'),(260,'FOHR','Myron'),(261,'FOITEK','Gregor'),(262,'FOLLMER','George'),(263,'FONDER','George'),(264,'FONTANA','Norberto'),(265,'FONTES BAYARDO','Azdrubal'),(266,'FORBERG','Carl'),(267,'FORCE','Gene'),(268,'FORINI','Franco'),(269,'FOTHERINGHAM-PARKER','Philip'),(270,'FOYT','A.J.'),(271,'FRANCIA','Giorgio'),(272,'FREELAND','Don'),(273,'FRENTZEN','Heinz-Harald'),(274,'FRERE','Paul'),(275,'FRIESACHER','Patrick'),(276,'FRY','Joe'),(277,'FUSHIDA','Hiroshi'),(278,'GABBIANI','Beppe'),(279,'GACHOT','Bertrand'),(280,'GAILLARD','Patrick'),(281,'GALICA','Divina'),(282,'GALLI','Nanni'),(283,'GALVEZ','Oscar Alfredo'),(284,'GAMBLE','Fred'),(285,'GANLEY','Howden'),(286,'GARDNER','Frank'),(287,'GARRETT','Billy'),(288,'GARTNER','Jo'),(289,'GAZE','Tony'),(290,'GEKI','NN'),(291,'GENDEBIEN','Olivier'),(292,'GENE','Marc'),(293,'GEORGE','Elmer'),(294,'GERARD','Bob'),(295,'GERINI','Gerino'),(296,'GETHIN','Peter'),(297,'GHINZANI','Piercarlo'),(298,'GIACOMELLI','Bruno'),(299,'GIBSON','Dick'),(300,'GINTHER','Richie'),(301,'GIRAUD-CABANTOUS','Yves'),(302,'GIUNTI','Ignazio'),(303,'GLOCK','Timo'),(304,'GLOECKLER','Helm'),(305,'GODIA','Paco'),(306,'GODIN DE BEAUFORT','Carel'),(307,'GOETHALS','Christian'),(308,'GOLDSMITH','Paul'),(309,'GONZALEZ','Jose Froilan'),(310,'GONZALEZ','Oscar'),(311,'GORDINI','Aldo'),(312,'GOULD','Horace'),(313,'GOUNON','Jean-Marc'),(314,'GREEN','Cecil'),(315,'GREENE','Keith'),(316,'GREGORY','Masten'),(317,'GRIFFITH','Cliff'),(318,'GRIGNARD','Georges'),(319,'GRIM','Bobby'),(320,'GROSJEAN','Romain'),(321,'GROUILLARD','Olivier'),(322,'GUBBY','Brian'),(323,'GUELFI','Andre'),(324,'GUERRA','Miguel Angel'),(325,'GUERRERO','Roberto'),(326,'GUGELMIN','Mauricio'),(327,'GURNEY','Dan'),(328,'HAHNE','Hubert'),(329,'HAILWOOD','Mike'),(330,'HAKKINEN','Mika'),(331,'HALFORD','Bruce'),(332,'HALL','Jim'),(333,'HAMILTON','Duncan'),(334,'HAMILTON','Lewis'),(335,'HAMPSHIRE','David'),(336,'HANKS','Sam'),(337,'HANSGEN','Walt'),(338,'HARRIS','Mike'),(339,'HARRISON','Cuth'),(340,'HART','Brian'),(341,'HARTLEY','Gene'),(342,'HASEMI','Masahiro'),(343,'HATTORI','Naoki'),(344,'HAWKINS','Paul'),(345,'HAWTHORN','Mike'),(346,'HAYJE','Boy'),(347,'HEEKS','Willi'),(348,'HEIDFELD','Nick'),(349,'HELFRICH','Theo'),(350,'HELLINGS','Mack'),(351,'HENTON','Brian'),(352,'HERBERT','Johnny'),(353,'HERMAN','Al'),(354,'HERRMANN','Hans'),(355,'HESNAULT','Francois'),(356,'HEYER','Hans'),(357,'HILL','Damon'),(358,'HILL','Graham'),(359,'HILL','Phil'),(360,'HIRT','Peter'),(361,'HOBBS','David'),(362,'HOCKING','Gary'),(363,'HOFFMANN','Ingo'),(364,'HOLLAND','Bill'),(365,'HOLMES','Jackie'),(366,'HOMEIER','Bill'),(367,'HOSHINO','Kazuyoshi'),(368,'HOYT','Jerry'),(369,'HULME','Denny'),(370,'HUNT','James'),(371,'HURTUBISE','Jim'),(372,'HUTCHISON','Gus'),(373,'ICKX','Jacky'),(374,'IDE','Yuji'),(375,'IGLESIAS','Jesus'),(376,'INOUE','Taki'),(377,'IRELAND','Innes'),(378,'IRVINE','Eddie'),(379,'IRWIN','Chris'),(380,'JABOUILLE','Jean-Pierre'),(381,'JACKSON','Jimmy'),(382,'JAMES','Joe'),(383,'JAMES','John'),(384,'JARIER','Jean-Pierre'),(385,'JEAN','Max'),(386,'JOHANSSON','Stefan'),(387,'JOHNSON','Eddie'),(388,'JOHNSON','Leslie'),(389,'JOHNSTONE','Bruce'),(390,'JONES','Alan'),(391,'JONES','Tom'),(392,'JOVER','Juan'),(393,'KARCH','Oswald'),(394,'KARTHIKEYAN','Narain'),(395,'KATAYAMA','Ukyo'),(396,'KAVANAGH','Ken'),(397,'KEEGAN','Rupert'),(398,'KEIZAN','Eddie'),(399,'KELLER','Al'),(400,'KELLY','Joe'),(401,'KENNEDY','Dave'),(402,'KESSEL','Loris'),(403,'KESSLER','Bruce'),(404,'KIESA','Nicolas'),(405,'KINNUNEN','Leo'),(406,'KLADIS','Danny'),(407,'KLENK','Hans'),(408,'KLIEN','Christian'),(409,'KLING','Karl'),(410,'KLODWIG','Ernst'),(411,'KOBAYASHI','Kamui'),(412,'KOINIGG','Helmuth'),(413,'KOVALAINEN','Heikki'),(414,'KOZAROWITZKY','Mikko'),(415,'KRAKAU','Willi'),(416,'KRAUSE','Rudolf'),(417,'KUBICA','Robert'),(418,'KUHNKE','Kurt'),(419,'KUWASHIMA','Masami'),(420,'LA CAZE','Robert'),(421,'LAFFITE','Jacques'),(422,'LAGORCE','Franck'),(423,'LAMMERS','Jan'),(424,'LAMY','Pedro'),(425,'LANDI','Chico'),(426,'LANG','Hermann'),(427,'LANGES','Claudio'),(428,'LARINI','Nicola'),(429,'LARRAURI','Oscar'),(430,'LARROUSSE','Gerard'),(431,'LARSON','Jud'),(432,'LAUDA','Niki'),(433,'LAURENT','Roger'),(434,'LAVAGGI','Giovanni'),(435,'LAWRENCE','Chris'),(436,'LECLERE','Michel'),(437,'LEDERLE','Neville'),(438,'LEES','Geoff'),(439,'LEGAT','Arthur'),(440,'LEHTO','JJ'),(441,'LEONI','Lamberto'),(442,'LESTON','Les'),(443,'LEVEGH','Pierre'),(444,'LEVRETT','Bayliss'),(445,'LEWIS','Jackie'),(446,'LEWIS-EVANS','Stuart'),(447,'LIGIER','Guy'),(448,'LINDEN','Andy'),(449,'LIPPI','Roberto'),(450,'LIUZZI','Vitantonio'),(451,'LOMBARDI','Lella'),(452,'LONDONO','Ricardo'),(453,'LOOF','Ernst'),(454,'LOUVEAU','Henri'),(455,'LOVE','John'),(456,'LOVELY','Pete'),(457,'LOYER','Roger'),(458,'LUCAS','Jean'),(459,'LUCIENBONNET','Jean'),(460,'LUNGER','Brett'),(461,'MACDOWEL','Mike'),(462,'MACKAY-FRASER','Herbert'),(463,'MACKEY','Bill'),(464,'MACKLIN','Lance'),(465,'MAGEE','Damien'),(466,'MAGGS','Tony'),(467,'MAGILL','Mike'),(468,'MAGLIOLI','Umberto'),(469,'MAGNUSSEN','Jan'),(470,'MAIRESSE','Guy'),(471,'MAIRESSE','Willy'),(472,'MANSELL','Nigel'),(473,'MANTOVANI','Sergio'),(474,'MANTZ','Johnny'),(475,'MANZON','Robert'),(476,'MARIMON','Onofre'),(477,'MARKO','Helmut'),(478,'MARQUES','Tarso'),(479,'MARR','Leslie'),(480,'MARSH','Tony'),(481,'MARTIN','Eugene'),(482,'MARTINI','Pierluigi'),(483,'MASS','Jochen'),(484,'MASSA','Felipe'),(485,'MAY','Michael'),(486,'MAYER','Timmy'),(487,'MAZET','Francois'),(488,'MAZZACANE','Gaston'),(489,'MCALPINE','Kenneth'),(490,'MCCARTHY','Perry'),(491,'MCCOY','Ernie'),(492,'MCDOWELL','Johnny'),(493,'MCGRATH','Jack'),(494,'MCGUIRE','Brian'),(495,'MCLAREN','Bruce'),(496,'MCNISH','Allan'),(497,'MCRAE','Graham'),(498,'MCWITHEY','Jim'),(499,'MENDITEGUY','Carlos'),(500,'MERKEL','Harry'),(501,'MERZARIO','Arturo'),(502,'MIERES','Roberto'),(503,'MIGAULT','Francois'),(504,'MILES','John'),(505,'MILES','Ken'),(506,'MILHOUX','Andre'),(507,'MILLER','Chet'),(508,'MITTER','Gerhard'),(509,'MODENA','Stefano'),(510,'MONARCH','Thomas'),(511,'MONTAGNY','Franck'),(512,'MONTEIRO','Tiago'),(513,'MONTERMINI','Andrea'),(514,'MONTEVERDI','Peter'),(515,'MONTGOMERIE-CHARRING','Robin'),(516,'MONTOYA','Juan Pablo'),(517,'MORBIDELLI','Gianni'),(518,'MORENO','Roberto'),(519,'MORGAN','Dave'),(520,'MOSER','Silvio'),(521,'MOSS','Bill'),(522,'MOSS','Stirling'),(523,'MUNARON','Gino'),(524,'MURRAY','David'),(525,'MUSSO','Luigi'),(526,'NAKAJIMA','Kazuki'),(527,'NAKAJIMA','Satoru'),(528,'NAKANO','Shinji'),(529,'NALON','Duke'),(530,'NANNINI','Alessandro'),(531,'NASPETTI','Emanuele'),(532,'NATILI','Massimo'),(533,'NAYLOR','Brian'),(534,'NAZARUK','Mike'),(535,'NEEDELL','Tiff'),(536,'NELLEMAN','Jac'),(537,'NEVE','Patrick'),(538,'NICHOLSON','John'),(539,'NIDAY','Cal'),(540,'NIEDERMAYR','Helmut'),(541,'NIEMANN','Brausch'),(542,'NILSSON','Gunnar'),(543,'NODA','Hideki'),(544,'NUCKEY','Rodney'),(545,'O\'BRIEN','Robert'),(546,'O\'CONNOR','Pat'),(547,'OLIVER','Jackie'),(548,'ONGAIS','Danny'),(549,'OPPITZHAUSER','Karl'),(550,'OWEN','Arthur'),(551,'PACE','Carlos'),(552,'PAGANI','Nello'),(553,'PALETTI','Riccardo'),(554,'PALM','Torsten'),(555,'PALMER','Jonathan'),(556,'PANIS','Olivier'),(557,'PANTANO','Giorgio'),(558,'PAPIS','Massimiliano'),(559,'PARKES','Mike'),(560,'PARNELL','Reg'),(561,'PARNELL','Tim'),(562,'PARSONS','Johnnie'),(563,'PATRESE','Riccardo'),(564,'PEASE','Al'),(565,'PENSKE','Roger'),(566,'PERDISA','Cesare'),(567,'PEREZ-SALA','Luis'),(568,'PERKINS','Larry'),(569,'PESCAROLO','Henri'),(570,'PESENTI-ROSSI','Alessandro'),(571,'PETERS','Josef'),(572,'PETERSON','Ronnie'),(573,'PIAN','Alfredo'),(574,'PICARD','Francois'),(575,'PIETERSE','Ernie'),(576,'PIETSCH','Paul'),(577,'PILETTE','Andre'),(578,'PILETTE','Teddy'),(579,'PIOTTI','Luigi'),(580,'PIPER','David'),(581,'PIQUET','Nelson'),(582,'PIQUET','Nelson Jr.'),(583,'PIROCCHI','Renato'),(584,'PIRONI','Didier'),(585,'PIRRO','Emanuele'),(586,'PIZZONIA','Antonio'),(587,'POLLET','Jacques'),(588,'PON','Ben'),(589,'POORE','Dennis'),(590,'POSEY','Sam'),(591,'POZZI','Charles'),(592,'PRETORIUS','Jackie'),(593,'PRINOTH','Ernesto'),(594,'PROPHET','David'),(595,'PROST','Alain'),(596,'PRYCE','Tom'),(597,'PURLEY','David'),(598,'PUZEY','Clive'),(599,'QUESTER','Dieter'),(600,'RABY','Ian'),(601,'RAHAL','Bobby'),(602,'RAIKKONEN','Kimi'),(603,'RAPHANEL','Pierre-Henri'),(604,'RATHMANN','Dick'),(605,'RATHMANN','Jim'),(606,'RATZENBERGER','Roland'),(607,'REBAQUE','Hector'),(608,'REDMAN','Brian'),(609,'REECE','Jimmy'),(610,'REED','Ray'),(611,'REES','Alan'),(612,'REGAZZONI','Clay'),(613,'REUTEMANN','Carlos'),(614,'REVENTLOW','Lance'),(615,'REVSON','Peter'),(616,'RHODES','John'),(617,'RIBEIRO','Alex'),(618,'RICHARDSON','Ken'),(619,'RIESS','Fritz'),(620,'RIGSBY','Jim'),(621,'RINDT','Jochen'),(622,'RISELEY-PRICHARD','John'),(623,'ROBARTS','Richard'),(624,'RODRIGUEZ','Pedro'),(625,'RODRIGUEZ','Ricardo'),(626,'RODRIGUEZ LARRETA','Alberto'),(627,'ROL','Franco'),(628,'ROLLINSON','Alan'),(629,'ROLT','Tony'),(630,'ROOS','Bertil'),(631,'ROSBERG','Keke'),(632,'ROSBERG','Nico'),(633,'ROSE','Mauri'),(634,'ROSIER','Louis'),(635,'ROSSET','Ricardo'),(636,'ROTHENGATTER','Huub'),(637,'RUBY','Lloyd'),(638,'RUDAZ','Jean-Claude'),(639,'RUSSO','Eddie'),(640,'RUSSO','Paul'),(641,'RUTTMAN','Troy'),(642,'RYAN','Peter'),(643,'SACHS','Eddie'),(644,'SAID','Bob'),(645,'SALAZAR','Eliseo'),(646,'SALO','Mika'),(647,'SALVADORI','Roy'),(648,'SANESI','Consalvo'),(649,'SARRAZIN','Stephane'),(650,'SATO','Takuma'),(651,'SCARBOROUGH','Carl'),(652,'SCARFIOTTI','Ludovico'),(653,'SCARLATTI','Giorgio'),(654,'SCHECKTER','Ian'),(655,'SCHECKTER','Jody'),(656,'SCHELL','Harry'),(657,'SCHENKEN','Tim'),(658,'SCHERRER','Albert'),(659,'SCHIATTARELLA','Domenico'),(660,'SCHILLER','Heinz'),(661,'SCHINDLER','Bill'),(662,'SCHLESSER','Jean-Louis'),(663,'SCHLESSER','Jo'),(664,'SCHNEIDER','Bernd'),(665,'SCHOELLER','Rudolf'),(666,'SCHROEDER','Rob'),(667,'SCHUMACHER','Michael'),(668,'SCHUMACHER','Ralf'),(669,'SCHUPPAN','Vern'),(670,'SCHWELM CRUZ','Adolfo'),(671,'SCOTT','Bob'),(672,'SCOTT BROWN','Archie'),(673,'SCOTTI','Piero'),(674,'SEIDEL','Wolfgang'),(675,'SEIFFERT','Guenther'),(676,'SENNA','Ayrton'),(677,'SERAFINI','Dorino'),(678,'SERRA','Chico'),(679,'SERRURIER','Doug'),(680,'SERVOZ-GAVIN','Johnny'),(681,'SETTEMBER','Tony'),(682,'SHARP','Hap'),(683,'SHAWE-TAYLOR','Brian'),(684,'SHELBY','Carroll'),(685,'SHELLY','Tony'),(686,'SIFFERT','Jo'),(687,'SIMON','Andre'),(688,'SLOTEMAKER','Rob'),(689,'SOLANA','Moises'),(690,'SOLER-ROIG','Alex'),(691,'SOMMER','Raymond'),(692,'SOSPIRI','Vincenzo'),(693,'SOUTH','Stephen'),(694,'SPARKEN','Mike'),(695,'SPEED','Scott'),(696,'SPENCE','Mike'),(697,'STACEY','Alan'),(698,'STARRABBA','Gaetano'),(699,'STEVENSON','Chuck'),(700,'STEWART','Ian'),(701,'STEWART','Jackie'),(702,'STEWART','Jimmy'),(703,'STOHR','Siegfried'),(704,'STOMMELEN','Rolf'),(705,'STREIFF','Philippe'),(706,'STUCK','Hans'),(707,'STUCK','Hans Joachim'),(708,'STUPPACHER','Otto'),(709,'SULLIVAN','Danny'),(710,'SURER','Marc'),(711,'SURTEES','John'),(712,'SUTCLIFFE','Andy'),(713,'SUTIL','Adrian'),(714,'SUTTON','Len'),(715,'SUZUKI','Aguri'),(716,'SUZUKI','Toshio'),(717,'SWATERS','Jacques'),(718,'SWEIKERT','Bob'),(719,'TAKAGI','Toranosuke'),(720,'TAKAHARA','Noritake'),(721,'TAKAHASHI','Kunimitsu'),(722,'TAMBAY','Patrick'),(723,'TARAMAZZO','Luigi'),(724,'TARQUINI','Gabriele'),(725,'TARUFFI','Piero'),(726,'TAYLOR','Dennis'),(727,'TAYLOR','Henry'),(728,'TAYLOR','John'),(729,'TAYLOR','Mike'),(730,'TAYLOR','Trevor'),(731,'TEAGUE','Marshall'),(732,'TEMPLEMAN','Shorty'),(733,'TERRA','Max de'),(734,'TESTUT','Andre'),(735,'THACKWELL','Mike'),(736,'THIELE','Alfonso'),(737,'THOMPSON','Eric'),(738,'THOMSON','Johnny'),(739,'THORNE','Leslie'),(740,'TINGELSTAD','Bud'),(741,'TINGLE','Sam'),(742,'TITTERINGTON','Desmond'),(743,'TOLAN','Johnnie'),(744,'TRIMMER','Tony'),(745,'TRINTIGNANT','Maurice'),(746,'TRULLI','Jarno'),(747,'TUERO','Esteban'),(748,'TUNMER','Guy'),(749,'TURNER','Jack'),(750,'ULMEN','Toni'),(751,'UNSER','Bobby'),(752,'UNSER','Jerry'),(753,'URIA','Alberto'),(754,'VACCARELLA','Nino'),(755,'VAN DE POELE','Eric'),(756,'VAN DER LOF','Dries'),(757,'VAN DER VYVER','Syd'),(758,'VAN LENNEP','Gijs'),(759,'VAN ROOYEN','Basil'),(760,'VEITH','Bob'),(761,'VERSTAPPEN','Jos'),(762,'VETTEL','Sebastian'),(763,'VILLENEUVE','Gilles'),(764,'VILLENEUVE','Jacques'),(765,'VILLENEUVE SR.','Jacques'),(766,'VILLORESI','Luigi'),(767,'VOLONTERIO','Ottorino'),(768,'VON OPEL','Rikky'),(769,'VON TRIPS','Wolfgang'),(770,'VONLANTHEN','Jo'),(771,'VUKOVICH','Bill'),(772,'WACKER','Fred'),(773,'WALKER','David'),(774,'WALKER','Peter'),(775,'WALLARD','Lee'),(776,'WALTER','Heini'),(777,'WARD','Rodger'),(778,'WARWICK','Derek'),(779,'WATSON','John'),(780,'WEBB','Spider'),(781,'WEBBER','Mark'),(782,'WEIDLER','Volker'),(783,'WEILER','Wayne'),(784,'WENDLINGER','Karl'),(785,'WESTBURY','Peter'),(786,'WEYANT','Chuck'),(787,'WHARTON','Ken'),(788,'WHITEAWAY','Ted'),(789,'WHITEHEAD','Graham'),(790,'WHITEHEAD','Peter'),(791,'WHITEHOUSE','Bill'),(792,'WIDDOWS','Robin'),(793,'WIETZES','Eppie'),(794,'WILDS','Mike'),(795,'WILLIAMS','Jonathan'),(796,'WILLIAMSON','Roger'),(797,'WILSON','Dempsey'),(798,'WILSON','Desire'),(799,'WILSON','Justin'),(800,'WILSON','Vic'),(801,'WINKELHOCK','Joachim'),(802,'WINKELHOCK','Manfred'),(803,'WINKELHOCK','Markus'),(804,'WISELL','Reine'),(805,'WUNDERINK','Roelof'),(806,'WURZ','Alexander'),(807,'YAMAMOTO','Sakon'),(808,'YOONG','Alex'),(809,'ZANARDI','Alex'),(810,'ZAPICO','Emilio'),(811,'ZONTA','Ricardo'),(812,'ZORZI','Renzo'),(813,'ZUNINO','Ricardo'),(814,'CHANDHOK','Karun'),(815,'DI GRASSI','Lucas'),(816,'HUELKENBERG','Nico'),(817,'PETROV','Vitaly'),(818,'SENNA','Bruno'),(819,'D\'AMBROSIO','Jerome'),(820,'DI RESTA','Paul'),(821,'MALDONADO','Pastor'),(822,'PEREZ','Sergio'),(823,'PIC','Charles'),(824,'RICCIARDO','Daniel'),(825,'VERGNE','Jean-Eric'),(826,'BIANCHI','Jules'),(827,'BOTTAS','Valtteri'),(828,'CHILTON','Max'),(829,'GUTIERREZ','Esteban'),(830,'VAN DER GARDE','Giedo'),(831,'ERICSSON','Marcus'),(832,'KVYAT','Daniil'),(833,'LOTTERER','Andre'),(834,'MAGNUSSEN','Kevin'),(835,'STEVENS','Will'); /*!40000 ALTER TABLE `alldrivers` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `drivers` -- DROP TABLE IF EXISTS `drivers`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `drivers` ( `d_id` int(4) NOT NULL AUTO_INCREMENT, `d_lname` varchar(20) NOT NULL DEFAULT '', `d_fname` varchar(20) NOT NULL DEFAULT '', `d_currseason` int(1) NOT NULL DEFAULT '0', `d_miod` int(3) NOT NULL DEFAULT '0', `d_fa_id` int(3) NOT NULL DEFAULT '0', PRIMARY KEY (`d_id`) ) ENGINE=MyISAM AUTO_INCREMENT=52 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `drivers` -- LOCK TABLES `drivers` WRITE; /*!40000 ALTER TABLE `drivers` DISABLE KEYS */; INSERT INTO `drivers` VALUES (1,'VETTEL','Sebastian',1,30,7),(2,'RICCIARDO','Daniel',1,18,7),(3,'ROSBERG','Nico',1,26,11),(4,'HAMILTON','Lewis',1,28,11),(5,'ALONSO','Fernando',1,29,1),(6,'RAIKKONEN','Kimi',1,27,1),(7,'GROSJEAN','Romain',1,25,18),(8,'MALDONADO','Pastor',1,14,18),(9,'BUTTON','Jenson',1,23,2),(10,'MAGNUSSEN','Kevin',1,9,2),(11,'HUELKENBERG','Nico',1,22,14),(12,'PEREZ','Sergio',1,20,14),(13,'SUTIL','Adrian',1,19,12),(14,'GUTIERREZ','Esteban',1,16,12),(15,'VERGNE','Jean-Eric',1,17,22),(16,'KVYAT','Daniil',1,10,22),(17,'MASSA','Felipe',1,24,23),(18,'BOTTAS','Valtteri',1,15,23),(19,'BIANCHI','Jules',1,13,24),(20,'CHILTON','Max',1,12,24),(21,'KOBAYASHI','Kamui',1,21,20),(22,'ERICSSON','Marcus',1,11,20),(23,'BUEMI','Sebastien',0,0,0),(24,'FELIX DA COSTA','Antonio',0,0,0),(25,'DAVIDSON','Anthony',0,0,0),(26,'HARTLEY','Brandon',0,0,0),(27,'BIRD','Sam',0,0,0),(28,'DE LA ROSA','Pedro',0,0,0),(29,'GENE','Marc',0,0,0),(30,'RIGON','Davide',0,0,0),(31,'BERTOLINI','Andrea',0,0,0),(32,'D\'AMBROSIO','Jerome',0,0,0),(33,'VALSECCHI','Davide',0,0,0),(34,'PROST','Nicolas',0,0,0),(35,'PIC','Charles',0,0,0),(36,'PAFFETT','Gary',0,0,0),(37,'TURVEY','Oliver',0,0,0),(38,'VANDOORNE','Stoffel',0,0,0),(39,'JUNCADELLA','Daniel',0,0,0),(40,'SIROTKIN','Sergey',0,0,0),(41,'DE SILVESTRO','Simona',0,0,0),(42,'ROSSITER','James',0,0,0),(43,'VAN DER GARDE','Giedo',0,0,0),(44,'GONZALEZ','Rodolfo',0,0,0),(45,'WOLFF','Susie',0,0,0),(46,'NASR','Felipe',0,0,0),(47,'FRIJNS','Robin',0,0,0),(48,'ROSSI','Alexander',0,0,0),(49,'MA','Qing-Hua',0,0,0),(50,'LOTTERER','Andre',1,0,20),(51,'STEVENS','Will',1,0,20); /*!40000 ALTER TABLE `drivers` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `events` -- DROP TABLE IF EXISTS `events`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `events` ( `e_id` int(2) NOT NULL AUTO_INCREMENT, `e_type` varchar(20) NOT NULL DEFAULT '', PRIMARY KEY (`e_id`) ) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `events` -- LOCK TABLES `events` WRITE; /*!40000 ALTER TABLE `events` DISABLE KEYS */; INSERT INTO `events` VALUES (1,'QUALIFYING'),(2,'RACE'); /*!40000 ALTER TABLE `events` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `fflassets` -- DROP TABLE IF EXISTS `fflassets`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `fflassets` ( `fa_id` int(4) NOT NULL AUTO_INCREMENT, `fa_currseason` int(1) NOT NULL DEFAULT '0', `fa_chassis` varchar(30) NOT NULL DEFAULT '', `fa_mioc` int(3) NOT NULL DEFAULT '0', `fa_engine` varchar(30) NOT NULL DEFAULT '', `fa_mioe` int(3) NOT NULL DEFAULT '0', PRIMARY KEY (`fa_id`) ) ENGINE=MyISAM AUTO_INCREMENT=25 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `fflassets` -- LOCK TABLES `fflassets` WRITE; /*!40000 ALTER TABLE `fflassets` DISABLE KEYS */; INSERT INTO `fflassets` VALUES (1,1,'Ferrari',28,'Ferrari (Ferrari)',26),(2,1,'McLaren',26,'Mercedes (McLaren)',29),(3,0,'BMW Sauber',0,'BMW (BMW Sauber)',0),(4,0,'Renault',0,'Renault (Renault)',0),(5,0,'Toyota',0,'Toyota (Toyota)',0),(6,0,'Toro Rosso',0,'Ferrari (Toro Rosso)',0),(7,1,'Red Bull',30,'Renault (Red Bull)',22),(8,0,'Williams',0,'Toyota (Williams)',0),(9,0,'Brawn',0,'Mercedes (Brawn)',0),(10,0,'Force India',0,'Ferrari (Force India)',0),(11,1,'Mercedes GP',29,'Mercedes (Mercedes GP)',30),(12,1,'Sauber',24,'Ferrari (Sauber)',25),(13,0,'Williams',0,'Cosworth (Williams)',0),(14,1,'Force India',25,'Mercedes (Force India)',28),(15,0,'Lotus',0,'Cosworth (Lotus)',0),(16,0,'HRT',0,'Cosworth (HRT)',0),(17,0,'Virgin',0,'Cosworth (Virgin)',0),(18,1,'Lotus',27,'Renault (Lotus)',23),(19,0,'Williams',0,'Renault (Williams)',0),(20,1,'Caterham',20,'Renault (Caterham)',20),(21,0,'Marussia',0,'Cosworth (Marussia)',0),(22,1,'Toro Rosso',23,'Renault (Toro Rosso)',21),(23,1,'Williams',22,'Mercedes (Williams)',27),(24,1,'Marussia',21,'Ferrari (Marussia)',24); /*!40000 ALTER TABLE `fflassets` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `fflpoints` -- DROP TABLE IF EXISTS `fflpoints`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `fflpoints` ( `fp_u_id` int(4) NOT NULL DEFAULT '0', `fp_g_id` int(4) NOT NULL DEFAULT '0', `fp_points` decimal(3,1) NOT NULL DEFAULT '0.0' ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `fflpoints` -- LOCK TABLES `fflpoints` WRITE; /*!40000 ALTER TABLE `fflpoints` DISABLE KEYS */; INSERT INTO `fflpoints` VALUES (9,2,'75.0'),(10,2,'50.0'),(12,2,'59.0'),(20,2,'75.0'),(1,2,'44.0'),(1,1,'36.0'),(20,1,'43.0'),(12,1,'33.0'),(10,1,'33.0'),(9,1,'86.0'),(1,3,'31.0'),(20,3,'71.0'),(12,3,'64.0'),(10,3,'45.0'),(9,3,'64.0'),(1,4,'51.0'),(20,4,'75.0'),(12,4,'70.0'),(10,4,'47.0'),(9,4,'80.0'),(1,5,'53.0'),(20,5,'82.0'),(12,5,'76.0'),(10,5,'52.0'),(9,5,'75.0'),(1,6,'28.0'),(20,6,'59.0'),(12,6,'58.0'),(10,6,'42.0'),(9,6,'81.0'),(1,7,'66.0'),(20,7,'75.0'),(12,7,'59.0'),(10,7,'54.0'),(9,7,'47.0'),(1,8,'21.0'),(20,8,'53.0'),(12,8,'48.0'),(10,8,'28.0'),(9,8,'85.0'),(1,9,'49.0'),(20,9,'66.0'),(12,9,'52.0'),(10,9,'68.0'),(9,9,'39.0'),(1,10,'44.0'),(20,10,'74.0'),(12,10,'60.0'),(10,10,'41.0'),(9,10,'77.0'),(1,11,'63.0'),(20,11,'64.0'),(12,11,'66.0'),(10,11,'47.0'),(9,11,'65.0'),(1,12,'63.0'),(20,12,'63.0'),(12,12,'67.0'),(10,12,'43.0'),(9,12,'54.0'),(1,13,'29.0'),(20,13,'70.0'),(12,13,'63.0'),(10,13,'48.0'),(9,13,'64.0'),(1,14,'68.0'),(20,14,'77.0'),(12,14,'62.0'),(10,14,'59.0'),(9,14,'42.0'),(1,15,'42.0'),(20,15,'85.0'),(12,15,'70.0'),(10,15,'62.0'),(9,15,'61.0'),(1,16,'34.0'),(20,16,'67.0'),(12,16,'55.0'),(10,16,'57.0'),(9,16,'81.0'),(1,17,'39.0'),(20,17,'74.0'),(12,17,'64.0'),(10,17,'52.0'),(9,17,'73.0'),(1,18,'36.0'),(20,18,'65.0'),(12,18,'59.0'),(10,18,'42.0'),(9,18,'84.0'),(1,19,'46.0'),(20,19,'90.0'),(12,19,'84.0'),(10,19,'99.9'),(9,19,'56.0'); /*!40000 ALTER TABLE `fflpoints` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `fflresults` -- DROP TABLE IF EXISTS `fflresults`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `fflresults` ( `fr_season` int(4) NOT NULL DEFAULT '0', `fr_u_id` int(4) NOT NULL DEFAULT '0', `fr_ft_a_id_d1` int(4) NOT NULL DEFAULT '0', `fr_ft_a_id_d2` int(4) NOT NULL DEFAULT '0', `fr_fa_id_chassis` int(4) NOT NULL DEFAULT '0', `fr_fa_id_engine` int(4) NOT NULL DEFAULT '0', `fr_totalpoints` decimal(5,1) DEFAULT '0.0', PRIMARY KEY (`fr_season`,`fr_u_id`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `fflresults` -- LOCK TABLES `fflresults` WRITE; /*!40000 ALTER TABLE `fflresults` DISABLE KEYS */; INSERT INTO `fflresults` VALUES (2009,0,128,762,9,9,'523.0'),(2009,1,746,762,8,7,'304.5'),(2009,2,15,251,9,1,'276.0'),(2009,3,49,303,9,1,'343.0'),(2009,6,484,128,9,6,'297.0'),(2009,9,602,128,5,7,'356.0'),(2009,10,334,128,8,9,'350.5'),(2009,11,746,128,7,1,'351.0'),(2009,12,762,128,9,1,'421.0'),(2010,0,15,713,7,7,'1295.0'),(2010,1,334,411,11,7,'984.0'),(2010,4,484,762,17,7,'898.0'),(2010,6,484,713,7,6,'702.0'),(2010,9,816,15,11,2,'942.0'),(2010,10,417,303,2,7,'1088.0'),(2010,11,818,15,1,1,'1044.0'),(2010,12,15,816,11,7,'986.0'),(2010,13,49,818,1,6,'456.0'),(2011,6,713,348,2,7,'1223.0'),(2011,1,632,822,1,7,'1128.0'),(2011,12,667,820,7,1,'1128.0'),(2011,10,484,820,7,2,'1292.0'),(2011,0,128,820,7,7,'1597.0'),(2012,1,602,816,2,7,'1108.0'),(2012,12,15,320,2,7,'1212.0'),(2012,6,411,816,7,1,'983.0'),(2012,9,667,825,7,2,'903.0'),(2012,10,762,825,2,7,'1135.0'),(2012,2,762,394,18,7,'1044.0'),(2012,7,762,818,18,18,'918.0'),(2012,0,15,320,7,7,'1294.0'),(2013,1,762,828,1,7,'1347.0'),(2013,20,602,829,1,7,'1139.0'),(2013,12,602,829,1,7,'1139.0'),(2013,10,762,830,2,7,'1115.0'),(2013,18,15,826,19,1,'601.0'),(2013,0,15,828,7,7,'1434.0'),(2014,1,762,834,1,7,'843.0'),(2014,20,762,834,11,7,'1328.0'),(2014,12,602,832,11,7,'1169.0'),(2014,10,334,821,2,7,'972.0'),(2014,9,632,834,11,1,'1289.0'),(2014,0,824,834,11,11,'1695.0'); /*!40000 ALTER TABLE `fflresults` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `fflteams` -- DROP TABLE IF EXISTS `fflteams`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `fflteams` ( `ft_u_id` int(4) NOT NULL DEFAULT '0', `ft_d_id_d1` int(4) NOT NULL DEFAULT '0', `ft_d_id_d2` int(4) NOT NULL DEFAULT '0', `ft_fa_id_chassis` int(4) NOT NULL DEFAULT '0', `ft_fa_id_engine` int(4) NOT NULL DEFAULT '0', PRIMARY KEY (`ft_u_id`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `fflteams` -- LOCK TABLES `fflteams` WRITE; /*!40000 ALTER TABLE `fflteams` DISABLE KEYS */; INSERT INTO `fflteams` VALUES (1,1,10,1,7),(20,1,10,11,7),(12,6,16,11,7),(10,4,8,2,7),(9,3,10,11,1); /*!40000 ALTER TABLE `fflteams` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `gps` -- DROP TABLE IF EXISTS `gps`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `gps` ( `g_id` int(4) NOT NULL AUTO_INCREMENT, `g_name` varchar(40) NOT NULL DEFAULT '', `g_datetime_q` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `g_datetime_r` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `g_flag` varchar(20) NOT NULL DEFAULT '', `g_circuit` varchar(40) NOT NULL DEFAULT '', PRIMARY KEY (`g_id`) ) ENGINE=MyISAM AUTO_INCREMENT=21 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `gps` -- LOCK TABLES `gps` WRITE; /*!40000 ALTER TABLE `gps` DISABLE KEYS */; INSERT INTO `gps` VALUES (1,'AUSTRALIA (Melbourne)','2014-03-15 07:00:00','2014-03-16 07:00:00','flag_AUSTRALIA.gif','circuit_AUSTRALIA.gif'),(2,'MALAYSIA (Sepang)','2014-03-29 09:00:00','2014-03-30 10:00:00','flag_MALAYSIA.gif','circuit_MALAYSIA.gif'),(3,'BAHRAIN (Sakhir)','2014-04-05 17:00:00','2014-04-06 17:00:00','flag_BAHRAIN.gif','circuit_BAHRAIN.gif'),(4,'CHINA (Shanghai)','2014-04-19 08:00:00','2014-04-20 09:00:00','flag_CHINA.gif','circuit_CHINA.gif'),(5,'SPAIN (Barcelona)','2014-05-10 14:00:00','2014-05-11 14:00:00','flag_SPAIN.gif','circuit_SPAIN_(Barcelona).gif'),(6,'MONACO (Monte Carlo)','2014-05-24 14:00:00','2014-05-25 14:00:00','flag_MONACO.gif','circuit_MONACO.gif'),(7,'CANADA (Montreal)','2014-06-07 19:00:00','2014-06-08 20:00:00','flag_CANADA.gif','circuit_CANADA.gif'),(8,'AUSTRIA (Spielberg)','2014-06-21 14:00:00','2014-06-22 14:00:00','flag_AUSTRIA.gif','circuit_AUSTRIA.gif'),(9,'GREAT BRITAIN (Silverstone)','2014-07-05 14:00:00','2014-07-06 14:00:00','flag_UK.gif','circuit_UK.gif'),(10,'GERMANY (Hockenheim)','2014-07-19 14:00:00','2014-07-20 14:00:00','flag_GERMANY.gif','circuit_GERMANY_(Hockenheim).gif'),(11,'HUNGARY (Budapest)','2014-07-26 14:00:00','2014-07-27 14:00:00','flag_HUNGARY.gif','circuit_HUNGARY.gif'),(12,'BELGIUM (Spa)','2014-08-23 14:00:00','2014-08-24 14:00:00','flag_BELGIUM.gif','circuit_BELGIUM.gif'),(13,'ITALY (Monza)','2014-09-06 14:00:00','2014-09-07 14:00:00','flag_ITALY.gif','circuit_ITALY.gif'),(14,'SINGAPORE (Singapore)','2014-09-20 15:00:00','2014-09-21 14:00:00','flag_SINGAPORE.gif','circuit_SINGAPORE.gif'),(15,'JAPAN (Suzuka)','2014-10-04 07:00:00','2014-10-05 08:00:00','flag_JAPAN.gif','circuit_JAPAN_(Suzuka).gif'),(16,'RUSSIA (Sochi)','2014-10-11 13:00:00','2014-10-12 13:00:00','flag_RUSSIA.gif','circuit_RUSSIA.gif'),(17,'USA (Austin)','2014-11-01 19:00:00','2014-11-02 21:00:00','flag_USA.gif','circuit_USA_(Austin).gif'),(18,'BRAZIL (Sao Paulo)','2014-11-08 17:00:00','2014-11-09 17:00:00','flag_BRAZIL.gif','circuit_BRAZIL.gif'),(19,'UNITED ARAB EMIRATES (Abu Dhabi)','2014-11-22 14:00:00','2014-11-23 14:00:00','flag_UAE.gif','circuit_UAE.gif'); /*!40000 ALTER TABLE `gps` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `results` -- DROP TABLE IF EXISTS `results`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `results` ( `r_g_id` int(4) NOT NULL DEFAULT '0', `r_e_id` int(2) NOT NULL DEFAULT '0', `r_d_id_p1` int(4) NOT NULL DEFAULT '0', `r_d_id_p2` int(4) NOT NULL DEFAULT '0', `r_d_id_p3` int(4) NOT NULL DEFAULT '0', `r_d_id_p4` int(4) NOT NULL DEFAULT '0', `r_d_id_p5` int(4) NOT NULL DEFAULT '0', `r_d_id_p6` int(4) NOT NULL DEFAULT '0', `r_d_id_p7` int(4) NOT NULL DEFAULT '0', `r_d_id_p8` int(4) NOT NULL DEFAULT '0', `r_d_id_p9` int(4) NOT NULL DEFAULT '0', `r_d_id_p10` int(4) NOT NULL DEFAULT '0', `r_fl` int(4) NOT NULL DEFAULT '0', `r_firstout` varchar(20) NOT NULL DEFAULT '0', `r_bestcup` varchar(20) NOT NULL DEFAULT '0', `r_sc` int(2) NOT NULL DEFAULT '-1', `r_hp` int(1) NOT NULL DEFAULT '0', PRIMARY KEY (`r_g_id`,`r_e_id`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `results` -- LOCK TABLES `results` WRITE; /*!40000 ALTER TABLE `results` DISABLE KEYS */; INSERT INTO `results` VALUES (1,1,4,2,3,0,0,0,0,0,0,0,0,'0','0',-1,0),(1,2,3,10,9,5,18,11,6,15,16,12,3,'21,17','18',1,0),(2,1,4,1,3,0,0,0,0,0,0,0,0,'0','0',-1,0),(2,2,4,3,1,5,11,9,17,18,10,16,4,'12','18',0,0),(3,1,3,4,2,0,0,0,0,0,0,0,0,'0','0',-1,0),(3,2,4,3,12,2,11,1,17,18,5,6,3,'13','2',1,0),(4,1,4,2,1,0,0,0,0,0,0,0,0,'0','0',-1,0),(4,2,4,3,5,2,1,11,18,6,12,16,3,'13','8',0,0),(5,1,4,3,2,0,0,0,0,0,0,0,0,'0','0',-1,0),(5,2,4,3,2,1,18,5,6,7,12,11,1,'15','1',0,0),(6,1,3,4,2,0,0,0,0,0,0,0,0,'0','0',-1,0),(6,2,3,4,2,5,11,9,17,7,19,10,6,'8','19',1,0),(7,1,3,4,1,0,0,0,0,0,0,0,0,'0','0',-1,0),(7,2,2,3,1,9,11,5,18,15,10,6,17,'19,20','14',1,0),(8,1,17,18,3,0,0,0,0,0,0,0,0,'0','0',-1,0),(8,2,3,4,18,17,5,12,10,2,11,6,12,'16','12',0,0),(9,1,3,1,9,0,0,0,0,0,0,0,0,'0','0',-1,0),(9,2,4,18,2,9,1,5,10,11,16,15,4,'6','18',1,0),(10,1,3,18,17,0,0,0,0,0,0,0,0,'0','0',-1,0),(10,2,3,18,4,1,5,2,11,9,10,12,4,'17','4',1,0),(11,1,3,1,18,0,0,0,0,0,0,0,0,'0','0',-1,0),(11,2,2,5,4,3,17,6,1,18,15,9,3,'22','4',1,0),(12,1,3,4,1,0,0,0,0,0,0,0,0,'0','0',-1,0),(12,2,2,3,18,6,1,9,5,12,16,11,3,'50','11',0,0),(13,1,4,3,18,0,0,0,0,0,0,0,0,'0','0',-1,0),(13,2,4,3,17,18,2,1,12,9,6,10,4,'20','16',0,0),(14,1,4,3,2,0,0,0,0,0,0,0,0,'0','0',-1,0),(14,2,4,1,2,5,17,15,12,6,11,10,4,'21','12',1,0),(15,1,3,4,18,0,0,0,0,0,0,0,0,'0','0',-1,0),(15,2,4,3,1,2,9,18,17,11,15,12,4,'5','15',1,0),(16,1,4,3,18,0,0,0,0,0,0,0,0,'0','0',-1,0),(16,2,4,3,18,9,10,5,2,1,6,12,18,'20','17',0,0),(17,1,3,4,18,0,0,0,0,0,0,0,0,'0','0',-1,0),(17,2,4,3,2,17,18,5,1,10,15,8,1,'13','1',1,0),(18,1,3,4,17,0,0,0,0,0,0,0,0,'0','0',-1,0),(18,2,3,4,17,9,1,5,6,11,10,18,4,'2','16',0,0),(19,1,3,4,18,0,0,0,0,0,0,0,0,'0','0',-1,0),(19,2,4,17,18,2,9,11,12,1,5,6,2,'16','2',0,0); /*!40000 ALTER TABLE `results` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tips` -- DROP TABLE IF EXISTS `tips`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `tips` ( `t_u_id` int(4) NOT NULL DEFAULT '0', `t_g_id` int(4) NOT NULL DEFAULT '0', `t_e_id` int(2) NOT NULL DEFAULT '0', `t_d_id_p1` int(4) NOT NULL DEFAULT '0', `t_d_id_p2` int(4) NOT NULL DEFAULT '0', `t_d_id_p3` int(4) NOT NULL DEFAULT '0', `t_fl` int(4) NOT NULL DEFAULT '0', `t_firstout` int(4) NOT NULL DEFAULT '0', `t_bestcup` int(4) NOT NULL DEFAULT '0', `t_sc` int(2) NOT NULL DEFAULT '0', `t_timestamp` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `t_score` int(4) NOT NULL DEFAULT '0', PRIMARY KEY (`t_u_id`,`t_g_id`,`t_e_id`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tips` -- LOCK TABLES `tips` WRITE; /*!40000 ALTER TABLE `tips` DISABLE KEYS */; INSERT INTO `tips` VALUES (7,1,2,3,5,9,4,7,17,1,'2014-03-16 06:34:17',5),(7,1,1,3,4,9,0,0,0,0,'2014-03-15 06:31:55',2),(21,1,2,5,9,3,6,9999,6,-1,'2014-03-14 09:25:46',2),(21,1,1,4,3,5,0,0,0,0,'2014-03-14 09:25:06',3),(12,1,1,3,4,1,0,0,0,0,'2014-03-14 11:18:25',2),(10,1,1,4,3,1,0,0,0,0,'2014-03-14 20:39:38',3),(1,1,1,4,3,5,0,0,0,0,'2014-03-14 21:02:08',3),(4,1,1,5,9,3,0,0,0,0,'2014-03-15 06:16:17',2),(2,1,1,3,4,5,0,0,0,0,'2014-03-15 06:52:39',2),(9,1,1,3,4,5,0,0,0,0,'2014-03-15 06:50:37',2),(18,1,1,3,5,4,0,0,0,0,'2014-03-15 06:59:35',2),(2,1,2,4,3,5,4,18,1,1,'2014-03-15 08:08:27',2),(12,1,2,4,3,5,4,8,7,-1,'2014-03-15 14:07:47',1),(4,1,2,4,3,2,5,24,1,1,'2014-03-15 17:21:09',2),(10,1,2,4,3,2,4,16,1,1,'2014-03-15 22:05:28',2),(1,1,2,4,3,5,4,8,18,1,'2014-03-15 22:19:24',4),(9,1,2,4,5,3,2,7,12,1,'2014-03-16 06:16:50',2),(18,1,2,4,3,5,4,8,6,0,'2014-03-16 06:58:50',0),(21,2,1,4,3,1,0,0,0,0,'2014-03-28 10:14:51',4),(21,2,2,1,3,9,3,17,6,-1,'2014-03-28 10:15:34',3),(1,2,1,4,3,1,0,0,0,0,'2014-03-28 18:30:21',4),(12,2,1,3,4,6,0,0,0,0,'2014-03-28 19:15:39',2),(10,2,1,3,4,1,0,0,0,0,'2014-03-28 22:26:29',3),(7,2,1,3,4,6,0,0,0,0,'2014-03-29 08:25:37',2),(4,2,1,3,4,1,0,0,0,0,'2014-03-29 08:34:45',3),(2,2,1,3,4,5,0,0,0,0,'2014-03-29 08:45:33',2),(18,2,1,3,4,6,0,0,0,0,'2014-03-29 08:53:47',2),(9,2,1,3,4,6,0,0,0,0,'2014-03-29 08:57:13',2),(12,2,2,4,3,1,4,8,12,1,'2014-03-29 17:32:44',6),(1,2,2,4,3,1,4,8,9,1,'2014-03-29 22:27:14',6),(7,2,2,4,3,1,3,7,9,-1,'2014-03-29 23:55:41',6),(2,2,2,4,3,1,4,22,18,0,'2014-03-30 09:30:10',10),(10,2,2,4,3,1,3,22,18,1,'2014-03-30 09:27:27',7),(18,2,2,4,3,5,4,20,7,1,'2014-03-30 09:30:21',4),(9,2,2,3,4,5,3,21,9,0,'2014-03-30 09:40:01',3),(4,2,2,3,1,6,6,22,9,1,'2014-03-30 09:58:09',1),(12,3,1,4,3,5,0,0,0,0,'2014-04-04 20:46:15',2),(7,3,1,4,3,5,0,0,0,0,'2014-04-04 21:15:18',2),(21,3,1,4,3,1,0,0,0,0,'2014-04-05 08:44:10',2),(21,3,2,4,3,1,1,17,6,0,'2014-04-05 08:45:22',3),(1,3,1,4,3,18,0,0,0,0,'2014-04-05 15:14:52',2),(10,3,1,4,3,5,0,0,0,0,'2014-04-05 15:16:46',2),(18,3,1,4,3,5,0,0,0,0,'2014-04-05 16:39:45',2),(9,3,1,4,3,5,0,0,0,0,'2014-04-05 16:53:47',2),(2,3,1,4,3,5,0,0,0,0,'2014-04-05 16:53:58',2),(12,3,2,4,3,6,4,20,2,-1,'2014-04-05 21:52:42',6),(1,3,2,4,3,9,3,8,13,0,'2014-04-06 13:06:37',4),(7,3,2,3,4,9,4,7,2,-1,'2014-04-06 16:59:41',4),(10,3,2,3,4,18,4,20,2,-1,'2014-04-06 16:00:24',4),(2,3,2,4,3,9,4,7,2,0,'2014-04-06 16:01:17',5),(18,3,2,3,4,18,3,19,5,0,'2014-04-06 16:26:52',2),(9,3,2,3,4,9,3,7,1,0,'2014-04-06 16:43:07',2),(21,4,1,4,3,5,0,0,0,0,'2014-04-18 16:07:36',2),(21,4,2,4,3,9,4,13,5,0,'2014-04-18 16:09:27',8),(12,4,1,4,3,5,0,0,0,0,'2014-04-18 18:41:54',2),(10,4,1,4,3,5,0,0,0,0,'2014-04-18 22:19:35',2),(1,4,1,4,3,5,0,0,0,0,'2014-04-18 22:25:31',2),(7,4,1,3,4,5,0,0,0,0,'2014-04-18 23:52:00',1),(2,4,1,4,3,2,0,0,0,0,'2014-04-19 07:50:03',3),(18,4,1,4,5,3,0,0,0,0,'2014-04-19 07:52:20',2),(9,4,1,3,4,2,0,0,0,0,'2014-04-19 07:55:02',2),(1,4,2,4,3,1,4,15,8,0,'2014-04-19 19:40:43',7),(10,4,2,4,3,2,4,19,12,-1,'2014-04-19 21:21:16',4),(12,4,2,4,3,1,4,20,12,-1,'2014-04-19 21:44:10',4),(7,4,2,4,3,2,4,13,12,1,'2014-04-19 22:57:39',6),(4,4,2,4,1,3,1,6,19,1,'2014-04-20 04:27:37',2),(2,4,2,4,3,2,4,17,12,0,'2014-04-20 08:53:20',5),(9,4,2,4,3,5,3,21,12,0,'2014-04-20 08:25:47',8),(18,4,2,4,2,1,4,21,9,0,'2014-04-20 08:50:04',3),(12,5,1,4,3,2,0,0,0,0,'2014-05-09 16:58:01',6),(7,5,1,4,3,2,0,0,0,0,'2014-05-09 19:44:58',6),(7,5,2,3,4,2,4,12,1,0,'2014-05-11 08:54:30',7),(21,5,1,3,4,5,0,0,0,0,'2014-05-10 12:05:27',2),(21,5,2,4,3,5,4,13,6,0,'2014-05-10 12:02:58',5),(4,5,1,4,6,1,0,0,0,0,'2014-05-10 05:04:18',2),(18,5,1,3,4,5,0,0,0,0,'2014-05-10 12:22:51',2),(1,5,1,4,3,2,0,0,0,0,'2014-05-10 12:34:50',6),(10,5,1,4,3,2,0,0,0,0,'2014-05-10 12:34:49',6),(2,5,1,4,3,5,0,0,0,0,'2014-05-10 12:41:26',4),(9,5,1,4,3,5,0,0,0,0,'2014-05-10 13:47:32',4),(12,5,2,4,3,2,4,20,1,-1,'2014-05-10 18:25:53',8),(4,5,2,3,4,2,3,22,1,1,'2014-05-11 09:41:36',5),(1,5,2,4,3,2,3,15,1,0,'2014-05-11 10:17:20',12),(10,5,2,4,2,3,4,10,15,0,'2014-05-11 10:45:45',5),(9,5,2,4,3,18,3,1,8,0,'2014-05-11 13:03:15',5),(18,5,2,4,3,2,4,17,1,0,'2014-05-11 13:28:13',9),(2,5,2,4,3,2,4,35,8,0,'2014-05-11 13:51:33',7),(21,6,1,3,4,1,0,0,0,0,'2014-05-23 07:29:21',4),(21,6,2,3,4,1,4,17,5,1,'2014-05-23 07:30:00',5),(12,6,1,3,4,5,0,0,0,0,'2014-05-23 21:52:07',4),(7,6,1,4,3,2,0,0,0,0,'2014-05-24 04:25:45',4),(7,6,2,3,2,5,3,20,5,1,'2014-05-24 19:52:36',4),(18,6,1,4,3,2,0,0,0,0,'2014-05-24 12:52:15',4),(2,6,1,4,2,3,0,0,0,0,'2014-05-24 13:14:27',3),(1,6,1,4,3,2,0,0,0,0,'2014-05-24 13:19:33',4),(10,6,1,4,3,2,0,0,0,0,'2014-05-24 13:21:36',4),(9,6,1,4,3,2,0,0,0,0,'2014-05-24 13:52:07',4),(12,6,2,3,4,2,18,21,18,-1,'2014-05-24 15:25:33',6),(1,6,2,3,4,2,2,16,17,1,'2014-05-24 19:19:22',7),(9,6,2,3,4,1,4,7,18,1,'2014-05-25 12:50:32',5),(10,6,2,3,4,1,3,13,7,1,'2014-05-25 13:07:15',5),(18,6,2,4,3,2,4,17,18,1,'2014-05-25 13:40:17',5),(2,6,2,3,4,2,4,16,46,1,'2014-05-25 13:54:00',7),(12,7,1,4,3,1,0,0,0,0,'2014-06-07 08:57:33',4),(21,7,1,4,3,1,0,0,0,0,'2014-06-07 10:37:06',4),(21,7,2,4,3,1,3,14,4,0,'2014-06-07 10:37:56',3),(1,7,1,4,3,2,0,0,0,0,'2014-06-07 18:50:12',2),(9,7,1,4,3,1,0,0,0,0,'2014-06-07 15:11:54',4),(10,7,1,4,3,1,0,0,0,0,'2014-06-07 15:52:26',4),(18,7,1,4,3,1,0,0,0,0,'2014-06-07 18:35:43',4),(12,7,2,4,3,18,18,20,7,1,'2014-06-07 20:56:33',6),(1,7,2,3,4,2,4,8,14,-1,'2014-06-07 23:14:13',4),(10,7,2,3,4,1,3,22,21,1,'2014-06-08 17:36:41',4),(7,7,2,4,3,17,3,7,6,1,'2014-06-08 17:57:25',3),(18,7,2,3,4,1,3,21,6,1,'2014-06-08 19:46:13',4),(2,7,2,4,3,1,4,18,9,0,'2014-06-08 19:59:44',3),(7,8,1,4,3,5,0,0,0,0,'2014-06-20 20:34:42',1),(12,8,1,4,3,17,0,0,0,0,'2014-06-21 09:27:03',2),(21,8,2,4,3,17,4,20,5,0,'2014-06-21 12:55:04',3),(21,8,1,4,3,17,0,0,0,0,'2014-06-21 12:54:42',2),(1,8,1,4,3,17,0,0,0,0,'2014-06-21 12:25:19',2),(10,8,1,3,4,2,0,0,0,0,'2014-06-21 12:27:54',1),(18,8,1,4,3,5,0,0,0,0,'2014-06-21 13:49:05',1),(2,8,1,4,3,2,0,0,0,0,'2014-06-21 13:52:06',1),(12,8,2,3,4,18,4,8,4,0,'2014-06-21 15:33:31',7),(1,8,2,3,2,17,4,13,1,-1,'2014-06-21 21:20:55',2),(7,8,2,3,17,5,3,12,4,1,'2014-06-22 07:25:45',1),(9,8,2,3,18,5,3,1,4,1,'2014-06-22 13:28:01',2),(2,8,2,3,17,5,4,13,4,0,'2014-06-22 13:53:59',3),(18,8,2,3,17,2,4,8,4,0,'2014-06-22 13:58:53',3),(10,8,2,3,17,4,3,22,4,-1,'2014-06-22 13:58:57',3),(7,9,1,3,4,5,0,0,0,0,'2014-07-05 07:58:03',2),(7,9,2,3,9,1,3,35,18,0,'2014-07-06 13:52:17',1),(12,9,1,4,3,2,0,0,0,0,'2014-07-05 09:11:44',1),(21,9,1,4,3,5,0,0,0,0,'2014-07-05 11:15:37',1),(18,9,1,4,3,5,0,0,0,0,'2014-07-05 12:37:38',1),(9,9,1,4,3,1,0,0,0,0,'2014-07-05 13:33:14',2),(1,9,1,4,1,3,0,0,0,0,'2014-07-05 13:42:37',3),(10,9,1,3,4,1,0,0,0,0,'2014-07-05 13:43:22',3),(12,9,2,3,4,1,18,8,18,1,'2014-07-05 15:58:45',4),(1,9,2,3,4,1,4,13,5,0,'2014-07-06 08:43:33',1),(10,9,2,3,1,4,3,20,8,1,'2014-07-06 13:09:59',2),(9,9,2,3,1,4,3,7,5,0,'2014-07-06 13:13:40',0),(21,9,2,4,3,1,4,17,5,0,'2014-07-06 13:31:48',2),(18,9,2,3,4,1,3,17,5,0,'2014-07-06 13:40:40',0),(2,9,2,3,4,1,3,19,5,0,'2014-07-06 13:43:38',0),(21,10,1,3,4,2,0,0,0,0,'2014-07-18 16:51:41',2),(2,10,1,4,3,2,0,0,0,0,'2014-07-19 09:43:21',1),(9,10,1,3,4,5,0,0,0,0,'2014-07-19 12:44:50',2),(18,10,1,3,4,5,0,0,0,0,'2014-07-19 13:15:16',2),(1,10,1,3,4,5,0,0,0,0,'2014-07-19 13:24:22',2),(10,10,1,3,4,18,0,0,0,0,'2014-07-19 13:25:11',3),(12,10,2,3,4,18,4,8,4,0,'2014-07-19 16:13:56',6),(1,10,2,3,18,2,3,13,4,1,'2014-07-19 16:19:37',7),(21,10,2,3,18,2,4,14,4,0,'2014-07-20 13:14:51',6),(10,10,2,3,18,1,3,17,4,-1,'2014-07-20 13:16:24',9),(7,10,2,3,18,2,3,15,4,-1,'2014-07-20 13:50:09',6),(9,10,2,3,18,4,4,13,4,0,'2014-07-20 13:57:38',8),(18,10,2,3,4,5,4,14,4,1,'2014-07-20 13:58:03',7),(21,11,1,4,3,1,0,0,0,0,'2014-07-25 17:13:59',2),(12,11,1,4,3,1,0,0,0,0,'2014-07-25 18:48:19',2),(18,11,1,4,3,1,0,0,0,0,'2014-07-26 12:12:04',2),(10,11,1,4,3,1,0,0,0,0,'2014-07-26 12:23:32',2),(9,11,1,4,3,1,0,0,0,0,'2014-07-26 12:44:00',2),(1,11,1,4,3,1,0,0,0,0,'2014-07-26 13:05:55',2),(7,11,1,4,3,1,0,0,0,0,'2014-07-26 13:34:27',2),(12,11,2,3,18,4,3,6,4,1,'2014-07-26 15:32:35',6),(1,11,2,3,1,5,4,8,4,1,'2014-07-27 12:49:17',4),(21,11,2,3,1,2,4,17,4,0,'2014-07-26 20:49:21',2),(7,11,2,3,18,1,3,16,4,1,'2014-07-27 11:09:51',4),(10,11,2,3,1,2,4,16,4,1,'2014-07-27 13:17:43',4),(9,11,2,3,2,4,4,1,4,1,'2014-07-27 13:26:03',6),(18,11,2,3,1,18,4,17,4,0,'2014-07-27 13:59:35',1),(12,12,1,4,3,18,0,0,0,0,'2014-08-22 20:58:17',2),(1,12,1,3,4,18,0,0,0,0,'2014-08-23 13:24:15',4),(10,12,1,3,4,5,0,0,0,0,'2014-08-23 13:24:51',4),(9,12,1,3,18,4,0,0,0,0,'2014-08-23 13:47:28',3),(21,12,1,4,3,18,0,0,0,0,'2014-08-23 13:48:03',2),(18,12,1,4,3,18,0,0,0,0,'2014-08-23 13:53:19',2),(12,12,2,3,4,18,3,8,13,1,'2014-08-23 20:16:19',3),(1,12,2,3,4,2,4,16,11,1,'2014-08-24 06:47:01',3),(10,12,2,3,4,1,4,17,11,1,'2014-08-24 11:44:47',2),(21,12,2,3,18,2,3,14,11,0,'2014-08-24 13:39:31',7),(9,12,2,3,4,2,4,8,11,-1,'2014-08-24 13:43:45',4),(2,12,2,3,4,1,3,6,13,0,'2014-08-24 13:58:21',3),(18,12,2,3,4,5,4,50,11,1,'2014-08-24 13:58:29',5),(12,13,1,3,4,5,0,0,0,0,'2014-09-05 23:11:43',2),(21,13,1,4,3,5,0,0,0,0,'2014-09-06 13:13:48',4),(1,13,1,4,3,5,0,0,0,0,'2014-09-06 11:50:46',4),(10,13,1,3,4,18,0,0,0,0,'2014-09-06 11:48:49',4),(18,13,1,4,3,5,0,0,0,0,'2014-09-06 13:59:27',4),(12,13,2,4,3,18,4,8,16,0,'2014-09-06 17:18:30',8),(1,13,2,4,3,18,4,17,16,0,'2014-09-07 02:09:37',8),(10,13,2,4,3,18,4,17,11,0,'2014-09-07 10:22:48',6),(21,13,2,3,4,10,4,21,6,1,'2014-09-07 12:41:29',2),(9,13,2,4,18,10,4,3,16,-1,'2014-09-07 13:56:14',5),(18,13,2,4,3,18,4,11,8,0,'2014-09-07 13:57:58',6),(21,14,1,4,5,3,0,0,0,0,'2014-09-19 20:24:57',3),(12,14,1,4,3,5,0,0,0,0,'2014-09-19 20:36:12',4),(9,14,1,4,5,2,0,0,0,0,'2014-09-20 12:16:30',4),(10,14,1,4,3,5,0,0,0,0,'2014-09-20 13:43:27',4),(1,14,1,4,2,3,0,0,0,0,'2014-09-20 14:08:22',4),(18,14,1,5,3,2,0,0,0,0,'2014-09-20 14:52:12',4),(12,14,2,3,4,2,3,20,13,1,'2014-09-20 16:22:12',4),(1,14,2,2,4,3,4,7,12,1,'2014-09-21 09:20:31',6),(9,14,2,4,3,1,4,21,11,-1,'2014-09-21 13:21:49',7),(10,14,2,4,2,3,4,17,11,-1,'2014-09-21 13:22:04',4),(18,14,2,4,2,5,4,19,12,1,'2014-09-21 13:51:46',7),(21,15,1,4,3,18,0,0,0,0,'2014-10-03 14:15:54',4),(1,15,1,3,4,18,0,0,0,0,'2014-10-04 06:54:33',6),(10,15,1,4,3,18,0,0,0,0,'2014-10-03 20:52:47',4),(12,15,1,3,4,18,0,0,0,0,'2014-10-03 22:43:26',6),(18,15,1,3,4,5,0,0,0,0,'2014-10-04 06:38:56',4),(2,15,1,4,3,2,0,0,0,0,'2014-10-04 06:54:07',2),(12,15,2,3,4,18,3,8,1,1,'2014-10-04 08:53:57',3),(1,15,2,3,4,18,4,22,15,1,'2014-10-04 22:06:02',6),(10,15,2,3,4,18,3,17,8,1,'2014-10-04 22:15:58',3),(9,15,2,3,4,18,4,20,8,-1,'2014-10-05 07:57:07',3),(18,15,2,3,4,5,3,22,1,1,'2014-10-05 07:57:18',3),(21,16,1,4,3,18,0,0,0,0,'2014-10-11 11:34:31',6),(12,16,1,4,3,17,0,0,0,0,'2014-10-10 17:45:30',4),(1,16,1,4,3,5,0,0,0,0,'2014-10-10 18:46:23',4),(10,16,1,3,4,5,0,0,0,0,'2014-10-10 21:25:03',2),(18,16,1,4,3,18,0,0,0,0,'2014-10-11 11:42:42',6),(12,16,2,4,3,18,17,8,17,1,'2014-10-11 14:31:47',7),(21,16,2,3,4,9,4,20,17,1,'2014-10-12 12:54:28',6),(1,16,2,4,3,18,4,21,8,0,'2014-10-12 11:59:30',7),(10,16,2,3,4,18,3,17,8,0,'2014-10-12 12:05:24',5),(18,16,2,4,3,18,4,17,1,0,'2014-10-12 12:35:00',7),(12,17,1,3,4,2,0,0,0,0,'2014-10-31 23:04:29',4),(21,17,1,4,3,18,0,0,0,0,'2014-11-01 17:24:45',4),(1,17,1,4,3,18,0,0,0,0,'2014-11-01 17:49:07',4),(10,17,1,4,3,5,0,0,0,0,'2014-11-01 17:56:28',2),(18,17,1,4,3,18,0,0,0,0,'2014-11-01 17:57:30',4),(12,17,2,3,4,18,4,7,16,1,'2014-11-02 08:49:19',3),(1,17,2,3,4,18,4,7,1,0,'2014-11-02 09:08:45',3),(10,17,2,3,4,18,3,17,1,1,'2014-11-02 20:13:23',5),(21,17,2,3,18,10,3,14,1,0,'2014-11-02 20:18:28',2),(18,17,2,4,3,18,4,8,1,0,'2014-11-02 20:50:38',5),(1,18,1,3,4,18,0,0,0,0,'2014-11-07 19:43:09',4),(12,18,1,4,3,18,0,0,0,0,'2014-11-07 20:42:30',2),(10,18,1,3,4,2,0,0,0,0,'2014-11-07 21:36:10',4),(18,18,1,3,4,18,0,0,0,0,'2014-11-08 15:50:45',4),(12,18,2,4,3,18,4,6,16,1,'2014-11-09 11:25:16',4),(21,18,2,3,4,9,2,14,5,1,'2014-11-09 05:50:58',3),(1,18,2,4,3,18,4,13,2,1,'2014-11-09 08:36:11',2),(10,18,2,3,4,18,3,17,12,1,'2014-11-09 16:00:25',3),(18,18,2,3,4,18,3,13,2,1,'2014-11-09 16:48:32',3),(21,19,1,4,3,5,0,0,0,0,'2014-11-21 16:16:00',2),(12,19,1,3,4,18,0,0,0,0,'2014-11-21 18:08:12',6),(1,19,1,3,4,1,0,0,0,0,'2014-11-22 13:13:31',4),(10,19,1,3,4,18,0,0,0,0,'2014-11-22 13:17:44',6),(9,19,1,4,3,5,0,0,0,0,'2014-11-22 13:46:29',2),(18,19,1,3,4,17,0,0,0,0,'2014-11-22 13:56:41',4),(12,19,2,3,4,18,18,14,10,0,'2014-11-22 17:02:02',4),(1,19,2,3,18,4,3,51,2,0,'2014-11-23 12:52:34',5),(10,19,2,3,4,18,4,17,1,-1,'2014-11-23 12:35:33',3),(9,19,2,3,4,18,4,51,1,-1,'2014-11-23 13:26:30',3),(21,19,2,3,18,9,3,21,1,1,'2014-11-23 13:50:12',0),(18,19,2,3,4,18,3,8,2,0,'2014-11-23 13:54:36',6); /*!40000 ALTER TABLE `tips` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `users` -- DROP TABLE IF EXISTS `users`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `users` ( `u_id` int(11) NOT NULL AUTO_INCREMENT, `u_name` char(3) NOT NULL DEFAULT '', `u_passcode` varchar(41) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL DEFAULT '', `u_pic` varchar(40) DEFAULT NULL, `u_realname` varchar(40) NOT NULL DEFAULT '', `u_nickname` varchar(20) NOT NULL DEFAULT 'not revealed', `u_email` varchar(50) NOT NULL DEFAULT '', `u_emailreminder` int(1) NOT NULL DEFAULT '0', `u_nationality` varchar(20) NOT NULL DEFAULT 'not revealed', `u_favdriver` int(11) NOT NULL DEFAULT '0', `u_since` year(4) NOT NULL DEFAULT '0000', `u_gtwins` int(3) NOT NULL DEFAULT '0', `u_admin` int(1) NOT NULL DEFAULT '0', PRIMARY KEY (`u_id`) ) ENGINE=MyISAM AUTO_INCREMENT=35 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `users` -- LOCK TABLES `users` WRITE; /*!40000 ALTER TABLE `users` DISABLE KEYS */; INSERT INTO `users` VALUES (1,'MAM','18d022103920e120b2faabf4be68aa8f','pic_MAM.gif','Markus A. Mascelli','MAM','mam@heimam.at',0,'italian',602,2006,2,1),(2,'GUE','78918cecf8926d0cada4c5bc31af87a3','pic_GUE.gif','Guenther Schmidt','GueStar','guenther.schmidt@gmail.com',0,'austrian',15,2006,3,0),(3,'ZEI','8dad7cabce9c511bd4983e8dc96ea5da','pic_ZEI.gif','Christian Zeichmann','Zeichi','christian.zeichmann@kabelnet.at',0,'austrian',0,2007,1,0),(4,'AFG','8ff522cd1e5219541b2e945af0727d2b','pic_AFG.gif','Andrea F. Grohmann','','a.grohmann@gmx.at',0,'austrian',0,2007,0,0),(5,'JIR','8522c2ccfd6fc5d242ed16d168401fad','avatar.jpg','Juergen Iser','','j.iser@gmx.at',0,'austrian',602,2008,0,0),(6,'KAI','e5f4d97a4961dea1184bbbe847b591f3','avatar.jpg','Roman Kailbach','Kailo','kailo@gmx.at',0,'austrian',334,2008,0,0),(7,'WOB','776ad0ef27acc0602c337dc2736f3a97','300ende.jpg','Mhöb Gnagflow','WoB','wboehm@gmail.com',0,'austrian',762,2008,0,0),(8,'REG','776ad0ef27acc0602c337dc2736f3a97','yoshi1.jpg','Regina Boehm','','rboehm@gmail.com',0,'austrian',0,2008,0,0),(9,'ISA','3c4db9561aa2b8530d5c60014dbfbe86','isa_grid_kl_hp_3.jpg','Ildiko Samu-Puehringer','sam','ildikosamu.puehringer@gmail.com',0,'hungarian',667,2008,0,0),(10,'MRO','cda0fd2918d19e20ac871ed79a8d2bb0','pic_MRO.jpg','Martha Rossa','RoMa','rossama@yahoo.com',0,'austrian',334,2008,1,1),(11,'MPU','f9c17117b5b8dbf8cfa83d8057ee1a0b','mpu_grid_tip_blaukl.jpg','Michael Puehringer','','michael.puehringer@lotterien.at',0,'austrian',621,2008,0,0),(12,'RHA','9ced82c0515df69d4e3311f63d40ffa0','avatar.jpg','Robert Haller','','robert.haller@kabsi.at',0,'austrian',0,2008,0,0),(13,'FAN','33c2e20d31b3ae8f4564d7517738eb7d','extremeevil.gif','Georg Juren','Schurl','georg.juren@atos.net',0,'austrian',49,2009,0,0),(14,'MBR','f9c17117b5b8dbf8cfa83d8057ee1a0b','avatar.jpg','Markus Brenner','','m.brenn@gmx.net',0,'austrian',0,2009,0,0),(15,'RSC','d67ee0b6a91696158441100ba2e5a9b0','schicht_roman.jpg','Roman Schicht','','rschicht@yahoo.com',0,'austrian',0,2009,0,0),(16,'FAB','f9c17117b5b8dbf8cfa83d8057ee1a0b','avatar.jpg','Alexander Fabozzi','','alexander.fabozzi@gmx.at',0,'austrian',0,2010,0,0),(17,'MAR','776ad0ef27acc0602c337dc2736f3a97','avatar.jpg','Marina Boehm','','mboehm@gmail.com',0,'austrian',0,2010,0,0),(18,'IRS','8918b74d571421bcc47fc59816bf8fc2','foto_ivan.png','Ivan Rodriguez','','irodriguezs@hotmail.com',0,'spanish',15,2010,1,0),(19,'ALE','2ab3343875e56dc0a15cbb6a98570cf2','avatar.jpg','Alexander Doler','','alexander.doler@atos.net',0,'austrian',0,2012,0,0),(20,'STM','f078ea5db3ca0165e914bb82ea971755','avatar.jpg','Manfred Steinacher','','mst4711@gmx.at',0,'austrian',0,2013,0,0),(21,'MCL','02a8925e820f46c6c89d7a85a1285deb','avatar.jpg','Sasa Petrovic','Ayrton','sasa.petrovic@citrix.com',0,'serbian',676,2014,0,0); /*!40000 ALTER TABLE `users` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `winners` -- DROP TABLE IF EXISTS `winners`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `winners` ( `w_season` int(4) NOT NULL DEFAULT '0', `w_u_id` int(4) NOT NULL DEFAULT '0', PRIMARY KEY (`w_season`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `winners` -- LOCK TABLES `winners` WRITE; /*!40000 ALTER TABLE `winners` DISABLE KEYS */; INSERT INTO `winners` VALUES (2006,2),(2007,2),(2008,10),(2009,1),(2010,3),(2011,1),(2012,18),(2013,2),(2014,1); /*!40000 ALTER TABLE `winners` ENABLE KEYS */; UNLOCK TABLES; -- -- Current Database: `niki_2015` -- CREATE DATABASE /*!32312 IF NOT EXISTS*/ `niki_2015` /*!40100 DEFAULT CHARACTER SET latin1 */; USE `niki_2015`; -- -- Table structure for table `alldrivers` -- DROP TABLE IF EXISTS `alldrivers`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `alldrivers` ( `a_id` int(4) NOT NULL AUTO_INCREMENT, `a_lname` varchar(20) NOT NULL DEFAULT '', `a_fname` varchar(20) NOT NULL DEFAULT '', PRIMARY KEY (`a_id`) ) ENGINE=MyISAM AUTO_INCREMENT=836 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `alldrivers` -- LOCK TABLES `alldrivers` WRITE; /*!40000 ALTER TABLE `alldrivers` DISABLE KEYS */; INSERT INTO `alldrivers` VALUES (1,'ABATE','Carlo'),(2,'ABECASSIS','George'),(3,'ACHESON','Kenny'),(4,'ADAMS','Philippe'),(5,'ADER','Walt'),(6,'ADOLFF','Kurt'),(7,'AGABASHIAN','Fred'),(8,'AHRENS','Kurt Jr.'),(9,'ALBERS','Christijan'),(10,'ALBORETO','Michele'),(11,'ALESI','Jean'),(12,'ALGUERSUARI','Jaime'),(13,'ALLIOT','Philippe'),(14,'ALLISON','Cliff'),(15,'ALONSO','Fernando'),(16,'AMATI','Giovanna'),(17,'AMICK','George'),(18,'AMICK','Red'),(19,'AMON','Chris'),(20,'ANDERSON','Bob'),(21,'ANDERSSON','Conny'),(22,'ANDRETTI','Mario'),(23,'ANDRETTI','Michael'),(24,'ANDREWS','Keith'),(25,'APICELLA','Marco'),(26,'ARMI','Frank'),(27,'ARNOLD','Chuck'),(28,'ARNOUX','Rene'),(29,'ARUNDELL','Peter'),(30,'ASCARI','Alberto'),(31,'ASHDOWN','Peter'),(32,'ASHLEY','Ian'),(33,'ASHMORE','Gerry'),(34,'ASTON','Bill'),(35,'ATTWOOD','Richard'),(36,'AYULO','Manny'),(37,'BADOER','Luca'),(38,'BAGHETTI','Giancarlo'),(39,'BAILEY','Julian'),(40,'BALDI','Mauro'),(41,'BALL','Bobby'),(42,'BALSA','Marcel'),(43,'BANDINI','Lorenzo'),(44,'BANKS','Henry'),(45,'BARBAZZA','Fabrizio'),(46,'BARBER','John'),(47,'BARBER','Skip'),(48,'BARILLA','Paolo'),(49,'BARRICHELLO','Rubens'),(50,'BARTELS','Michael'),(51,'BARTH','Edgar'),(52,'BASSI','Giorgio'),(53,'BAUER','Erwin'),(54,'BAUMGARTNER','Zsolt'),(55,'BAYOL','Elie'),(56,'BEAUMAN','Don'),(57,'BECHEM','Karl–Guenther'),(58,'BEHRA','Jean'),(59,'BELL','Derek'),(60,'BELLOF','Stefan'),(61,'BELMONDO','Paul'),(62,'BELSO','Tom'),(63,'BELTOISE','Jean-Pierre'),(64,'BERETTA','Olivier'),(65,'BERG','Allen'),(66,'BERGER','Georges'),(67,'BERGER','Gerhard'),(68,'BERNARD','Eric'),(69,'BERNOLDI','Enrique'),(70,'BERTAGGIA','Enrico'),(71,'BETTENHAUSEN','Tony'),(72,'BEUTTLER','Mike'),(73,'BHANUBANDH','Birabongse'),(74,'BIANCHI','Lucien'),(75,'BIANCO','Gino'),(76,'BINDER','Hans'),(77,'BIONDETTI','Clemente'),(78,'BIRGER','Pablo'),(79,'BISCH','Art'),(80,'BLANCHARD','Harry'),(81,'BLEEKEMOLEN','Michael'),(82,'BLIGNAUT','Alex'),(83,'BLOKDYK','Trevor'),(84,'BLUNDELL','Mark'),(85,'BOESEL','Raul'),(86,'BOFFA','Menato'),(87,'BONDURANT','Bob'),(88,'BONETTO','Felice'),(89,'BONNIER','Jo'),(90,'BONOMI','Roberto'),(91,'BORDEU','Juan Manuel'),(92,'BORGUDD','Slim'),(93,'BOTHA','Luki'),(94,'BOULLION','Jean-Christophe'),(95,'BOURDAIS','Sebastien'),(96,'BOUTSEN','Thierry'),(97,'BOYD','Johnny'),(98,'BRABHAM','David'),(99,'BRABHAM','Gary'),(100,'BRABHAM','Jack'),(101,'BRACK','Bill'),(102,'BRAMBILLA','Ernesto'),(103,'BRAMBILLA','Vittorio'),(104,'BRANCA','Toni'),(105,'BRANCATELLI','Gianfranco'),(106,'BRANDON','Eric'),(107,'BRANSON','Don'),(108,'BRIDGER','Tom'),(109,'BRISE','Tony'),(110,'BRISTOW','Chris'),(111,'BROEKER','Peter'),(112,'BROOKS','Tony'),(113,'BROWN','Alan'),(114,'BROWN','Walt'),(115,'BROWN','Warwick'),(116,'BRUDES','Adolf'),(117,'BRUNDLE','Martin'),(118,'BRUNI','Gianmaria'),(119,'BRYAN','Jimmy'),(120,'BUCCI','Clemar'),(121,'BUCKNUM','Ronnie'),(122,'BUEB','Ivor'),(123,'BUEMI','Sebastien'),(124,'BUENO','Luiz'),(125,'BURGESS','Ian'),(126,'BURTI','Luciano'),(127,'BUSSINELLO','Roberto'),(128,'BUTTON','Jenson'),(129,'BYRNE','Tommy'),(130,'CABIANCA','Giulio'),(131,'CADE','Phil'),(132,'CAFFI','Alex'),(133,'CAMPBELL-JONES','John'),(134,'CAMPOS','Adrian'),(135,'CANNON','John'),(136,'CANTONI','Eitel'),(137,'CANTRELL','Bill'),(138,'CAPELLI','Ivan'),(139,'CARINI','Piero'),(140,'CARTER','Duane'),(141,'CASTELLOTTI','Eugenio'),(142,'CECOTTO','Johnny'),(143,'CEVERT','Francois'),(144,'CHABOUD','Eugène'),(145,'CHAMBERLAIN','Jay'),(146,'CHAPMAN','Colin'),(147,'CHARLTON','Dave'),(148,'CHAVES','Pedro Matos'),(149,'CHEESBOURG','Bill'),(150,'CHEEVER','Eddie'),(151,'CHIESA','Andrea'),(152,'CHIMERI','Ettore'),(153,'CHIRON','Louis'),(154,'CHITWOOD','Joie'),(155,'CHRISTIE','Bob'),(156,'CLAES','Johnny'),(157,'CLAPHAM','David'),(158,'CLARK','Jim'),(159,'COGAN','Kevin'),(160,'COLLINS','Peter'),(161,'COLLOMB','Bernard'),(162,'COLOMBO','Alberto'),(163,'COMAS','Erik'),(164,'COMOTTI','Franco'),(165,'CONNOR','George'),(166,'CONSTANTINE','George'),(167,'CORDTS','John'),(168,'COULTHARD','David'),(169,'COURAGE','Piers'),(170,'CRAFT','Chris'),(171,'CRAWFORD','Jim'),(172,'CRAWFORD','Ray'),(173,'CRESPO','Alberto'),(174,'CREUS','Antonio'),(175,'CROCKETT','Larry'),(176,'CROOK','Tony'),(177,'CROSS','Art'),(178,'CROSSLEY','Geoff'),(179,'DA MATTA','Cristiano'),(180,'DA SLIVA RAMOS','Hernando'),(181,'DAIGH','Chuck'),(182,'DALMAS','Yannick'),(183,'DALY','Derek'),(184,'DANNER','Christian'),(185,'DAPONTE','Jorge'),(186,'DAVIDSON','Anthony'),(187,'DAVIES','Jimmy'),(188,'DAVIS','Colin'),(189,'DAYWALT','Jimmy'),(190,'DE ADAMICH','Andrea'),(191,'DE ANGELIS','Elio'),(192,'DE ARAUJO CABRAL','Mario'),(193,'DE CESARIS','Andrea'),(194,'DE CHANGY','Alain'),(195,'DE DRYVER','Bernard'),(196,'DE FILIPPIS','Maria Teresa'),(197,'DE GRAFFENRIED','Emmanuel'),(198,'DE KLERK','Peter'),(199,'DE LA ROSA','Pedro'),(200,'DE PORTAGO','Alfonso'),(201,'DE RIU','Giovanni'),(202,'DE TOMASO','Alejandro'),(203,'DE TORNACO','Charles'),(204,'DE VILLOTA','Emilio'),(205,'DE VOS','Ernie'),(206,'DELETRAZ','Jean-Denis'),(207,'DEPAILLER','Patrick'),(208,'DINIZ','Pedro'),(209,'DINSMORE','Duke'),(210,'DOCHNAL','Frank'),(211,'DOLHEM','Jose'),(212,'DONNELLY','Martin'),(213,'DONOHUE','Mark'),(214,'DOORNBOS','Robert'),(215,'D\'OREY','Fritz'),(216,'DOWNING','Ken'),(217,'DRAKE','Bob'),(218,'DRIVER','Paddy'),(219,'DROGO','Piero'),(220,'DUKE','Geoff'),(221,'DUMFRIES','Johnny'),(222,'DUNCAN','Len'),(223,'DUSIO','Piero'),(224,'EATON','George'),(225,'ECCLESTONE','Bernie'),(226,'EDMUNDS','Don'),(227,'EDWARDS','Guy'),(228,'ELFORD','Vic'),(229,'ELISIAN','Ed'),(230,'EMERY','Paul'),(231,'ENGE','Tomas'),(232,'ENGLAND','Paul'),(233,'ERTL','Harald'),(234,'ESTEFANO','Nasif'),(235,'ETANCELIN','Philippe'),(236,'EVANS','Bob'),(237,'FABI','Corrado'),(238,'FABI','Teo'),(239,'FABRE','Pascal'),(240,'FACETTI','Carlo'),(241,'FAGIOLI','Luigi'),(242,'FAIRMAN','Jack'),(243,'FANGIO','Juan Manuel'),(244,'FARINA','Nino'),(245,'FAULKNER','Walt'),(246,'FERGUSON','William'),(247,'FIRMAN','Ralph'),(248,'FISCHER','Ludwig'),(249,'FISCHER','Rudi'),(250,'FISHER','Mike'),(251,'FISICHELLA','Giancarlo'),(252,'FITCH','John'),(253,'FITTIPALDI','Christian'),(254,'FITTIPALDI','Emerson'),(255,'FITTIPALDI','Wilson'),(256,'FITZAU','Theo'),(257,'FLAHERTY','Pat'),(258,'FLINTERMAN','Jan'),(259,'FLOCKHART','Ron'),(260,'FOHR','Myron'),(261,'FOITEK','Gregor'),(262,'FOLLMER','George'),(263,'FONDER','George'),(264,'FONTANA','Norberto'),(265,'FONTES BAYARDO','Azdrubal'),(266,'FORBERG','Carl'),(267,'FORCE','Gene'),(268,'FORINI','Franco'),(269,'FOTHERINGHAM-PARKER','Philip'),(270,'FOYT','A.J.'),(271,'FRANCIA','Giorgio'),(272,'FREELAND','Don'),(273,'FRENTZEN','Heinz-Harald'),(274,'FRERE','Paul'),(275,'FRIESACHER','Patrick'),(276,'FRY','Joe'),(277,'FUSHIDA','Hiroshi'),(278,'GABBIANI','Beppe'),(279,'GACHOT','Bertrand'),(280,'GAILLARD','Patrick'),(281,'GALICA','Divina'),(282,'GALLI','Nanni'),(283,'GALVEZ','Oscar Alfredo'),(284,'GAMBLE','Fred'),(285,'GANLEY','Howden'),(286,'GARDNER','Frank'),(287,'GARRETT','Billy'),(288,'GARTNER','Jo'),(289,'GAZE','Tony'),(290,'GEKI','NN'),(291,'GENDEBIEN','Olivier'),(292,'GENE','Marc'),(293,'GEORGE','Elmer'),(294,'GERARD','Bob'),(295,'GERINI','Gerino'),(296,'GETHIN','Peter'),(297,'GHINZANI','Piercarlo'),(298,'GIACOMELLI','Bruno'),(299,'GIBSON','Dick'),(300,'GINTHER','Richie'),(301,'GIRAUD-CABANTOUS','Yves'),(302,'GIUNTI','Ignazio'),(303,'GLOCK','Timo'),(304,'GLOECKLER','Helm'),(305,'GODIA','Paco'),(306,'GODIN DE BEAUFORT','Carel'),(307,'GOETHALS','Christian'),(308,'GOLDSMITH','Paul'),(309,'GONZALEZ','Jose Froilan'),(310,'GONZALEZ','Oscar'),(311,'GORDINI','Aldo'),(312,'GOULD','Horace'),(313,'GOUNON','Jean-Marc'),(314,'GREEN','Cecil'),(315,'GREENE','Keith'),(316,'GREGORY','Masten'),(317,'GRIFFITH','Cliff'),(318,'GRIGNARD','Georges'),(319,'GRIM','Bobby'),(320,'GROSJEAN','Romain'),(321,'GROUILLARD','Olivier'),(322,'GUBBY','Brian'),(323,'GUELFI','Andre'),(324,'GUERRA','Miguel Angel'),(325,'GUERRERO','Roberto'),(326,'GUGELMIN','Mauricio'),(327,'GURNEY','Dan'),(328,'HAHNE','Hubert'),(329,'HAILWOOD','Mike'),(330,'HAKKINEN','Mika'),(331,'HALFORD','Bruce'),(332,'HALL','Jim'),(333,'HAMILTON','Duncan'),(334,'HAMILTON','Lewis'),(335,'HAMPSHIRE','David'),(336,'HANKS','Sam'),(337,'HANSGEN','Walt'),(338,'HARRIS','Mike'),(339,'HARRISON','Cuth'),(340,'HART','Brian'),(341,'HARTLEY','Gene'),(342,'HASEMI','Masahiro'),(343,'HATTORI','Naoki'),(344,'HAWKINS','Paul'),(345,'HAWTHORN','Mike'),(346,'HAYJE','Boy'),(347,'HEEKS','Willi'),(348,'HEIDFELD','Nick'),(349,'HELFRICH','Theo'),(350,'HELLINGS','Mack'),(351,'HENTON','Brian'),(352,'HERBERT','Johnny'),(353,'HERMAN','Al'),(354,'HERRMANN','Hans'),(355,'HESNAULT','Francois'),(356,'HEYER','Hans'),(357,'HILL','Damon'),(358,'HILL','Graham'),(359,'HILL','Phil'),(360,'HIRT','Peter'),(361,'HOBBS','David'),(362,'HOCKING','Gary'),(363,'HOFFMANN','Ingo'),(364,'HOLLAND','Bill'),(365,'HOLMES','Jackie'),(366,'HOMEIER','Bill'),(367,'HOSHINO','Kazuyoshi'),(368,'HOYT','Jerry'),(369,'HULME','Denny'),(370,'HUNT','James'),(371,'HURTUBISE','Jim'),(372,'HUTCHISON','Gus'),(373,'ICKX','Jacky'),(374,'IDE','Yuji'),(375,'IGLESIAS','Jesus'),(376,'INOUE','Taki'),(377,'IRELAND','Innes'),(378,'IRVINE','Eddie'),(379,'IRWIN','Chris'),(380,'JABOUILLE','Jean-Pierre'),(381,'JACKSON','Jimmy'),(382,'JAMES','Joe'),(383,'JAMES','John'),(384,'JARIER','Jean-Pierre'),(385,'JEAN','Max'),(386,'JOHANSSON','Stefan'),(387,'JOHNSON','Eddie'),(388,'JOHNSON','Leslie'),(389,'JOHNSTONE','Bruce'),(390,'JONES','Alan'),(391,'JONES','Tom'),(392,'JOVER','Juan'),(393,'KARCH','Oswald'),(394,'KARTHIKEYAN','Narain'),(395,'KATAYAMA','Ukyo'),(396,'KAVANAGH','Ken'),(397,'KEEGAN','Rupert'),(398,'KEIZAN','Eddie'),(399,'KELLER','Al'),(400,'KELLY','Joe'),(401,'KENNEDY','Dave'),(402,'KESSEL','Loris'),(403,'KESSLER','Bruce'),(404,'KIESA','Nicolas'),(405,'KINNUNEN','Leo'),(406,'KLADIS','Danny'),(407,'KLENK','Hans'),(408,'KLIEN','Christian'),(409,'KLING','Karl'),(410,'KLODWIG','Ernst'),(411,'KOBAYASHI','Kamui'),(412,'KOINIGG','Helmuth'),(413,'KOVALAINEN','Heikki'),(414,'KOZAROWITZKY','Mikko'),(415,'KRAKAU','Willi'),(416,'KRAUSE','Rudolf'),(417,'KUBICA','Robert'),(418,'KUHNKE','Kurt'),(419,'KUWASHIMA','Masami'),(420,'LA CAZE','Robert'),(421,'LAFFITE','Jacques'),(422,'LAGORCE','Franck'),(423,'LAMMERS','Jan'),(424,'LAMY','Pedro'),(425,'LANDI','Chico'),(426,'LANG','Hermann'),(427,'LANGES','Claudio'),(428,'LARINI','Nicola'),(429,'LARRAURI','Oscar'),(430,'LARROUSSE','Gerard'),(431,'LARSON','Jud'),(432,'LAUDA','Niki'),(433,'LAURENT','Roger'),(434,'LAVAGGI','Giovanni'),(435,'LAWRENCE','Chris'),(436,'LECLERE','Michel'),(437,'LEDERLE','Neville'),(438,'LEES','Geoff'),(439,'LEGAT','Arthur'),(440,'LEHTO','JJ'),(441,'LEONI','Lamberto'),(442,'LESTON','Les'),(443,'LEVEGH','Pierre'),(444,'LEVRETT','Bayliss'),(445,'LEWIS','Jackie'),(446,'LEWIS-EVANS','Stuart'),(447,'LIGIER','Guy'),(448,'LINDEN','Andy'),(449,'LIPPI','Roberto'),(450,'LIUZZI','Vitantonio'),(451,'LOMBARDI','Lella'),(452,'LONDONO','Ricardo'),(453,'LOOF','Ernst'),(454,'LOUVEAU','Henri'),(455,'LOVE','John'),(456,'LOVELY','Pete'),(457,'LOYER','Roger'),(458,'LUCAS','Jean'),(459,'LUCIENBONNET','Jean'),(460,'LUNGER','Brett'),(461,'MACDOWEL','Mike'),(462,'MACKAY-FRASER','Herbert'),(463,'MACKEY','Bill'),(464,'MACKLIN','Lance'),(465,'MAGEE','Damien'),(466,'MAGGS','Tony'),(467,'MAGILL','Mike'),(468,'MAGLIOLI','Umberto'),(469,'MAGNUSSEN','Jan'),(470,'MAIRESSE','Guy'),(471,'MAIRESSE','Willy'),(472,'MANSELL','Nigel'),(473,'MANTOVANI','Sergio'),(474,'MANTZ','Johnny'),(475,'MANZON','Robert'),(476,'MARIMON','Onofre'),(477,'MARKO','Helmut'),(478,'MARQUES','Tarso'),(479,'MARR','Leslie'),(480,'MARSH','Tony'),(481,'MARTIN','Eugene'),(482,'MARTINI','Pierluigi'),(483,'MASS','Jochen'),(484,'MASSA','Felipe'),(485,'MAY','Michael'),(486,'MAYER','Timmy'),(487,'MAZET','Francois'),(488,'MAZZACANE','Gaston'),(489,'MCALPINE','Kenneth'),(490,'MCCARTHY','Perry'),(491,'MCCOY','Ernie'),(492,'MCDOWELL','Johnny'),(493,'MCGRATH','Jack'),(494,'MCGUIRE','Brian'),(495,'MCLAREN','Bruce'),(496,'MCNISH','Allan'),(497,'MCRAE','Graham'),(498,'MCWITHEY','Jim'),(499,'MENDITEGUY','Carlos'),(500,'MERKEL','Harry'),(501,'MERZARIO','Arturo'),(502,'MIERES','Roberto'),(503,'MIGAULT','Francois'),(504,'MILES','John'),(505,'MILES','Ken'),(506,'MILHOUX','Andre'),(507,'MILLER','Chet'),(508,'MITTER','Gerhard'),(509,'MODENA','Stefano'),(510,'MONARCH','Thomas'),(511,'MONTAGNY','Franck'),(512,'MONTEIRO','Tiago'),(513,'MONTERMINI','Andrea'),(514,'MONTEVERDI','Peter'),(515,'MONTGOMERIE-CHARRING','Robin'),(516,'MONTOYA','Juan Pablo'),(517,'MORBIDELLI','Gianni'),(518,'MORENO','Roberto'),(519,'MORGAN','Dave'),(520,'MOSER','Silvio'),(521,'MOSS','Bill'),(522,'MOSS','Stirling'),(523,'MUNARON','Gino'),(524,'MURRAY','David'),(525,'MUSSO','Luigi'),(526,'NAKAJIMA','Kazuki'),(527,'NAKAJIMA','Satoru'),(528,'NAKANO','Shinji'),(529,'NALON','Duke'),(530,'NANNINI','Alessandro'),(531,'NASPETTI','Emanuele'),(532,'NATILI','Massimo'),(533,'NAYLOR','Brian'),(534,'NAZARUK','Mike'),(535,'NEEDELL','Tiff'),(536,'NELLEMAN','Jac'),(537,'NEVE','Patrick'),(538,'NICHOLSON','John'),(539,'NIDAY','Cal'),(540,'NIEDERMAYR','Helmut'),(541,'NIEMANN','Brausch'),(542,'NILSSON','Gunnar'),(543,'NODA','Hideki'),(544,'NUCKEY','Rodney'),(545,'O\'BRIEN','Robert'),(546,'O\'CONNOR','Pat'),(547,'OLIVER','Jackie'),(548,'ONGAIS','Danny'),(549,'OPPITZHAUSER','Karl'),(550,'OWEN','Arthur'),(551,'PACE','Carlos'),(552,'PAGANI','Nello'),(553,'PALETTI','Riccardo'),(554,'PALM','Torsten'),(555,'PALMER','Jonathan'),(556,'PANIS','Olivier'),(557,'PANTANO','Giorgio'),(558,'PAPIS','Massimiliano'),(559,'PARKES','Mike'),(560,'PARNELL','Reg'),(561,'PARNELL','Tim'),(562,'PARSONS','Johnnie'),(563,'PATRESE','Riccardo'),(564,'PEASE','Al'),(565,'PENSKE','Roger'),(566,'PERDISA','Cesare'),(567,'PEREZ-SALA','Luis'),(568,'PERKINS','Larry'),(569,'PESCAROLO','Henri'),(570,'PESENTI-ROSSI','Alessandro'),(571,'PETERS','Josef'),(572,'PETERSON','Ronnie'),(573,'PIAN','Alfredo'),(574,'PICARD','Francois'),(575,'PIETERSE','Ernie'),(576,'PIETSCH','Paul'),(577,'PILETTE','Andre'),(578,'PILETTE','Teddy'),(579,'PIOTTI','Luigi'),(580,'PIPER','David'),(581,'PIQUET','Nelson'),(582,'PIQUET','Nelson Jr.'),(583,'PIROCCHI','Renato'),(584,'PIRONI','Didier'),(585,'PIRRO','Emanuele'),(586,'PIZZONIA','Antonio'),(587,'POLLET','Jacques'),(588,'PON','Ben'),(589,'POORE','Dennis'),(590,'POSEY','Sam'),(591,'POZZI','Charles'),(592,'PRETORIUS','Jackie'),(593,'PRINOTH','Ernesto'),(594,'PROPHET','David'),(595,'PROST','Alain'),(596,'PRYCE','Tom'),(597,'PURLEY','David'),(598,'PUZEY','Clive'),(599,'QUESTER','Dieter'),(600,'RABY','Ian'),(601,'RAHAL','Bobby'),(602,'RAIKKONEN','Kimi'),(603,'RAPHANEL','Pierre-Henri'),(604,'RATHMANN','Dick'),(605,'RATHMANN','Jim'),(606,'RATZENBERGER','Roland'),(607,'REBAQUE','Hector'),(608,'REDMAN','Brian'),(609,'REECE','Jimmy'),(610,'REED','Ray'),(611,'REES','Alan'),(612,'REGAZZONI','Clay'),(613,'REUTEMANN','Carlos'),(614,'REVENTLOW','Lance'),(615,'REVSON','Peter'),(616,'RHODES','John'),(617,'RIBEIRO','Alex'),(618,'RICHARDSON','Ken'),(619,'RIESS','Fritz'),(620,'RIGSBY','Jim'),(621,'RINDT','Jochen'),(622,'RISELEY-PRICHARD','John'),(623,'ROBARTS','Richard'),(624,'RODRIGUEZ','Pedro'),(625,'RODRIGUEZ','Ricardo'),(626,'RODRIGUEZ LARRETA','Alberto'),(627,'ROL','Franco'),(628,'ROLLINSON','Alan'),(629,'ROLT','Tony'),(630,'ROOS','Bertil'),(631,'ROSBERG','Keke'),(632,'ROSBERG','Nico'),(633,'ROSE','Mauri'),(634,'ROSIER','Louis'),(635,'ROSSET','Ricardo'),(636,'ROTHENGATTER','Huub'),(637,'RUBY','Lloyd'),(638,'RUDAZ','Jean-Claude'),(639,'RUSSO','Eddie'),(640,'RUSSO','Paul'),(641,'RUTTMAN','Troy'),(642,'RYAN','Peter'),(643,'SACHS','Eddie'),(644,'SAID','Bob'),(645,'SALAZAR','Eliseo'),(646,'SALO','Mika'),(647,'SALVADORI','Roy'),(648,'SANESI','Consalvo'),(649,'SARRAZIN','Stephane'),(650,'SATO','Takuma'),(651,'SCARBOROUGH','Carl'),(652,'SCARFIOTTI','Ludovico'),(653,'SCARLATTI','Giorgio'),(654,'SCHECKTER','Ian'),(655,'SCHECKTER','Jody'),(656,'SCHELL','Harry'),(657,'SCHENKEN','Tim'),(658,'SCHERRER','Albert'),(659,'SCHIATTARELLA','Domenico'),(660,'SCHILLER','Heinz'),(661,'SCHINDLER','Bill'),(662,'SCHLESSER','Jean-Louis'),(663,'SCHLESSER','Jo'),(664,'SCHNEIDER','Bernd'),(665,'SCHOELLER','Rudolf'),(666,'SCHROEDER','Rob'),(667,'SCHUMACHER','Michael'),(668,'SCHUMACHER','Ralf'),(669,'SCHUPPAN','Vern'),(670,'SCHWELM CRUZ','Adolfo'),(671,'SCOTT','Bob'),(672,'SCOTT BROWN','Archie'),(673,'SCOTTI','Piero'),(674,'SEIDEL','Wolfgang'),(675,'SEIFFERT','Guenther'),(676,'SENNA','Ayrton'),(677,'SERAFINI','Dorino'),(678,'SERRA','Chico'),(679,'SERRURIER','Doug'),(680,'SERVOZ-GAVIN','Johnny'),(681,'SETTEMBER','Tony'),(682,'SHARP','Hap'),(683,'SHAWE-TAYLOR','Brian'),(684,'SHELBY','Carroll'),(685,'SHELLY','Tony'),(686,'SIFFERT','Jo'),(687,'SIMON','Andre'),(688,'SLOTEMAKER','Rob'),(689,'SOLANA','Moises'),(690,'SOLER-ROIG','Alex'),(691,'SOMMER','Raymond'),(692,'SOSPIRI','Vincenzo'),(693,'SOUTH','Stephen'),(694,'SPARKEN','Mike'),(695,'SPEED','Scott'),(696,'SPENCE','Mike'),(697,'STACEY','Alan'),(698,'STARRABBA','Gaetano'),(699,'STEVENSON','Chuck'),(700,'STEWART','Ian'),(701,'STEWART','Jackie'),(702,'STEWART','Jimmy'),(703,'STOHR','Siegfried'),(704,'STOMMELEN','Rolf'),(705,'STREIFF','Philippe'),(706,'STUCK','Hans'),(707,'STUCK','Hans Joachim'),(708,'STUPPACHER','Otto'),(709,'SULLIVAN','Danny'),(710,'SURER','Marc'),(711,'SURTEES','John'),(712,'SUTCLIFFE','Andy'),(713,'SUTIL','Adrian'),(714,'SUTTON','Len'),(715,'SUZUKI','Aguri'),(716,'SUZUKI','Toshio'),(717,'SWATERS','Jacques'),(718,'SWEIKERT','Bob'),(719,'TAKAGI','Toranosuke'),(720,'TAKAHARA','Noritake'),(721,'TAKAHASHI','Kunimitsu'),(722,'TAMBAY','Patrick'),(723,'TARAMAZZO','Luigi'),(724,'TARQUINI','Gabriele'),(725,'TARUFFI','Piero'),(726,'TAYLOR','Dennis'),(727,'TAYLOR','Henry'),(728,'TAYLOR','John'),(729,'TAYLOR','Mike'),(730,'TAYLOR','Trevor'),(731,'TEAGUE','Marshall'),(732,'TEMPLEMAN','Shorty'),(733,'TERRA','Max de'),(734,'TESTUT','Andre'),(735,'THACKWELL','Mike'),(736,'THIELE','Alfonso'),(737,'THOMPSON','Eric'),(738,'THOMSON','Johnny'),(739,'THORNE','Leslie'),(740,'TINGELSTAD','Bud'),(741,'TINGLE','Sam'),(742,'TITTERINGTON','Desmond'),(743,'TOLAN','Johnnie'),(744,'TRIMMER','Tony'),(745,'TRINTIGNANT','Maurice'),(746,'TRULLI','Jarno'),(747,'TUERO','Esteban'),(748,'TUNMER','Guy'),(749,'TURNER','Jack'),(750,'ULMEN','Toni'),(751,'UNSER','Bobby'),(752,'UNSER','Jerry'),(753,'URIA','Alberto'),(754,'VACCARELLA','Nino'),(755,'VAN DE POELE','Eric'),(756,'VAN DER LOF','Dries'),(757,'VAN DER VYVER','Syd'),(758,'VAN LENNEP','Gijs'),(759,'VAN ROOYEN','Basil'),(760,'VEITH','Bob'),(761,'VERSTAPPEN','Jos'),(762,'VETTEL','Sebastian'),(763,'VILLENEUVE','Gilles'),(764,'VILLENEUVE','Jacques'),(765,'VILLENEUVE SR.','Jacques'),(766,'VILLORESI','Luigi'),(767,'VOLONTERIO','Ottorino'),(768,'VON OPEL','Rikky'),(769,'VON TRIPS','Wolfgang'),(770,'VONLANTHEN','Jo'),(771,'VUKOVICH','Bill'),(772,'WACKER','Fred'),(773,'WALKER','David'),(774,'WALKER','Peter'),(775,'WALLARD','Lee'),(776,'WALTER','Heini'),(777,'WARD','Rodger'),(778,'WARWICK','Derek'),(779,'WATSON','John'),(780,'WEBB','Spider'),(781,'WEBBER','Mark'),(782,'WEIDLER','Volker'),(783,'WEILER','Wayne'),(784,'WENDLINGER','Karl'),(785,'WESTBURY','Peter'),(786,'WEYANT','Chuck'),(787,'WHARTON','Ken'),(788,'WHITEAWAY','Ted'),(789,'WHITEHEAD','Graham'),(790,'WHITEHEAD','Peter'),(791,'WHITEHOUSE','Bill'),(792,'WIDDOWS','Robin'),(793,'WIETZES','Eppie'),(794,'WILDS','Mike'),(795,'WILLIAMS','Jonathan'),(796,'WILLIAMSON','Roger'),(797,'WILSON','Dempsey'),(798,'WILSON','Desire'),(799,'WILSON','Justin'),(800,'WILSON','Vic'),(801,'WINKELHOCK','Joachim'),(802,'WINKELHOCK','Manfred'),(803,'WINKELHOCK','Markus'),(804,'WISELL','Reine'),(805,'WUNDERINK','Roelof'),(806,'WURZ','Alexander'),(807,'YAMAMOTO','Sakon'),(808,'YOONG','Alex'),(809,'ZANARDI','Alex'),(810,'ZAPICO','Emilio'),(811,'ZONTA','Ricardo'),(812,'ZORZI','Renzo'),(813,'ZUNINO','Ricardo'),(814,'CHANDHOK','Karun'),(815,'DI GRASSI','Lucas'),(816,'HUELKENBERG','Nico'),(817,'PETROV','Vitaly'),(818,'SENNA','Bruno'),(819,'D\'AMBROSIO','Jerome'),(820,'DI RESTA','Paul'),(821,'MALDONADO','Pastor'),(822,'PEREZ','Sergio'),(823,'PIC','Charles'),(824,'RICCIARDO','Daniel'),(825,'VERGNE','Jean-Eric'),(826,'BIANCHI','Jules'),(827,'BOTTAS','Valtteri'),(828,'CHILTON','Max'),(829,'GUTIERREZ','Esteban'),(830,'VAN DER GARDE','Giedo'),(831,'ERICSSON','Marcus'),(832,'KVYAT','Daniil'),(833,'LOTTERER','Andre'),(834,'MAGNUSSEN','Kevin'),(835,'STEVENS','Will'); /*!40000 ALTER TABLE `alldrivers` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `drivers` -- DROP TABLE IF EXISTS `drivers`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `drivers` ( `d_id` int(4) NOT NULL AUTO_INCREMENT, `d_lname` varchar(20) NOT NULL DEFAULT '', `d_fname` varchar(20) NOT NULL DEFAULT '', `d_currseason` int(1) NOT NULL DEFAULT '0', `d_miod` int(3) NOT NULL DEFAULT '0', `d_fa_id` int(3) NOT NULL DEFAULT '0', PRIMARY KEY (`d_id`) ) ENGINE=MyISAM AUTO_INCREMENT=52 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `drivers` -- LOCK TABLES `drivers` WRITE; /*!40000 ALTER TABLE `drivers` DISABLE KEYS */; INSERT INTO `drivers` VALUES (1,'HAMILTON','Lewis',1,30,11),(2,'ROSBERG','Nico',1,29,11),(3,'RICCIARDO','Daniel',1,28,7),(4,'KVYAT','Daniil',1,18,7),(5,'MASSA','Felipe',1,24,23),(6,'BOTTAS','Valtteri',1,27,23),(7,'VETTEL','Sebastian',1,26,1),(8,'RAIKKONEN','Kimi',1,20,1),(9,'ALONSO','Fernando',1,25,25),(10,'BUTTON','Jenson',1,23,25),(11,'PEREZ','Sergio',1,21,14),(12,'HUELKENBERG','Nico',1,22,14),(13,'VERSTAPPEN','Max',1,12,22),(14,'SAINZ','Carlos Jr.',1,10,22),(15,'GROSJEAN','Romain',1,19,23),(16,'MALDONADO','Pastor',1,17,23),(17,'ERICSSON','Marcus',1,15,12),(18,'NASR','Felipe',1,13,12),(19,'STEVENS','Will',1,14,24),(20,'MERHI','Roberto',1,11,24),(21,'LYNN','Alex',0,0,23),(22,'WOLFF','Susie',0,0,23),(23,'GUTIERREZ','Esteban',0,0,1),(24,'VERNE','Jean-Eric',0,0,1),(25,'MAGNUSSEN','Kevin',1,16,25),(26,'MARCIELLO','Raffaele',0,0,12),(27,'VAN DER GARDE','Giedo',0,0,12),(28,'SUTIL','Adrian',0,0,23),(29,'ROSSI','Alexander',1,0,24); /*!40000 ALTER TABLE `drivers` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `events` -- DROP TABLE IF EXISTS `events`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `events` ( `e_id` int(2) NOT NULL AUTO_INCREMENT, `e_type` varchar(20) NOT NULL DEFAULT '', PRIMARY KEY (`e_id`) ) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `events` -- LOCK TABLES `events` WRITE; /*!40000 ALTER TABLE `events` DISABLE KEYS */; INSERT INTO `events` VALUES (1,'QUALIFYING'),(2,'RACE'); /*!40000 ALTER TABLE `events` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `fflassets` -- DROP TABLE IF EXISTS `fflassets`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `fflassets` ( `fa_id` int(4) NOT NULL AUTO_INCREMENT, `fa_currseason` int(1) NOT NULL DEFAULT '0', `fa_chassis` varchar(30) NOT NULL DEFAULT '', `fa_mioc` int(3) NOT NULL DEFAULT '0', `fa_engine` varchar(30) NOT NULL DEFAULT '', `fa_mioe` int(3) NOT NULL DEFAULT '0', PRIMARY KEY (`fa_id`) ) ENGINE=MyISAM AUTO_INCREMENT=28 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `fflassets` -- LOCK TABLES `fflassets` WRITE; /*!40000 ALTER TABLE `fflassets` DISABLE KEYS */; INSERT INTO `fflassets` VALUES (1,1,'Ferrari',27,'Ferrari (Ferrari)',26),(2,0,'McLaren',0,'Mercedes (McLaren)',0),(3,0,'BMW Sauber',0,'BMW (BMW Sauber)',0),(4,0,'Renault',0,'Renault (Renault)',0),(5,0,'Toyota',0,'Toyota (Toyota)',0),(6,0,'Toro Rosso',0,'Ferrari (Toro Rosso)',0),(7,1,'Red Bull',29,'Renault (Red Bull)',22),(8,0,'Williams',0,'Toyota (Williams)',0),(9,0,'Brawn',0,'Mercedes (Brawn)',0),(10,0,'Force India',0,'Ferrari (Force India)',0),(11,1,'Mercedes GP',30,'Mercedes (Mercedes GP)',30),(12,1,'Sauber',22,'Ferrari (Sauber)',25),(13,0,'Williams',0,'Cosworth (Williams)',0),(14,1,'Force India',25,'Mercedes (Force India)',28),(15,0,'Lotus',0,'Cosworth (Lotus)',0),(16,0,'HRT',0,'Cosworth (HRT)',0),(17,0,'Virgin',0,'Cosworth (Virgin)',0),(18,0,'Lotus',0,'Renault (Lotus)',0),(19,0,'Williams',0,'Renault (Williams)',0),(20,0,'Caterham',0,'Renault (Caterham)',0),(21,0,'Marussia',0,'Cosworth (Marussia)',0),(22,1,'Toro Rosso',24,'Renault (Toro Rosso)',21),(23,1,'Williams',28,'Mercedes (Williams)',29),(24,0,'Marussia',0,'Ferrari (Marussia)',0),(25,1,'McLaren',26,'Honda (McLaren)',23),(26,1,'Lotus',23,'Mercedes (Lotus)',27),(27,1,'Manor',21,'Ferrari (Manor)',24); /*!40000 ALTER TABLE `fflassets` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `fflpoints` -- DROP TABLE IF EXISTS `fflpoints`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `fflpoints` ( `fp_u_id` int(4) NOT NULL DEFAULT '0', `fp_g_id` int(4) NOT NULL DEFAULT '0', `fp_points` decimal(4,1) NOT NULL DEFAULT '0.0' ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `fflpoints` -- LOCK TABLES `fflpoints` WRITE; /*!40000 ALTER TABLE `fflpoints` DISABLE KEYS */; INSERT INTO `fflpoints` VALUES (1,1,'86.0'),(20,1,'88.0'),(21,1,'47.0'),(9,1,'72.0'),(10,1,'66.0'),(1,2,'74.0'),(20,2,'82.0'),(21,2,'45.0'),(9,2,'82.0'),(10,2,'67.0'),(1,3,'86.0'),(20,3,'98.0'),(21,3,'56.0'),(9,3,'80.0'),(10,3,'60.0'),(1,4,'82.0'),(20,4,'98.0'),(21,4,'58.0'),(9,4,'69.0'),(10,4,'60.0'),(1,5,'87.0'),(20,5,'98.0'),(21,5,'53.0'),(9,5,'78.0'),(10,5,'65.0'),(1,6,'92.0'),(20,6,'89.0'),(21,6,'52.0'),(9,6,'67.0'),(10,6,'80.0'),(1,7,'88.0'),(20,7,'98.0'),(21,7,'55.0'),(9,7,'73.0'),(10,7,'55.0'),(1,8,'90.0'),(20,8,'86.0'),(21,8,'43.0'),(9,8,'70.0'),(10,8,'60.0'),(1,9,'94.0'),(20,9,'90.0'),(21,9,'48.0'),(9,9,'74.0'),(10,9,'66.0'),(1,10,'54.0'),(20,10,'24.0'),(21,10,'25.0'),(9,10,'37.0'),(10,10,'82.0'),(1,11,'102.0'),(20,11,'92.0'),(21,11,'50.0'),(9,11,'57.0'),(10,11,'59.0'),(1,12,'51.0'),(20,12,'60.0'),(21,12,'37.0'),(9,12,'68.0'),(10,12,'48.0'),(1,13,'36.0'),(20,13,'41.0'),(21,13,'27.0'),(9,13,'54.0'),(10,13,'67.0'),(1,14,'88.0'),(20,14,'99.0'),(21,14,'55.0'),(9,14,'71.0'),(10,14,'60.0'),(1,15,'61.0'),(20,15,'54.0'),(21,15,'31.0'),(9,15,'59.0'),(10,15,'54.0'),(1,16,'98.0'),(20,16,'92.0'),(21,16,'51.0'),(9,16,'64.0'),(10,16,'71.0'),(1,17,'100.0'),(20,17,'86.0'),(21,17,'43.0'),(9,17,'51.0'),(10,17,'67.0'),(1,18,'93.0'),(20,18,'98.0'),(21,18,'55.0'),(9,18,'74.0'),(10,18,'65.0'),(1,19,'87.0'),(20,19,'101.0'),(21,19,'58.0'),(9,19,'74.0'),(10,19,'64.0'); /*!40000 ALTER TABLE `fflpoints` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `fflresults` -- DROP TABLE IF EXISTS `fflresults`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `fflresults` ( `fr_season` int(4) NOT NULL DEFAULT '0', `fr_u_id` int(4) NOT NULL DEFAULT '0', `fr_ft_a_id_d1` int(4) NOT NULL DEFAULT '0', `fr_ft_a_id_d2` int(4) NOT NULL DEFAULT '0', `fr_fa_id_chassis` int(4) NOT NULL DEFAULT '0', `fr_fa_id_engine` int(4) NOT NULL DEFAULT '0', `fr_totalpoints` decimal(5,1) DEFAULT '0.0', PRIMARY KEY (`fr_season`,`fr_u_id`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `fflresults` -- LOCK TABLES `fflresults` WRITE; /*!40000 ALTER TABLE `fflresults` DISABLE KEYS */; INSERT INTO `fflresults` VALUES (2009,0,128,762,9,9,'523.0'),(2009,1,746,762,8,7,'304.5'),(2009,2,15,251,9,1,'276.0'),(2009,3,49,303,9,1,'343.0'),(2009,6,484,128,9,6,'297.0'),(2009,9,602,128,5,7,'356.0'),(2009,10,334,128,8,9,'350.5'),(2009,11,746,128,7,1,'351.0'),(2009,12,762,128,9,1,'421.0'),(2010,0,15,713,7,7,'1295.0'),(2010,1,334,411,11,7,'984.0'),(2010,4,484,762,17,7,'898.0'),(2010,6,484,713,7,6,'702.0'),(2010,9,816,15,11,2,'942.0'),(2010,10,417,303,2,7,'1088.0'),(2010,11,818,15,1,1,'1044.0'),(2010,12,15,816,11,7,'986.0'),(2010,13,49,818,1,6,'456.0'),(2011,6,713,348,2,7,'1223.0'),(2011,1,632,822,1,7,'1128.0'),(2011,12,667,820,7,1,'1128.0'),(2011,10,484,820,7,2,'1292.0'),(2011,0,128,820,7,7,'1597.0'),(2012,1,602,816,2,7,'1108.0'),(2012,12,15,320,2,7,'1212.0'),(2012,6,411,816,7,1,'983.0'),(2012,9,667,825,7,2,'903.0'),(2012,10,762,825,2,7,'1135.0'),(2012,2,762,394,18,7,'1044.0'),(2012,7,762,818,18,18,'918.0'),(2012,0,15,320,7,7,'1294.0'),(2013,1,762,828,1,7,'1347.0'),(2013,20,602,829,1,7,'1139.0'),(2013,12,602,829,1,7,'1139.0'),(2013,10,762,830,2,7,'1115.0'),(2013,18,15,826,19,1,'601.0'),(2013,0,15,828,7,7,'1434.0'),(2014,1,762,834,1,7,'843.0'),(2014,20,762,834,11,7,'1328.0'),(2014,12,602,832,11,7,'1169.0'),(2014,10,334,821,2,7,'972.0'),(2014,9,632,834,11,1,'1289.0'),(2014,0,824,834,11,11,'1695.0'),(2015,1,4,13,11,11,'1549.0'),(2015,20,8,14,11,11,'1574.0'),(2015,21,17,8,11,25,'889.0'),(2015,9,5,14,11,1,'1274.0'),(2015,10,7,13,11,7,'1216.0'); /*!40000 ALTER TABLE `fflresults` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `fflteams` -- DROP TABLE IF EXISTS `fflteams`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `fflteams` ( `ft_u_id` int(4) NOT NULL DEFAULT '0', `ft_d_id_d1` int(4) NOT NULL DEFAULT '0', `ft_d_id_d2` int(4) NOT NULL DEFAULT '0', `ft_fa_id_chassis` int(4) NOT NULL DEFAULT '0', `ft_fa_id_engine` int(4) NOT NULL DEFAULT '0', PRIMARY KEY (`ft_u_id`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `fflteams` -- LOCK TABLES `fflteams` WRITE; /*!40000 ALTER TABLE `fflteams` DISABLE KEYS */; INSERT INTO `fflteams` VALUES (1,4,13,11,11),(20,8,14,11,11),(21,17,8,11,25),(9,5,14,11,1),(10,7,13,11,7); /*!40000 ALTER TABLE `fflteams` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `gps` -- DROP TABLE IF EXISTS `gps`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `gps` ( `g_id` int(4) NOT NULL AUTO_INCREMENT, `g_name` varchar(40) NOT NULL DEFAULT '', `g_datetime_q` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `g_datetime_r` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `g_flag` varchar(20) NOT NULL DEFAULT '', `g_circuit` varchar(40) NOT NULL DEFAULT '', PRIMARY KEY (`g_id`) ) ENGINE=MyISAM AUTO_INCREMENT=21 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `gps` -- LOCK TABLES `gps` WRITE; /*!40000 ALTER TABLE `gps` DISABLE KEYS */; INSERT INTO `gps` VALUES (1,'AUSTRALIA (Melbourne)','2015-03-14 07:00:00','2015-03-15 06:00:00','flag_AUSTRALIA.gif','circuit_AUSTRALIA.gif'),(2,'MALAYSIA (Sepang)','2015-03-28 10:00:00','2015-03-29 09:00:00','flag_MALAYSIA.gif','circuit_MALAYSIA.gif'),(3,'CHINA (Shanghai)','2015-04-11 09:00:00','2015-04-12 08:00:00','flag_CHINA.gif','circuit_CHINA.gif'),(4,'BAHRAIN (Sakhir)','2015-04-18 17:00:00','2015-04-19 17:00:00','flag_BAHRAIN.gif','circuit_BAHRAIN.gif'),(5,'SPAIN (Barcelona)','2015-05-09 14:00:00','2015-05-10 14:00:00','flag_SPAIN.gif','circuit_SPAIN_(Barcelona).gif'),(6,'MONACO (Monte Carlo)','2015-05-23 14:00:00','2015-05-24 14:00:00','flag_MONACO.gif','circuit_MONACO.gif'),(7,'CANADA (Montreal)','2015-06-06 19:00:00','2015-06-07 20:00:00','flag_CANADA.gif','circuit_CANADA.gif'),(8,'AUSTRIA (Spielberg)','2015-06-20 14:00:00','2015-06-21 14:00:00','flag_AUSTRIA.gif','circuit_AUSTRIA.gif'),(9,'GREAT BRITAIN (Silverstone)','2015-07-04 14:00:00','2015-07-05 14:00:00','flag_UK.gif','circuit_UK.gif'),(10,'HUNGARY (Budapest)','2015-07-25 14:00:00','2015-07-26 14:00:00','flag_HUNGARY.gif','circuit_HUNGARY.gif'),(11,'BELGIUM (Spa)','2015-08-22 14:00:00','2015-08-23 14:00:00','flag_BELGIUM.gif','circuit_BELGIUM.gif'),(12,'ITALY (Monza)','2015-09-05 14:00:00','2015-09-06 14:00:00','flag_ITALY.gif','circuit_ITALY.gif'),(13,'SINGAPORE (Singapore)','2015-09-19 15:00:00','2015-09-20 14:00:00','flag_SINGAPORE.gif','circuit_SINGAPORE.gif'),(14,'JAPAN (Suzuka)','2015-09-26 08:00:00','2015-09-27 07:00:00','flag_JAPAN.gif','circuit_JAPAN_(Suzuka).gif'),(15,'RUSSIA (Sochi)','2015-10-10 14:00:00','2015-10-11 13:00:00','flag_RUSSIA.gif','circuit_RUSSIA.gif'),(16,'USA (Austin)','2015-10-24 20:00:00','2015-10-25 20:00:00','flag_USA.gif','circuit_USA_(Austin).gif'),(17,'MEXICO (Mexico City)','2015-10-31 20:00:00','2015-11-01 20:00:00','flag_MEXICO.gif','circuit_MEXICO.gif'),(18,'BRAZIL (Sao Paulo)','2015-11-14 17:00:00','2015-11-15 17:00:00','flag_BRAZIL.gif','circuit_BRAZIL.gif'),(19,'UNITED ARAB EMIRATES (Abu Dhabi)','2015-11-28 14:00:00','2015-11-29 14:00:00','flag_UAE.gif','circuit_UAE.gif'); /*!40000 ALTER TABLE `gps` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `results` -- DROP TABLE IF EXISTS `results`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `results` ( `r_g_id` int(4) NOT NULL DEFAULT '0', `r_e_id` int(2) NOT NULL DEFAULT '0', `r_d_id_p1` int(4) NOT NULL DEFAULT '0', `r_d_id_p2` int(4) NOT NULL DEFAULT '0', `r_d_id_p3` int(4) NOT NULL DEFAULT '0', `r_d_id_p4` int(4) NOT NULL DEFAULT '0', `r_d_id_p5` int(4) NOT NULL DEFAULT '0', `r_d_id_p6` int(4) NOT NULL DEFAULT '0', `r_d_id_p7` int(4) NOT NULL DEFAULT '0', `r_d_id_p8` int(4) NOT NULL DEFAULT '0', `r_d_id_p9` int(4) NOT NULL DEFAULT '0', `r_d_id_p10` int(4) NOT NULL DEFAULT '0', `r_fl` int(4) NOT NULL DEFAULT '0', `r_firstout` varchar(20) NOT NULL DEFAULT '0', `r_bestcup` varchar(20) NOT NULL DEFAULT '0', `r_sc` int(2) NOT NULL DEFAULT '-1', `r_hp` int(1) NOT NULL DEFAULT '0', PRIMARY KEY (`r_g_id`,`r_e_id`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `results` -- LOCK TABLES `results` WRITE; /*!40000 ALTER TABLE `results` DISABLE KEYS */; INSERT INTO `results` VALUES (1,1,1,2,5,0,0,0,0,0,0,0,0,'0','0',-1,0),(1,2,1,2,7,5,18,3,12,17,14,11,1,'16','17',1,0),(2,1,1,7,2,0,0,0,0,0,0,0,0,'0','0',-1,0),(2,2,7,1,2,8,6,5,13,14,4,3,2,'17','8,14',1,0),(3,1,1,2,7,0,0,0,0,0,0,0,0,'0','0',-1,0),(3,2,1,2,7,8,5,6,15,18,3,17,1,'12','9',1,0),(4,1,1,7,2,0,0,0,0,0,0,0,0,'0','0',-1,0),(4,2,1,8,2,6,7,3,15,11,4,5,8,'14','4',0,0),(5,1,2,1,7,0,0,0,0,0,0,0,0,'0','0',-1,0),(5,2,2,1,7,6,8,5,3,15,14,4,1,'9','11',0,0),(6,1,1,2,7,0,0,0,0,0,0,0,0,'0','0',-1,0),(6,2,2,7,1,4,3,8,11,10,18,14,3,'16','14',1,0),(7,1,1,2,8,0,0,0,0,0,0,0,0,'0','0',-1,0),(7,2,1,2,6,8,7,5,16,12,4,15,8,'9','7',0,0),(8,1,1,2,7,0,0,0,0,0,0,0,0,'0','0',-1,0),(8,2,2,1,5,7,6,12,16,13,11,3,2,'9,8','3',1,0),(9,1,1,2,5,0,0,0,0,0,0,0,0,'0','0',-1,0),(9,2,1,2,7,5,6,4,12,8,11,9,8,'10','20',1,0),(10,1,1,2,7,0,0,0,0,0,0,0,0,'0','0',-1,0),(10,2,7,4,3,13,9,1,15,2,10,17,3,'12','9',1,0),(11,1,1,2,6,0,0,0,0,0,0,0,0,'0','0',-1,0),(11,2,1,2,15,4,11,5,8,13,6,17,4,'12','13',1,0),(12,1,1,8,7,0,0,0,0,0,0,0,0,'0','0',-1,0),(12,2,1,7,5,6,8,11,12,3,17,4,1,'15','3',0,0),(13,1,7,3,8,0,0,0,0,0,0,0,0,'0','0',-1,0),(13,2,7,3,8,2,6,4,11,13,14,18,3,'12','17,16,18,11,29',1,0),(14,1,2,1,6,0,0,0,0,0,0,0,0,'0','0',-1,0),(14,2,1,2,7,8,6,12,15,16,13,14,1,'','13',0,0),(15,1,2,1,6,0,0,0,0,0,0,0,0,'0','0',-1,0),(15,2,1,7,11,5,4,18,16,8,10,13,7,'17,12','5',1,0),(16,1,2,1,3,0,0,0,0,0,0,0,0,'0','0',-1,0),(16,2,1,2,7,13,11,10,14,16,18,3,1,'19','14',1,0),(17,1,2,1,7,0,0,0,0,0,0,0,0,'0','0',-1,0),(17,2,2,1,6,4,3,5,12,11,13,15,2,'9','10',1,0),(18,1,2,1,7,0,0,0,0,0,0,0,0,'0','0',-1,0),(18,2,2,1,7,8,6,12,4,5,15,13,1,'14','3',0,0),(19,1,2,1,8,0,0,0,0,0,0,0,0,'0','0',-1,0),(19,2,2,1,8,7,11,3,12,5,15,4,1,'16','7',0,0); /*!40000 ALTER TABLE `results` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tips` -- DROP TABLE IF EXISTS `tips`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `tips` ( `t_u_id` int(4) NOT NULL DEFAULT '0', `t_g_id` int(4) NOT NULL DEFAULT '0', `t_e_id` int(2) NOT NULL DEFAULT '0', `t_d_id_p1` int(4) NOT NULL DEFAULT '0', `t_d_id_p2` int(4) NOT NULL DEFAULT '0', `t_d_id_p3` int(4) NOT NULL DEFAULT '0', `t_fl` int(4) NOT NULL DEFAULT '0', `t_firstout` int(4) NOT NULL DEFAULT '0', `t_bestcup` int(4) NOT NULL DEFAULT '0', `t_sc` int(2) NOT NULL DEFAULT '0', `t_timestamp` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `t_score` int(4) NOT NULL DEFAULT '0', PRIMARY KEY (`t_u_id`,`t_g_id`,`t_e_id`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tips` -- LOCK TABLES `tips` WRITE; /*!40000 ALTER TABLE `tips` DISABLE KEYS */; INSERT INTO `tips` VALUES (7,1,1,1,2,6,0,0,0,0,'2015-03-11 22:16:59',4),(21,1,1,2,1,7,0,0,0,0,'2015-03-13 08:54:08',2),(12,1,1,2,1,6,0,0,0,0,'2015-03-13 14:07:19',2),(1,1,1,2,1,7,0,0,0,0,'2015-03-13 20:42:57',2),(10,1,1,2,1,7,0,0,0,0,'2015-03-13 22:07:04',2),(18,1,1,1,2,5,0,0,0,0,'2015-03-13 23:36:27',6),(4,1,1,2,1,7,0,0,0,0,'2015-03-14 00:44:14',2),(9,1,1,1,7,2,0,0,0,0,'2015-03-14 06:40:20',3),(2,1,1,1,2,7,0,0,0,0,'2015-03-14 06:50:50',4),(7,1,2,1,2,7,2,20,6,-1,'2015-03-14 15:59:51',6),(1,1,2,1,2,7,1,14,10,1,'2015-03-15 05:52:20',8),(18,1,2,1,2,7,1,16,10,0,'2015-03-14 19:45:58',9),(12,1,2,1,2,7,1,13,4,0,'2015-03-14 20:45:12',6),(10,1,2,2,1,7,2,5,11,0,'2015-03-14 21:26:24',3),(9,1,2,1,7,2,1,17,4,-1,'2015-03-14 21:42:41',5),(2,1,2,1,2,7,1,14,10,0,'2015-03-15 05:58:05',6),(7,2,1,1,2,8,0,0,0,0,'2015-03-28 07:33:00',3),(12,2,1,1,2,7,0,0,0,0,'2015-03-27 11:23:36',4),(1,2,1,1,2,8,0,0,0,0,'2015-03-27 21:36:45',3),(10,2,1,1,2,8,0,0,0,0,'2015-03-27 21:55:45',3),(21,2,1,1,2,7,0,0,0,0,'2015-03-28 09:31:28',4),(4,2,1,1,2,5,0,0,0,0,'2015-03-28 06:44:38',3),(9,2,1,2,1,8,0,0,0,0,'2015-03-28 08:22:30',2),(18,2,1,2,1,5,0,0,0,0,'2015-03-28 08:46:20',2),(21,2,2,1,7,2,1,19,8,0,'2015-03-28 21:44:21',5),(12,2,2,1,2,7,1,20,8,1,'2015-03-29 08:38:10',6),(1,2,2,1,2,7,1,11,8,1,'2015-03-28 17:56:18',6),(10,2,2,1,2,7,1,20,8,1,'2015-03-29 08:40:13',6),(7,2,2,1,2,7,1,15,8,1,'2015-03-28 22:20:59',6),(4,2,2,1,2,7,1,14,9,1,'2015-03-29 06:06:51',4),(9,2,2,7,1,6,1,4,14,1,'2015-03-29 08:07:21',7),(2,2,2,1,2,7,1,9,8,1,'2015-03-29 08:47:13',6),(18,2,2,1,2,7,1,15,9,0,'2015-03-29 08:54:36',2),(12,3,1,1,2,7,0,0,0,0,'2015-04-10 12:06:03',6),(21,3,1,1,2,7,0,0,0,0,'2015-04-10 14:03:46',6),(21,3,2,1,7,2,1,19,14,0,'2015-04-12 04:35:44',4),(7,3,1,1,7,8,0,0,0,0,'2015-04-11 06:40:25',3),(10,3,1,1,2,7,0,0,0,0,'2015-04-11 07:28:10',6),(9,3,1,1,2,7,0,0,0,0,'2015-04-11 07:29:12',6),(18,3,1,1,2,7,0,0,0,0,'2015-04-11 07:44:44',6),(1,3,1,1,2,7,0,0,0,0,'2015-04-11 08:02:55',6),(1,3,2,1,2,7,7,9,12,0,'2015-04-11 16:18:07',5),(10,3,2,1,2,7,1,13,9,-1,'2015-04-11 21:23:03',9),(12,3,2,1,2,7,2,19,13,1,'2015-04-11 21:29:43',7),(7,3,2,1,2,7,1,20,9,-1,'2015-04-11 22:07:06',9),(9,3,2,1,7,2,1,15,12,-1,'2015-04-12 07:36:21',5),(18,3,2,1,2,7,1,19,14,0,'2015-04-12 07:56:34',6),(12,4,1,1,2,7,0,0,0,0,'2015-04-17 18:48:07',4),(7,4,1,1,2,7,0,0,0,0,'2015-04-18 16:24:08',4),(4,4,1,1,2,7,0,0,0,0,'2015-04-18 08:12:02',4),(21,4,1,2,1,7,0,0,0,0,'2015-04-18 14:52:54',3),(9,4,1,2,1,8,0,0,0,0,'2015-04-18 11:05:02',2),(10,4,1,2,1,7,0,0,0,0,'2015-04-18 14:19:04',3),(1,4,1,1,2,7,0,0,0,0,'2015-04-18 15:27:21',4),(18,4,1,2,1,7,0,0,0,0,'2015-04-18 16:24:47',3),(2,4,1,1,2,7,0,0,0,0,'2015-04-18 16:24:55',4),(12,4,2,1,7,8,1,10,16,0,'2015-04-18 18:10:56',4),(1,4,2,1,7,8,1,4,13,0,'2015-04-19 16:43:00',4),(21,4,2,7,1,8,7,10,4,0,'2015-04-19 14:04:29',5),(7,4,2,1,2,7,1,11,4,-1,'2015-04-19 14:15:38',5),(4,4,2,1,7,2,1,15,10,1,'2015-04-19 14:48:36',3),(10,4,2,7,1,2,1,20,16,0,'2015-04-19 16:40:35',4),(9,4,2,7,1,8,7,15,4,-1,'2015-04-19 16:31:31',4),(18,4,2,1,7,2,1,18,9,0,'2015-04-19 16:41:11',5),(2,4,2,1,7,2,1,17,10,0,'2015-04-19 16:59:06',5),(12,5,1,1,2,7,0,0,0,0,'2015-05-08 20:45:42',4),(1,5,1,1,2,7,0,0,0,0,'2015-05-09 03:31:49',4),(7,5,1,1,7,2,0,0,0,0,'2015-05-09 07:57:14',3),(21,5,1,2,1,7,0,0,0,0,'2015-05-09 10:07:15',6),(21,5,2,1,2,7,1,19,3,1,'2015-05-10 12:30:25',4),(9,5,1,1,7,2,0,0,0,0,'2015-05-09 12:01:48',3),(4,5,1,1,2,7,0,0,0,0,'2015-05-09 12:53:40',4),(18,5,1,2,1,7,0,0,0,0,'2015-05-09 13:39:50',6),(12,5,2,1,2,7,1,11,15,0,'2015-05-09 19:59:50',6),(1,5,2,1,2,7,8,16,10,0,'2015-05-09 22:30:39',5),(7,5,2,2,1,7,2,4,8,-1,'2015-05-10 11:53:45',6),(9,5,2,1,7,2,1,13,9,-1,'2015-05-10 13:08:20',4),(18,5,2,2,7,6,7,19,9,0,'2015-05-10 13:30:13',4),(10,5,2,2,1,7,2,16,9,-1,'2015-05-10 13:37:11',6),(2,5,2,2,1,7,8,13,8,0,'2015-05-10 13:57:46',7),(12,6,1,1,2,7,0,0,0,0,'2015-05-22 10:27:09',6),(21,6,1,2,1,7,0,0,0,0,'2015-05-23 12:51:34',4),(21,6,2,2,7,3,2,10,6,1,'2015-05-24 13:36:19',5),(10,6,1,1,2,7,0,0,0,0,'2015-05-22 21:16:43',6),(7,6,1,2,7,1,0,0,0,0,'2015-05-23 13:56:27',3),(1,6,1,1,2,7,0,0,0,0,'2015-05-23 09:59:00',6),(9,6,1,7,2,1,0,0,0,0,'2015-05-23 12:31:22',4),(18,6,1,1,7,2,0,0,0,0,'2015-05-23 13:46:24',4),(1,6,2,1,2,7,1,15,6,1,'2015-05-23 16:03:29',4),(10,6,2,1,2,7,1,16,15,1,'2015-05-23 17:01:36',7),(12,6,2,1,2,7,1,13,15,1,'2015-05-23 19:42:50',4),(7,6,2,1,2,7,1,19,8,1,'2015-05-24 13:49:16',4),(18,6,2,1,2,7,1,20,9,1,'2015-05-24 13:41:07',4),(9,6,2,1,7,2,1,17,6,-1,'2015-05-24 13:55:57',4),(12,7,1,2,1,7,0,0,0,0,'2015-06-05 19:37:35',2),(21,7,1,1,2,7,0,0,0,0,'2015-06-06 01:21:11',4),(7,7,1,1,7,2,0,0,0,0,'2015-06-06 08:46:28',3),(9,7,1,7,2,1,0,0,0,0,'2015-06-06 12:30:48',3),(10,7,1,1,2,7,0,0,0,0,'2015-06-06 18:43:54',4),(1,7,1,2,1,7,0,0,0,0,'2015-06-06 18:48:51',2),(1,7,2,1,2,8,1,16,7,1,'2015-06-06 20:15:10',5),(12,7,2,1,2,6,7,9,7,1,'2015-06-06 20:28:08',10),(7,7,2,1,2,8,1,17,7,1,'2015-06-07 19:57:52',5),(21,7,2,1,2,8,1,10,7,1,'2015-06-07 19:29:53',5),(10,7,2,1,2,8,1,5,7,1,'2015-06-07 19:31:39',5),(9,7,2,1,2,6,1,9,7,-1,'2015-06-07 19:45:46',11),(18,7,2,1,2,8,7,5,7,1,'2015-06-07 19:57:53',5),(2,7,2,1,2,8,1,6,7,0,'2015-06-07 19:58:31',7),(21,8,1,1,2,7,0,0,0,0,'2015-06-19 09:00:23',6),(21,8,2,1,2,7,1,10,8,0,'2015-06-19 09:00:20',1),(7,8,1,2,1,7,0,0,0,0,'2015-06-19 19:59:27',4),(12,8,1,2,1,7,0,0,0,0,'2015-06-19 23:26:23',4),(9,8,1,7,1,8,0,0,0,0,'2015-06-20 13:16:43',2),(18,8,1,1,7,2,0,0,0,0,'2015-06-20 13:24:33',4),(1,8,1,1,7,2,0,0,0,0,'2015-06-20 13:41:50',4),(10,8,1,1,7,8,0,0,0,0,'2015-06-20 13:42:17',3),(1,8,2,1,2,7,8,9,8,0,'2015-06-20 21:25:17',4),(12,8,2,1,2,7,1,10,8,1,'2015-06-20 21:31:38',3),(9,8,2,1,7,2,1,4,8,-1,'2015-06-21 07:51:26',2),(7,8,2,2,1,7,1,19,8,1,'2015-06-21 12:38:47',5),(10,8,2,7,1,2,7,5,9,0,'2015-06-21 13:19:16',2),(18,8,2,1,2,7,1,20,8,0,'2015-06-21 13:52:12',1),(12,9,1,1,2,7,0,0,0,0,'2015-07-03 22:49:06',4),(21,9,1,2,1,7,0,0,0,0,'2015-07-04 07:11:55',2),(21,9,2,2,1,7,7,10,8,0,'2015-07-04 07:12:45',6),(9,9,1,2,1,7,0,0,0,0,'2015-07-04 11:35:30',2),(10,9,1,2,1,7,0,0,0,0,'2015-07-04 11:36:39',2),(7,9,1,1,2,8,0,0,0,0,'2015-07-04 13:01:25',4),(1,9,1,1,2,7,0,0,0,0,'2015-07-04 13:31:25',4),(18,9,1,1,2,7,0,0,0,0,'2015-07-04 13:39:14',4),(12,9,2,1,2,7,1,19,13,0,'2015-07-04 18:34:46',5),(1,9,2,1,2,6,1,9,13,0,'2015-07-05 11:07:08',3),(10,9,2,1,2,7,1,5,9,1,'2015-07-05 11:09:33',7),(7,9,2,1,2,6,1,19,7,-1,'2015-07-05 13:07:12',4),(9,9,2,1,2,6,2,9,16,0,'2015-07-05 13:17:46',3),(18,9,2,1,2,5,1,19,12,0,'2015-07-05 13:55:18',3),(12,10,1,2,1,7,0,0,0,0,'2015-07-23 09:35:25',4),(10,10,1,1,2,7,0,0,0,0,'2015-07-25 08:53:10',6),(21,10,2,1,2,7,1,18,9,0,'2015-07-26 13:31:12',2),(21,10,1,2,1,3,0,0,0,0,'2015-07-25 09:21:47',2),(1,10,1,1,2,4,0,0,0,0,'2015-07-25 09:05:42',4),(7,10,1,1,2,7,0,0,0,0,'2015-07-25 13:10:06',6),(18,10,1,1,2,7,0,0,0,0,'2015-07-25 13:16:45',6),(9,10,1,1,2,7,0,0,0,0,'2015-07-25 13:39:51',6),(12,10,2,1,2,7,1,19,14,1,'2015-07-25 19:44:28',2),(1,10,2,1,2,7,1,10,16,1,'2015-07-25 22:03:24',2),(7,10,2,1,2,3,1,10,11,-1,'2015-07-26 13:59:23',2),(18,10,2,1,2,7,1,15,9,0,'2015-07-26 13:34:25',2),(10,10,2,1,2,7,1,5,9,-1,'2015-07-26 13:42:01',3),(9,10,2,1,2,7,1,9,16,-1,'2015-07-26 13:55:15',1),(21,11,1,1,2,7,0,0,0,0,'2015-08-21 13:21:39',4),(21,11,2,1,2,7,1,10,8,0,'2015-08-23 10:57:26',3),(12,11,1,2,1,7,0,0,0,0,'2015-08-21 19:08:31',2),(1,11,1,2,1,7,0,0,0,0,'2015-08-22 09:03:07',2),(10,11,1,2,1,3,0,0,0,0,'2015-08-22 09:18:39',2),(7,11,1,2,1,7,0,0,0,0,'2015-08-22 13:53:39',2),(18,11,1,1,2,7,0,0,0,0,'2015-08-22 13:43:00',4),(12,11,2,1,2,3,1,20,4,0,'2015-08-22 15:31:08',3),(1,11,2,1,2,7,1,18,9,1,'2015-08-23 07:42:37',5),(10,11,2,2,1,6,1,5,8,1,'2015-08-23 12:28:35',3),(9,11,2,1,2,6,1,9,8,-1,'2015-08-23 13:28:49',4),(7,11,2,1,2,5,1,20,8,1,'2015-08-23 13:37:36',5),(18,11,2,2,1,7,1,9,7,0,'2015-08-23 13:59:28',1),(21,12,1,1,2,7,0,0,0,0,'2015-09-04 12:43:28',4),(21,12,2,7,1,8,7,10,13,1,'2015-09-06 07:59:35',1),(7,12,1,1,2,7,0,0,0,0,'2015-09-05 08:05:57',4),(12,12,1,1,2,7,0,0,0,0,'2015-09-04 21:13:53',4),(1,12,1,1,2,7,0,0,0,0,'2015-09-05 10:29:38',4),(10,12,1,1,2,7,0,0,0,0,'2015-09-05 10:35:34',4),(18,12,1,1,7,2,0,0,0,0,'2015-09-05 13:44:10',3),(12,12,2,1,2,7,1,9,12,1,'2015-09-05 20:13:45',3),(1,12,2,1,7,2,1,14,4,0,'2015-09-06 08:40:06',6),(10,12,2,1,7,2,1,5,3,-1,'2015-09-06 10:51:03',7),(7,12,2,1,7,8,7,20,3,-1,'2015-09-06 13:49:46',6),(18,12,2,1,7,8,1,13,9,0,'2015-09-06 13:41:39',6),(9,12,2,1,7,6,1,12,3,0,'2015-09-06 13:57:08',8),(21,13,1,1,3,7,0,0,0,0,'2015-09-19 00:53:47',3),(7,13,1,7,4,1,0,0,0,0,'2015-09-19 14:54:35',2),(10,13,1,2,1,7,0,0,0,0,'2015-09-19 11:06:53',1),(1,13,1,1,2,7,0,0,0,0,'2015-09-19 11:44:17',1),(18,13,1,1,2,7,0,0,0,0,'2015-09-19 14:57:11',1),(12,13,2,7,8,3,7,19,16,1,'2015-09-19 16:13:18',7),(18,13,2,7,8,1,7,4,14,1,'2015-09-19 22:03:56',4),(1,13,2,7,3,1,7,14,16,1,'2015-09-19 23:59:04',7),(7,13,2,7,3,8,7,14,16,1,'2015-09-20 13:52:20',9),(10,13,2,7,2,3,7,5,16,1,'2015-09-20 09:40:08',6),(21,13,2,7,8,3,7,18,16,1,'2015-09-20 11:59:10',7),(9,13,2,7,3,1,1,2,16,1,'2015-09-20 13:46:12',7),(18,14,1,1,2,7,0,0,0,0,'2015-09-25 22:18:57',2),(12,14,1,1,2,7,0,0,0,0,'2015-09-25 22:56:04',2),(10,14,1,2,1,7,0,0,0,0,'2015-09-26 00:26:50',4),(21,14,1,1,2,7,0,0,0,0,'2015-09-26 02:58:31',2),(21,14,2,1,2,7,1,10,13,1,'2015-09-27 05:42:40',8),(1,14,1,1,2,3,0,0,0,0,'2015-09-26 07:49:07',2),(12,14,2,1,2,7,1,16,14,0,'2015-09-26 09:13:39',8),(7,14,2,1,2,7,2,13,4,1,'2015-09-27 06:55:40',5),(1,14,2,1,2,5,1,12,4,1,'2015-09-26 21:49:59',4),(10,14,2,1,2,7,8,5,4,1,'2015-09-26 22:35:52',5),(18,14,2,1,2,6,1,16,4,0,'2015-09-27 00:29:02',6),(12,15,1,1,2,7,0,0,0,0,'2015-10-09 21:50:21',2),(12,15,2,2,1,7,1,13,5,1,'2015-10-10 18:27:06',5),(7,15,1,2,1,7,0,0,0,0,'2015-10-10 13:44:44',4),(18,15,1,1,2,7,0,0,0,0,'2015-10-10 09:47:42',2),(10,15,1,7,2,1,0,0,0,0,'2015-10-10 10:23:16',2),(1,15,1,1,2,7,0,0,0,0,'2015-10-10 10:49:12',2),(21,15,1,1,2,6,0,0,0,0,'2015-10-10 13:04:25',4),(21,15,2,1,2,7,1,19,14,1,'2015-10-11 12:57:22',4),(1,15,2,1,2,7,1,18,14,0,'2015-10-11 08:21:46',2),(18,15,2,1,2,6,1,16,9,0,'2015-10-11 09:58:15',1),(7,15,2,2,6,7,2,1,9,1,'2015-10-11 12:03:45',2),(10,15,2,2,1,7,1,5,16,-1,'2015-10-11 12:21:26',2),(12,16,1,2,1,7,0,0,0,0,'2015-10-22 20:00:38',4),(7,16,1,1,2,7,0,0,0,0,'2015-10-23 16:52:11',2),(7,16,2,2,1,3,2,14,7,1,'2015-10-25 16:16:17',3),(1,16,1,1,7,6,0,0,0,0,'2015-10-24 19:30:36',1),(18,16,1,1,7,2,0,0,0,0,'2015-10-24 19:41:22',2),(10,16,1,1,7,2,0,0,0,0,'2015-10-24 19:47:39',2),(12,16,2,1,7,2,1,16,2,1,'2015-10-24 23:46:53',6),(21,16,2,1,3,7,1,16,7,1,'2015-10-25 18:54:05',6),(1,16,2,2,1,3,7,12,8,1,'2015-10-25 16:36:33',3),(10,16,2,2,1,6,2,5,7,1,'2015-10-25 18:18:52',3),(18,16,2,1,2,11,1,15,8,1,'2015-10-25 19:47:43',6),(7,17,1,2,1,3,0,0,0,0,'2015-10-31 18:40:48',4),(7,17,2,2,7,1,2,15,8,1,'2015-11-01 18:50:06',5),(7,18,1,2,1,7,0,0,0,0,'2015-11-14 12:53:46',6),(7,19,1,2,1,7,0,0,0,0,'2015-11-28 13:24:58',4),(21,17,1,1,2,7,0,0,0,0,'2015-10-30 10:31:28',4),(21,17,2,1,7,2,1,18,8,0,'2015-10-30 10:32:04',1),(12,17,1,1,2,7,0,0,0,0,'2015-10-30 22:38:03',4),(18,17,1,1,2,7,0,0,0,0,'2015-10-31 18:46:07',4),(10,17,1,2,1,3,0,0,0,0,'2015-10-31 18:54:40',4),(1,17,1,2,1,3,0,0,0,0,'2015-10-31 19:13:20',4),(12,17,2,1,2,7,1,19,8,0,'2015-10-31 22:49:42',1),(1,17,2,1,2,7,1,14,8,1,'2015-11-01 00:49:24',3),(10,17,2,1,2,7,1,16,8,1,'2015-11-01 17:54:50',3),(18,17,2,2,1,7,2,16,9,0,'2015-11-01 19:27:23',4),(21,18,1,1,2,7,0,0,0,0,'2015-11-13 11:27:02',4),(21,18,2,1,2,7,1,10,3,1,'2015-11-13 11:27:31',6),(12,18,1,2,7,1,0,0,0,0,'2015-11-13 20:43:56',4),(10,18,1,1,2,7,0,0,0,0,'2015-11-14 11:20:13',4),(1,18,1,2,1,7,0,0,0,0,'2015-11-14 11:59:05',6),(18,18,1,1,2,7,0,0,0,0,'2015-11-14 15:14:49',4),(12,18,2,2,1,7,2,29,3,1,'2015-11-15 16:54:56',7),(1,18,2,2,1,7,1,9,3,0,'2015-11-15 04:13:02',10),(7,18,2,1,2,7,2,9,3,-1,'2015-11-15 12:26:58',6),(18,18,2,2,1,7,1,16,9,0,'2015-11-15 15:59:07',8),(10,18,2,2,1,7,1,5,3,-1,'2015-11-15 16:21:28',9),(21,19,1,1,2,7,0,0,0,0,'2015-11-27 09:29:45',2),(21,19,2,1,2,7,1,10,8,1,'2015-11-27 09:30:12',2),(12,19,1,1,2,7,0,0,0,0,'2015-11-27 13:08:05',2),(1,19,1,2,1,7,0,0,0,0,'2015-11-28 12:09:00',4),(18,19,1,2,1,7,0,0,0,0,'2015-11-28 13:27:12',4),(10,19,1,2,1,7,0,0,0,0,'2015-11-28 13:35:31',4),(12,19,2,2,1,7,2,9,7,0,'2015-11-28 20:04:37',7),(1,19,2,2,1,11,1,18,7,0,'2015-11-29 01:57:03',8),(7,19,2,2,1,8,2,10,7,-1,'2015-11-29 12:19:27',8),(10,19,2,2,1,7,2,5,7,0,'2015-11-29 13:26:25',7); /*!40000 ALTER TABLE `tips` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `users` -- DROP TABLE IF EXISTS `users`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `users` ( `u_id` int(11) NOT NULL AUTO_INCREMENT, `u_name` char(3) NOT NULL DEFAULT '', `u_passcode` varchar(41) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL DEFAULT '', `u_pic` varchar(40) DEFAULT NULL, `u_realname` varchar(40) NOT NULL DEFAULT '', `u_nickname` varchar(20) NOT NULL DEFAULT 'not revealed', `u_email` varchar(50) NOT NULL DEFAULT '', `u_emailreminder` int(1) NOT NULL DEFAULT '0', `u_nationality` varchar(20) NOT NULL DEFAULT 'not revealed', `u_favdriver` int(11) NOT NULL DEFAULT '0', `u_since` year(4) NOT NULL DEFAULT '0000', `u_gtwins` int(3) NOT NULL DEFAULT '0', `u_admin` int(1) NOT NULL DEFAULT '0', PRIMARY KEY (`u_id`) ) ENGINE=MyISAM AUTO_INCREMENT=36 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `users` -- LOCK TABLES `users` WRITE; /*!40000 ALTER TABLE `users` DISABLE KEYS */; INSERT INTO `users` VALUES (1,'MAM','18d022103920e120b2faabf4be68aa8f','pic_MAM.gif','Markus A. Mascelli','MAM','mam@heimam.at',0,'italian',602,2006,2,1),(2,'GUE','78918cecf8926d0cada4c5bc31af87a3','pic_GUE.gif','Guenther Schmidt','GueStar','guenther.schmidt@gmail.com',0,'austrian',15,2006,3,0),(3,'ZEI','8dad7cabce9c511bd4983e8dc96ea5da','pic_ZEI.gif','Christian Zeichmann','Zeichi','christian.zeichmann@kabelnet.at',0,'austrian',0,2007,1,0),(4,'AFG','8ff522cd1e5219541b2e945af0727d2b','pic_AFG.gif','Andrea F. Grohmann','','a.grohmann@gmx.at',0,'austrian',0,2007,0,0),(5,'JIR','8522c2ccfd6fc5d242ed16d168401fad','avatar.jpg','Juergen Iser','','j.iser@gmx.at',0,'austrian',602,2008,0,0),(6,'KAI','e5f4d97a4961dea1184bbbe847b591f3','avatar.jpg','Roman Kailbach','Kailo','kailo@gmx.at',0,'austrian',334,2008,0,0),(7,'WOB','776ad0ef27acc0602c337dc2736f3a97','300ende.jpg','Mhöb Gnagflow','WoB','wboehm@gmail.com',0,'austrian',762,2008,1,0),(8,'REG','776ad0ef27acc0602c337dc2736f3a97','yoshi1.jpg','Regina Boehm','','rboehm@gmail.com',0,'austrian',0,2008,0,0),(9,'ISA','3c4db9561aa2b8530d5c60014dbfbe86','isa_grid_kl_hp_3.jpg','Ildiko Samu-Puehringer','sam','ildikosamu.puehringer@gmail.com',0,'hungarian',667,2008,0,0),(10,'MRO','cda0fd2918d19e20ac871ed79a8d2bb0','pic_MRO.jpg','Martha Rossa','RoMa','rossama@yahoo.com',0,'austrian',334,2008,1,1),(11,'MPU','f9c17117b5b8dbf8cfa83d8057ee1a0b','mpu_grid_tip_blaukl.jpg','Michael Puehringer','','michael.puehringer@lotterien.at',0,'austrian',621,2008,0,0),(12,'RHA','9ced82c0515df69d4e3311f63d40ffa0','avatar.jpg','Robert Haller','','rr101088@gmail.com',0,'austrian',0,2008,0,0),(13,'FAN','33c2e20d31b3ae8f4564d7517738eb7d','extremeevil.gif','Georg Juren','Schurl','georg.juren@atos.net',0,'austrian',49,2009,0,0),(14,'MBR','f9c17117b5b8dbf8cfa83d8057ee1a0b','avatar.jpg','Markus Brenner','','m.brenn@gmx.net',0,'austrian',0,2009,0,0),(15,'RSC','d67ee0b6a91696158441100ba2e5a9b0','schicht_roman.jpg','Roman Schicht','','rschicht@yahoo.com',0,'austrian',0,2009,0,0),(16,'FAB','f9c17117b5b8dbf8cfa83d8057ee1a0b','avatar.jpg','Alexander Fabozzi','','alexander.fabozzi@gmx.at',0,'austrian',0,2010,0,0),(17,'MAR','776ad0ef27acc0602c337dc2736f3a97','avatar.jpg','Marina Boehm','','mboehm@gmail.com',0,'austrian',0,2010,0,0),(18,'IRS','8918b74d571421bcc47fc59816bf8fc2','foto_ivan.png','Ivan Rodriguez','','irodriguezs@hotmail.com',0,'spanish',15,2010,1,0),(19,'ALE','2ab3343875e56dc0a15cbb6a98570cf2','avatar.jpg','Alexander Doler','','alexander.doler@atos.net',0,'austrian',0,2012,0,0),(20,'STM','f078ea5db3ca0165e914bb82ea971755','avatar.jpg','Manfred Steinacher','','mst4711@gmx.at',0,'austrian',0,2013,0,0),(35,'HOK','21e316792058f92b4873dff990619a94','avatar.jpg','hoking','hoking','samuel2f3@hotmail.com',0,'NqSSjTGcFBfZ',833,2015,0,0),(21,'MCL','02a8925e820f46c6c89d7a85a1285deb','avatar.jpg','Sasa Petrovic','Ayrton','sasa.petrovic@citrix.com',0,'serbian',676,2014,0,0); /*!40000 ALTER TABLE `users` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `winners` -- DROP TABLE IF EXISTS `winners`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `winners` ( `w_season` int(4) NOT NULL DEFAULT '0', `w_u_id` int(4) NOT NULL DEFAULT '0', PRIMARY KEY (`w_season`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `winners` -- LOCK TABLES `winners` WRITE; /*!40000 ALTER TABLE `winners` DISABLE KEYS */; INSERT INTO `winners` VALUES (2006,2),(2007,2),(2008,10),(2009,1),(2010,3),(2011,1),(2012,18),(2013,2),(2014,1),(2015,7); /*!40000 ALTER TABLE `winners` ENABLE KEYS */; UNLOCK TABLES; -- -- Current Database: `niki_2016` -- CREATE DATABASE /*!32312 IF NOT EXISTS*/ `niki_2016` /*!40100 DEFAULT CHARACTER SET latin1 */; USE `niki_2016`; -- -- Table structure for table `alldrivers` -- DROP TABLE IF EXISTS `alldrivers`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `alldrivers` ( `a_id` int(4) NOT NULL AUTO_INCREMENT, `a_lname` varchar(20) NOT NULL DEFAULT '', `a_fname` varchar(20) NOT NULL DEFAULT '', PRIMARY KEY (`a_id`) ) ENGINE=MyISAM AUTO_INCREMENT=846 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `alldrivers` -- LOCK TABLES `alldrivers` WRITE; /*!40000 ALTER TABLE `alldrivers` DISABLE KEYS */; INSERT INTO `alldrivers` VALUES (1,'ABATE','Carlo'),(2,'ABECASSIS','George'),(3,'ACHESON','Kenny'),(4,'ADAMS','Philippe'),(5,'ADER','Walt'),(6,'ADOLFF','Kurt'),(7,'AGABASHIAN','Fred'),(8,'AHRENS','Kurt Jr.'),(9,'ALBERS','Christijan'),(10,'ALBORETO','Michele'),(11,'ALESI','Jean'),(12,'ALGUERSUARI','Jaime'),(13,'ALLIOT','Philippe'),(14,'ALLISON','Cliff'),(15,'ALONSO','Fernando'),(16,'AMATI','Giovanna'),(17,'AMICK','George'),(18,'AMICK','Red'),(19,'AMON','Chris'),(20,'ANDERSON','Bob'),(21,'ANDERSSON','Conny'),(22,'ANDRETTI','Mario'),(23,'ANDRETTI','Michael'),(24,'ANDREWS','Keith'),(25,'APICELLA','Marco'),(26,'ARMI','Frank'),(27,'ARNOLD','Chuck'),(28,'ARNOUX','Rene'),(29,'ARUNDELL','Peter'),(30,'ASCARI','Alberto'),(31,'ASHDOWN','Peter'),(32,'ASHLEY','Ian'),(33,'ASHMORE','Gerry'),(34,'ASTON','Bill'),(35,'ATTWOOD','Richard'),(36,'AYULO','Manny'),(37,'BADOER','Luca'),(38,'BAGHETTI','Giancarlo'),(39,'BAILEY','Julian'),(40,'BALDI','Mauro'),(41,'BALL','Bobby'),(42,'BALSA','Marcel'),(43,'BANDINI','Lorenzo'),(44,'BANKS','Henry'),(45,'BARBAZZA','Fabrizio'),(46,'BARBER','John'),(47,'BARBER','Skip'),(48,'BARILLA','Paolo'),(49,'BARRICHELLO','Rubens'),(50,'BARTELS','Michael'),(51,'BARTH','Edgar'),(52,'BASSI','Giorgio'),(53,'BAUER','Erwin'),(54,'BAUMGARTNER','Zsolt'),(55,'BAYOL','Elie'),(56,'BEAUMAN','Don'),(57,'BECHEM','Karl–Guenther'),(58,'BEHRA','Jean'),(59,'BELL','Derek'),(60,'BELLOF','Stefan'),(61,'BELMONDO','Paul'),(62,'BELSO','Tom'),(63,'BELTOISE','Jean-Pierre'),(64,'BERETTA','Olivier'),(65,'BERG','Allen'),(66,'BERGER','Georges'),(67,'BERGER','Gerhard'),(68,'BERNARD','Eric'),(69,'BERNOLDI','Enrique'),(70,'BERTAGGIA','Enrico'),(71,'BETTENHAUSEN','Tony'),(72,'BEUTTLER','Mike'),(73,'BHANUBANDH','Birabongse'),(74,'BIANCHI','Lucien'),(75,'BIANCO','Gino'),(76,'BINDER','Hans'),(77,'BIONDETTI','Clemente'),(78,'BIRGER','Pablo'),(79,'BISCH','Art'),(80,'BLANCHARD','Harry'),(81,'BLEEKEMOLEN','Michael'),(82,'BLIGNAUT','Alex'),(83,'BLOKDYK','Trevor'),(84,'BLUNDELL','Mark'),(85,'BOESEL','Raul'),(86,'BOFFA','Menato'),(87,'BONDURANT','Bob'),(88,'BONETTO','Felice'),(89,'BONNIER','Jo'),(90,'BONOMI','Roberto'),(91,'BORDEU','Juan Manuel'),(92,'BORGUDD','Slim'),(93,'BOTHA','Luki'),(94,'BOULLION','Jean-Christophe'),(95,'BOURDAIS','Sebastien'),(96,'BOUTSEN','Thierry'),(97,'BOYD','Johnny'),(98,'BRABHAM','David'),(99,'BRABHAM','Gary'),(100,'BRABHAM','Jack'),(101,'BRACK','Bill'),(102,'BRAMBILLA','Ernesto'),(103,'BRAMBILLA','Vittorio'),(104,'BRANCA','Toni'),(105,'BRANCATELLI','Gianfranco'),(106,'BRANDON','Eric'),(107,'BRANSON','Don'),(108,'BRIDGER','Tom'),(109,'BRISE','Tony'),(110,'BRISTOW','Chris'),(111,'BROEKER','Peter'),(112,'BROOKS','Tony'),(113,'BROWN','Alan'),(114,'BROWN','Walt'),(115,'BROWN','Warwick'),(116,'BRUDES','Adolf'),(117,'BRUNDLE','Martin'),(118,'BRUNI','Gianmaria'),(119,'BRYAN','Jimmy'),(120,'BUCCI','Clemar'),(121,'BUCKNUM','Ronnie'),(122,'BUEB','Ivor'),(123,'BUEMI','Sebastien'),(124,'BUENO','Luiz'),(125,'BURGESS','Ian'),(126,'BURTI','Luciano'),(127,'BUSSINELLO','Roberto'),(128,'BUTTON','Jenson'),(129,'BYRNE','Tommy'),(130,'CABIANCA','Giulio'),(131,'CADE','Phil'),(132,'CAFFI','Alex'),(133,'CAMPBELL-JONES','John'),(134,'CAMPOS','Adrian'),(135,'CANNON','John'),(136,'CANTONI','Eitel'),(137,'CANTRELL','Bill'),(138,'CAPELLI','Ivan'),(139,'CARINI','Piero'),(140,'CARTER','Duane'),(141,'CASTELLOTTI','Eugenio'),(142,'CECOTTO','Johnny'),(143,'CEVERT','Francois'),(144,'CHABOUD','Eugène'),(145,'CHAMBERLAIN','Jay'),(146,'CHAPMAN','Colin'),(147,'CHARLTON','Dave'),(148,'CHAVES','Pedro Matos'),(149,'CHEESBOURG','Bill'),(150,'CHEEVER','Eddie'),(151,'CHIESA','Andrea'),(152,'CHIMERI','Ettore'),(153,'CHIRON','Louis'),(154,'CHITWOOD','Joie'),(155,'CHRISTIE','Bob'),(156,'CLAES','Johnny'),(157,'CLAPHAM','David'),(158,'CLARK','Jim'),(159,'COGAN','Kevin'),(160,'COLLINS','Peter'),(161,'COLLOMB','Bernard'),(162,'COLOMBO','Alberto'),(163,'COMAS','Erik'),(164,'COMOTTI','Franco'),(165,'CONNOR','George'),(166,'CONSTANTINE','George'),(167,'CORDTS','John'),(168,'COULTHARD','David'),(169,'COURAGE','Piers'),(170,'CRAFT','Chris'),(171,'CRAWFORD','Jim'),(172,'CRAWFORD','Ray'),(173,'CRESPO','Alberto'),(174,'CREUS','Antonio'),(175,'CROCKETT','Larry'),(176,'CROOK','Tony'),(177,'CROSS','Art'),(178,'CROSSLEY','Geoff'),(179,'DA MATTA','Cristiano'),(180,'DA SLIVA RAMOS','Hernando'),(181,'DAIGH','Chuck'),(182,'DALMAS','Yannick'),(183,'DALY','Derek'),(184,'DANNER','Christian'),(185,'DAPONTE','Jorge'),(186,'DAVIDSON','Anthony'),(187,'DAVIES','Jimmy'),(188,'DAVIS','Colin'),(189,'DAYWALT','Jimmy'),(190,'DE ADAMICH','Andrea'),(191,'DE ANGELIS','Elio'),(192,'DE ARAUJO CABRAL','Mario'),(193,'DE CESARIS','Andrea'),(194,'DE CHANGY','Alain'),(195,'DE DRYVER','Bernard'),(196,'DE FILIPPIS','Maria Teresa'),(197,'DE GRAFFENRIED','Emmanuel'),(198,'DE KLERK','Peter'),(199,'DE LA ROSA','Pedro'),(200,'DE PORTAGO','Alfonso'),(201,'DE RIU','Giovanni'),(202,'DE TOMASO','Alejandro'),(203,'DE TORNACO','Charles'),(204,'DE VILLOTA','Emilio'),(205,'DE VOS','Ernie'),(206,'DELETRAZ','Jean-Denis'),(207,'DEPAILLER','Patrick'),(208,'DINIZ','Pedro'),(209,'DINSMORE','Duke'),(210,'DOCHNAL','Frank'),(211,'DOLHEM','Jose'),(212,'DONNELLY','Martin'),(213,'DONOHUE','Mark'),(214,'DOORNBOS','Robert'),(215,'D\'OREY','Fritz'),(216,'DOWNING','Ken'),(217,'DRAKE','Bob'),(218,'DRIVER','Paddy'),(219,'DROGO','Piero'),(220,'DUKE','Geoff'),(221,'DUMFRIES','Johnny'),(222,'DUNCAN','Len'),(223,'DUSIO','Piero'),(224,'EATON','George'),(225,'ECCLESTONE','Bernie'),(226,'EDMUNDS','Don'),(227,'EDWARDS','Guy'),(228,'ELFORD','Vic'),(229,'ELISIAN','Ed'),(230,'EMERY','Paul'),(231,'ENGE','Tomas'),(232,'ENGLAND','Paul'),(233,'ERTL','Harald'),(234,'ESTEFANO','Nasif'),(235,'ETANCELIN','Philippe'),(236,'EVANS','Bob'),(237,'FABI','Corrado'),(238,'FABI','Teo'),(239,'FABRE','Pascal'),(240,'FACETTI','Carlo'),(241,'FAGIOLI','Luigi'),(242,'FAIRMAN','Jack'),(243,'FANGIO','Juan Manuel'),(244,'FARINA','Nino'),(245,'FAULKNER','Walt'),(246,'FERGUSON','William'),(247,'FIRMAN','Ralph'),(248,'FISCHER','Ludwig'),(249,'FISCHER','Rudi'),(250,'FISHER','Mike'),(251,'FISICHELLA','Giancarlo'),(252,'FITCH','John'),(253,'FITTIPALDI','Christian'),(254,'FITTIPALDI','Emerson'),(255,'FITTIPALDI','Wilson'),(256,'FITZAU','Theo'),(257,'FLAHERTY','Pat'),(258,'FLINTERMAN','Jan'),(259,'FLOCKHART','Ron'),(260,'FOHR','Myron'),(261,'FOITEK','Gregor'),(262,'FOLLMER','George'),(263,'FONDER','George'),(264,'FONTANA','Norberto'),(265,'FONTES BAYARDO','Azdrubal'),(266,'FORBERG','Carl'),(267,'FORCE','Gene'),(268,'FORINI','Franco'),(269,'FOTHERINGHAM-PARKER','Philip'),(270,'FOYT','A.J.'),(271,'FRANCIA','Giorgio'),(272,'FREELAND','Don'),(273,'FRENTZEN','Heinz-Harald'),(274,'FRERE','Paul'),(275,'FRIESACHER','Patrick'),(276,'FRY','Joe'),(277,'FUSHIDA','Hiroshi'),(278,'GABBIANI','Beppe'),(279,'GACHOT','Bertrand'),(280,'GAILLARD','Patrick'),(281,'GALICA','Divina'),(282,'GALLI','Nanni'),(283,'GALVEZ','Oscar Alfredo'),(284,'GAMBLE','Fred'),(285,'GANLEY','Howden'),(286,'GARDNER','Frank'),(287,'GARRETT','Billy'),(288,'GARTNER','Jo'),(289,'GAZE','Tony'),(290,'GEKI','NN'),(291,'GENDEBIEN','Olivier'),(292,'GENE','Marc'),(293,'GEORGE','Elmer'),(294,'GERARD','Bob'),(295,'GERINI','Gerino'),(296,'GETHIN','Peter'),(297,'GHINZANI','Piercarlo'),(298,'GIACOMELLI','Bruno'),(299,'GIBSON','Dick'),(300,'GINTHER','Richie'),(301,'GIRAUD-CABANTOUS','Yves'),(302,'GIUNTI','Ignazio'),(303,'GLOCK','Timo'),(304,'GLOECKLER','Helm'),(305,'GODIA','Paco'),(306,'GODIN DE BEAUFORT','Carel'),(307,'GOETHALS','Christian'),(308,'GOLDSMITH','Paul'),(309,'GONZALEZ','Jose Froilan'),(310,'GONZALEZ','Oscar'),(311,'GORDINI','Aldo'),(312,'GOULD','Horace'),(313,'GOUNON','Jean-Marc'),(314,'GREEN','Cecil'),(315,'GREENE','Keith'),(316,'GREGORY','Masten'),(317,'GRIFFITH','Cliff'),(318,'GRIGNARD','Georges'),(319,'GRIM','Bobby'),(320,'GROSJEAN','Romain'),(321,'GROUILLARD','Olivier'),(322,'GUBBY','Brian'),(323,'GUELFI','Andre'),(324,'GUERRA','Miguel Angel'),(325,'GUERRERO','Roberto'),(326,'GUGELMIN','Mauricio'),(327,'GURNEY','Dan'),(328,'HAHNE','Hubert'),(329,'HAILWOOD','Mike'),(330,'HAKKINEN','Mika'),(331,'HALFORD','Bruce'),(332,'HALL','Jim'),(333,'HAMILTON','Duncan'),(334,'HAMILTON','Lewis'),(335,'HAMPSHIRE','David'),(336,'HANKS','Sam'),(337,'HANSGEN','Walt'),(338,'HARRIS','Mike'),(339,'HARRISON','Cuth'),(340,'HART','Brian'),(341,'HARTLEY','Gene'),(342,'HASEMI','Masahiro'),(343,'HATTORI','Naoki'),(344,'HAWKINS','Paul'),(345,'HAWTHORN','Mike'),(346,'HAYJE','Boy'),(347,'HEEKS','Willi'),(348,'HEIDFELD','Nick'),(349,'HELFRICH','Theo'),(350,'HELLINGS','Mack'),(351,'HENTON','Brian'),(352,'HERBERT','Johnny'),(353,'HERMAN','Al'),(354,'HERRMANN','Hans'),(355,'HESNAULT','Francois'),(356,'HEYER','Hans'),(357,'HILL','Damon'),(358,'HILL','Graham'),(359,'HILL','Phil'),(360,'HIRT','Peter'),(361,'HOBBS','David'),(362,'HOCKING','Gary'),(363,'HOFFMANN','Ingo'),(364,'HOLLAND','Bill'),(365,'HOLMES','Jackie'),(366,'HOMEIER','Bill'),(367,'HOSHINO','Kazuyoshi'),(368,'HOYT','Jerry'),(369,'HULME','Denny'),(370,'HUNT','James'),(371,'HURTUBISE','Jim'),(372,'HUTCHISON','Gus'),(373,'ICKX','Jacky'),(374,'IDE','Yuji'),(375,'IGLESIAS','Jesus'),(376,'INOUE','Taki'),(377,'IRELAND','Innes'),(378,'IRVINE','Eddie'),(379,'IRWIN','Chris'),(380,'JABOUILLE','Jean-Pierre'),(381,'JACKSON','Jimmy'),(382,'JAMES','Joe'),(383,'JAMES','John'),(384,'JARIER','Jean-Pierre'),(385,'JEAN','Max'),(386,'JOHANSSON','Stefan'),(387,'JOHNSON','Eddie'),(388,'JOHNSON','Leslie'),(389,'JOHNSTONE','Bruce'),(390,'JONES','Alan'),(391,'JONES','Tom'),(392,'JOVER','Juan'),(393,'KARCH','Oswald'),(394,'KARTHIKEYAN','Narain'),(395,'KATAYAMA','Ukyo'),(396,'KAVANAGH','Ken'),(397,'KEEGAN','Rupert'),(398,'KEIZAN','Eddie'),(399,'KELLER','Al'),(400,'KELLY','Joe'),(401,'KENNEDY','Dave'),(402,'KESSEL','Loris'),(403,'KESSLER','Bruce'),(404,'KIESA','Nicolas'),(405,'KINNUNEN','Leo'),(406,'KLADIS','Danny'),(407,'KLENK','Hans'),(408,'KLIEN','Christian'),(409,'KLING','Karl'),(410,'KLODWIG','Ernst'),(411,'KOBAYASHI','Kamui'),(412,'KOINIGG','Helmuth'),(413,'KOVALAINEN','Heikki'),(414,'KOZAROWITZKY','Mikko'),(415,'KRAKAU','Willi'),(416,'KRAUSE','Rudolf'),(417,'KUBICA','Robert'),(418,'KUHNKE','Kurt'),(419,'KUWASHIMA','Masami'),(420,'LA CAZE','Robert'),(421,'LAFFITE','Jacques'),(422,'LAGORCE','Franck'),(423,'LAMMERS','Jan'),(424,'LAMY','Pedro'),(425,'LANDI','Chico'),(426,'LANG','Hermann'),(427,'LANGES','Claudio'),(428,'LARINI','Nicola'),(429,'LARRAURI','Oscar'),(430,'LARROUSSE','Gerard'),(431,'LARSON','Jud'),(432,'LAUDA','Niki'),(433,'LAURENT','Roger'),(434,'LAVAGGI','Giovanni'),(435,'LAWRENCE','Chris'),(436,'LECLERE','Michel'),(437,'LEDERLE','Neville'),(438,'LEES','Geoff'),(439,'LEGAT','Arthur'),(440,'LEHTO','JJ'),(441,'LEONI','Lamberto'),(442,'LESTON','Les'),(443,'LEVEGH','Pierre'),(444,'LEVRETT','Bayliss'),(445,'LEWIS','Jackie'),(446,'LEWIS-EVANS','Stuart'),(447,'LIGIER','Guy'),(448,'LINDEN','Andy'),(449,'LIPPI','Roberto'),(450,'LIUZZI','Vitantonio'),(451,'LOMBARDI','Lella'),(452,'LONDONO','Ricardo'),(453,'LOOF','Ernst'),(454,'LOUVEAU','Henri'),(455,'LOVE','John'),(456,'LOVELY','Pete'),(457,'LOYER','Roger'),(458,'LUCAS','Jean'),(459,'LUCIENBONNET','Jean'),(460,'LUNGER','Brett'),(461,'MACDOWEL','Mike'),(462,'MACKAY-FRASER','Herbert'),(463,'MACKEY','Bill'),(464,'MACKLIN','Lance'),(465,'MAGEE','Damien'),(466,'MAGGS','Tony'),(467,'MAGILL','Mike'),(468,'MAGLIOLI','Umberto'),(469,'MAGNUSSEN','Jan'),(470,'MAIRESSE','Guy'),(471,'MAIRESSE','Willy'),(472,'MANSELL','Nigel'),(473,'MANTOVANI','Sergio'),(474,'MANTZ','Johnny'),(475,'MANZON','Robert'),(476,'MARIMON','Onofre'),(477,'MARKO','Helmut'),(478,'MARQUES','Tarso'),(479,'MARR','Leslie'),(480,'MARSH','Tony'),(481,'MARTIN','Eugene'),(482,'MARTINI','Pierluigi'),(483,'MASS','Jochen'),(484,'MASSA','Felipe'),(485,'MAY','Michael'),(486,'MAYER','Timmy'),(487,'MAZET','Francois'),(488,'MAZZACANE','Gaston'),(489,'MCALPINE','Kenneth'),(490,'MCCARTHY','Perry'),(491,'MCCOY','Ernie'),(492,'MCDOWELL','Johnny'),(493,'MCGRATH','Jack'),(494,'MCGUIRE','Brian'),(495,'MCLAREN','Bruce'),(496,'MCNISH','Allan'),(497,'MCRAE','Graham'),(498,'MCWITHEY','Jim'),(499,'MENDITEGUY','Carlos'),(500,'MERKEL','Harry'),(501,'MERZARIO','Arturo'),(502,'MIERES','Roberto'),(503,'MIGAULT','Francois'),(504,'MILES','John'),(505,'MILES','Ken'),(506,'MILHOUX','Andre'),(507,'MILLER','Chet'),(508,'MITTER','Gerhard'),(509,'MODENA','Stefano'),(510,'MONARCH','Thomas'),(511,'MONTAGNY','Franck'),(512,'MONTEIRO','Tiago'),(513,'MONTERMINI','Andrea'),(514,'MONTEVERDI','Peter'),(515,'MONTGOMERIE-CHARRING','Robin'),(516,'MONTOYA','Juan Pablo'),(517,'MORBIDELLI','Gianni'),(518,'MORENO','Roberto'),(519,'MORGAN','Dave'),(520,'MOSER','Silvio'),(521,'MOSS','Bill'),(522,'MOSS','Stirling'),(523,'MUNARON','Gino'),(524,'MURRAY','David'),(525,'MUSSO','Luigi'),(526,'NAKAJIMA','Kazuki'),(527,'NAKAJIMA','Satoru'),(528,'NAKANO','Shinji'),(529,'NALON','Duke'),(530,'NANNINI','Alessandro'),(531,'NASPETTI','Emanuele'),(532,'NATILI','Massimo'),(533,'NAYLOR','Brian'),(534,'NAZARUK','Mike'),(535,'NEEDELL','Tiff'),(536,'NELLEMAN','Jac'),(537,'NEVE','Patrick'),(538,'NICHOLSON','John'),(539,'NIDAY','Cal'),(540,'NIEDERMAYR','Helmut'),(541,'NIEMANN','Brausch'),(542,'NILSSON','Gunnar'),(543,'NODA','Hideki'),(544,'NUCKEY','Rodney'),(545,'O\'BRIEN','Robert'),(546,'O\'CONNOR','Pat'),(547,'OLIVER','Jackie'),(548,'ONGAIS','Danny'),(549,'OPPITZHAUSER','Karl'),(550,'OWEN','Arthur'),(551,'PACE','Carlos'),(552,'PAGANI','Nello'),(553,'PALETTI','Riccardo'),(554,'PALM','Torsten'),(555,'PALMER','Jonathan'),(556,'PANIS','Olivier'),(557,'PANTANO','Giorgio'),(558,'PAPIS','Massimiliano'),(559,'PARKES','Mike'),(560,'PARNELL','Reg'),(561,'PARNELL','Tim'),(562,'PARSONS','Johnnie'),(563,'PATRESE','Riccardo'),(564,'PEASE','Al'),(565,'PENSKE','Roger'),(566,'PERDISA','Cesare'),(567,'PEREZ-SALA','Luis'),(568,'PERKINS','Larry'),(569,'PESCAROLO','Henri'),(570,'PESENTI-ROSSI','Alessandro'),(571,'PETERS','Josef'),(572,'PETERSON','Ronnie'),(573,'PIAN','Alfredo'),(574,'PICARD','Francois'),(575,'PIETERSE','Ernie'),(576,'PIETSCH','Paul'),(577,'PILETTE','Andre'),(578,'PILETTE','Teddy'),(579,'PIOTTI','Luigi'),(580,'PIPER','David'),(581,'PIQUET','Nelson'),(582,'PIQUET','Nelson Jr.'),(583,'PIROCCHI','Renato'),(584,'PIRONI','Didier'),(585,'PIRRO','Emanuele'),(586,'PIZZONIA','Antonio'),(587,'POLLET','Jacques'),(588,'PON','Ben'),(589,'POORE','Dennis'),(590,'POSEY','Sam'),(591,'POZZI','Charles'),(592,'PRETORIUS','Jackie'),(593,'PRINOTH','Ernesto'),(594,'PROPHET','David'),(595,'PROST','Alain'),(596,'PRYCE','Tom'),(597,'PURLEY','David'),(598,'PUZEY','Clive'),(599,'QUESTER','Dieter'),(600,'RABY','Ian'),(601,'RAHAL','Bobby'),(602,'RAIKKONEN','Kimi'),(603,'RAPHANEL','Pierre-Henri'),(604,'RATHMANN','Dick'),(605,'RATHMANN','Jim'),(606,'RATZENBERGER','Roland'),(607,'REBAQUE','Hector'),(608,'REDMAN','Brian'),(609,'REECE','Jimmy'),(610,'REED','Ray'),(611,'REES','Alan'),(612,'REGAZZONI','Clay'),(613,'REUTEMANN','Carlos'),(614,'REVENTLOW','Lance'),(615,'REVSON','Peter'),(616,'RHODES','John'),(617,'RIBEIRO','Alex'),(618,'RICHARDSON','Ken'),(619,'RIESS','Fritz'),(620,'RIGSBY','Jim'),(621,'RINDT','Jochen'),(622,'RISELEY-PRICHARD','John'),(623,'ROBARTS','Richard'),(624,'RODRIGUEZ','Pedro'),(625,'RODRIGUEZ','Ricardo'),(626,'RODRIGUEZ LARRETA','Alberto'),(627,'ROL','Franco'),(628,'ROLLINSON','Alan'),(629,'ROLT','Tony'),(630,'ROOS','Bertil'),(631,'ROSBERG','Keke'),(632,'ROSBERG','Nico'),(633,'ROSE','Mauri'),(634,'ROSIER','Louis'),(635,'ROSSET','Ricardo'),(636,'ROTHENGATTER','Huub'),(637,'RUBY','Lloyd'),(638,'RUDAZ','Jean-Claude'),(639,'RUSSO','Eddie'),(640,'RUSSO','Paul'),(641,'RUTTMAN','Troy'),(642,'RYAN','Peter'),(643,'SACHS','Eddie'),(644,'SAID','Bob'),(645,'SALAZAR','Eliseo'),(646,'SALO','Mika'),(647,'SALVADORI','Roy'),(648,'SANESI','Consalvo'),(649,'SARRAZIN','Stephane'),(650,'SATO','Takuma'),(651,'SCARBOROUGH','Carl'),(652,'SCARFIOTTI','Ludovico'),(653,'SCARLATTI','Giorgio'),(654,'SCHECKTER','Ian'),(655,'SCHECKTER','Jody'),(656,'SCHELL','Harry'),(657,'SCHENKEN','Tim'),(658,'SCHERRER','Albert'),(659,'SCHIATTARELLA','Domenico'),(660,'SCHILLER','Heinz'),(661,'SCHINDLER','Bill'),(662,'SCHLESSER','Jean-Louis'),(663,'SCHLESSER','Jo'),(664,'SCHNEIDER','Bernd'),(665,'SCHOELLER','Rudolf'),(666,'SCHROEDER','Rob'),(667,'SCHUMACHER','Michael'),(668,'SCHUMACHER','Ralf'),(669,'SCHUPPAN','Vern'),(670,'SCHWELM CRUZ','Adolfo'),(671,'SCOTT','Bob'),(672,'SCOTT BROWN','Archie'),(673,'SCOTTI','Piero'),(674,'SEIDEL','Wolfgang'),(675,'SEIFFERT','Guenther'),(676,'SENNA','Ayrton'),(677,'SERAFINI','Dorino'),(678,'SERRA','Chico'),(679,'SERRURIER','Doug'),(680,'SERVOZ-GAVIN','Johnny'),(681,'SETTEMBER','Tony'),(682,'SHARP','Hap'),(683,'SHAWE-TAYLOR','Brian'),(684,'SHELBY','Carroll'),(685,'SHELLY','Tony'),(686,'SIFFERT','Jo'),(687,'SIMON','Andre'),(688,'SLOTEMAKER','Rob'),(689,'SOLANA','Moises'),(690,'SOLER-ROIG','Alex'),(691,'SOMMER','Raymond'),(692,'SOSPIRI','Vincenzo'),(693,'SOUTH','Stephen'),(694,'SPARKEN','Mike'),(695,'SPEED','Scott'),(696,'SPENCE','Mike'),(697,'STACEY','Alan'),(698,'STARRABBA','Gaetano'),(699,'STEVENSON','Chuck'),(700,'STEWART','Ian'),(701,'STEWART','Jackie'),(702,'STEWART','Jimmy'),(703,'STOHR','Siegfried'),(704,'STOMMELEN','Rolf'),(705,'STREIFF','Philippe'),(706,'STUCK','Hans'),(707,'STUCK','Hans Joachim'),(708,'STUPPACHER','Otto'),(709,'SULLIVAN','Danny'),(710,'SURER','Marc'),(711,'SURTEES','John'),(712,'SUTCLIFFE','Andy'),(713,'SUTIL','Adrian'),(714,'SUTTON','Len'),(715,'SUZUKI','Aguri'),(716,'SUZUKI','Toshio'),(717,'SWATERS','Jacques'),(718,'SWEIKERT','Bob'),(719,'TAKAGI','Toranosuke'),(720,'TAKAHARA','Noritake'),(721,'TAKAHASHI','Kunimitsu'),(722,'TAMBAY','Patrick'),(723,'TARAMAZZO','Luigi'),(724,'TARQUINI','Gabriele'),(725,'TARUFFI','Piero'),(726,'TAYLOR','Dennis'),(727,'TAYLOR','Henry'),(728,'TAYLOR','John'),(729,'TAYLOR','Mike'),(730,'TAYLOR','Trevor'),(731,'TEAGUE','Marshall'),(732,'TEMPLEMAN','Shorty'),(733,'TERRA','Max de'),(734,'TESTUT','Andre'),(735,'THACKWELL','Mike'),(736,'THIELE','Alfonso'),(737,'THOMPSON','Eric'),(738,'THOMSON','Johnny'),(739,'THORNE','Leslie'),(740,'TINGELSTAD','Bud'),(741,'TINGLE','Sam'),(742,'TITTERINGTON','Desmond'),(743,'TOLAN','Johnnie'),(744,'TRIMMER','Tony'),(745,'TRINTIGNANT','Maurice'),(746,'TRULLI','Jarno'),(747,'TUERO','Esteban'),(748,'TUNMER','Guy'),(749,'TURNER','Jack'),(750,'ULMEN','Toni'),(751,'UNSER','Bobby'),(752,'UNSER','Jerry'),(753,'URIA','Alberto'),(754,'VACCARELLA','Nino'),(755,'VAN DE POELE','Eric'),(756,'VAN DER LOF','Dries'),(757,'VAN DER VYVER','Syd'),(758,'VAN LENNEP','Gijs'),(759,'VAN ROOYEN','Basil'),(760,'VEITH','Bob'),(761,'VERSTAPPEN','Jos'),(762,'VETTEL','Sebastian'),(763,'VILLENEUVE','Gilles'),(764,'VILLENEUVE','Jacques'),(765,'VILLENEUVE SR.','Jacques'),(766,'VILLORESI','Luigi'),(767,'VOLONTERIO','Ottorino'),(768,'VON OPEL','Rikky'),(769,'VON TRIPS','Wolfgang'),(770,'VONLANTHEN','Jo'),(771,'VUKOVICH','Bill'),(772,'WACKER','Fred'),(773,'WALKER','David'),(774,'WALKER','Peter'),(775,'WALLARD','Lee'),(776,'WALTER','Heini'),(777,'WARD','Rodger'),(778,'WARWICK','Derek'),(779,'WATSON','John'),(780,'WEBB','Spider'),(781,'WEBBER','Mark'),(782,'WEIDLER','Volker'),(783,'WEILER','Wayne'),(784,'WENDLINGER','Karl'),(785,'WESTBURY','Peter'),(786,'WEYANT','Chuck'),(787,'WHARTON','Ken'),(788,'WHITEAWAY','Ted'),(789,'WHITEHEAD','Graham'),(790,'WHITEHEAD','Peter'),(791,'WHITEHOUSE','Bill'),(792,'WIDDOWS','Robin'),(793,'WIETZES','Eppie'),(794,'WILDS','Mike'),(795,'WILLIAMS','Jonathan'),(796,'WILLIAMSON','Roger'),(797,'WILSON','Dempsey'),(798,'WILSON','Desire'),(799,'WILSON','Justin'),(800,'WILSON','Vic'),(801,'WINKELHOCK','Joachim'),(802,'WINKELHOCK','Manfred'),(803,'WINKELHOCK','Markus'),(804,'WISELL','Reine'),(805,'WUNDERINK','Roelof'),(806,'WURZ','Alexander'),(807,'YAMAMOTO','Sakon'),(808,'YOONG','Alex'),(809,'ZANARDI','Alex'),(810,'ZAPICO','Emilio'),(811,'ZONTA','Ricardo'),(812,'ZORZI','Renzo'),(813,'ZUNINO','Ricardo'),(814,'CHANDHOK','Karun'),(815,'DI GRASSI','Lucas'),(816,'HUELKENBERG','Nico'),(817,'PETROV','Vitaly'),(818,'SENNA','Bruno'),(819,'D\'AMBROSIO','Jerome'),(820,'DI RESTA','Paul'),(821,'MALDONADO','Pastor'),(822,'PEREZ','Sergio'),(823,'PIC','Charles'),(824,'RICCIARDO','Daniel'),(825,'VERGNE','Jean-Eric'),(826,'BIANCHI','Jules'),(827,'BOTTAS','Valtteri'),(828,'CHILTON','Max'),(829,'GUTIERREZ','Esteban'),(830,'VAN DER GARDE','Giedo'),(831,'ERICSSON','Marcus'),(832,'KVYAT','Daniil'),(833,'LOTTERER','Andre'),(834,'MAGNUSSEN','Kevin'),(835,'STEVENS','Will'),(836,'MERHI','Roberto'),(837,'NASR','Felipe'),(838,'ROSSI','Alexander'),(839,'SAINZ','Carlos Jr.'),(840,'VERSTAPPEN','Max'),(841,'HARYANTO','Rio'),(842,'OCON','Esteban'),(843,'PALMER','Jolyon'),(844,'VANDOORNE','Stoffel'),(845,'WEHRLEIN','Pascal'); /*!40000 ALTER TABLE `alldrivers` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `drivers` -- DROP TABLE IF EXISTS `drivers`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `drivers` ( `d_id` int(4) NOT NULL AUTO_INCREMENT, `d_lname` varchar(20) NOT NULL DEFAULT '', `d_fname` varchar(20) NOT NULL DEFAULT '', `d_currseason` int(1) NOT NULL DEFAULT '0', `d_miod` int(3) NOT NULL DEFAULT '0', `d_fa_id` int(3) NOT NULL DEFAULT '0', PRIMARY KEY (`d_id`) ) ENGINE=MyISAM AUTO_INCREMENT=52 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `drivers` -- LOCK TABLES `drivers` WRITE; /*!40000 ALTER TABLE `drivers` DISABLE KEYS */; INSERT INTO `drivers` VALUES (1,'HAMILTON','Lewis',1,30,11),(2,'ROSBERG','Nico',1,29,11),(3,'VETTEL','Sebastian',1,28,1),(4,'RAIKKONEN','Kimi',1,27,1),(5,'BOTTAS','Valtteri',1,26,23),(6,'MASSA','Felipe',1,25,23),(7,'KVYAT','Daniil',1,24,6),(8,'RICCIARDO','Daniel',1,23,28),(9,'PEREZ','Sergio',1,22,14),(10,'HUELKENBERG','Nico',1,21,14),(11,'VERSTAPPEN','Max',1,19,28),(12,'SAINZ','Carlos Jr.',1,17,6),(13,'BUTTON','Jenson',1,16,25),(14,'ALONSO','Fernando',1,15,25),(15,'NASR','Felipe',1,18,12),(16,'ERICSSON','Marcus',1,14,12),(17,'PALMER','Jolyon',1,11,4),(18,'MAGNUSSEN','Kevin',1,12,4),(19,'WEHRLEIN','Pascal',1,9,27),(20,'HARYANTO','Rio',1,10,27),(21,'GROSJEAN','Romain',1,20,29),(22,'GUTIERREZ','Esteban',1,13,29),(23,'VANDOORNE','Stoffel',1,0,25),(24,'OCON','Esteban',1,0,27); /*!40000 ALTER TABLE `drivers` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `events` -- DROP TABLE IF EXISTS `events`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `events` ( `e_id` int(2) NOT NULL AUTO_INCREMENT, `e_type` varchar(20) NOT NULL DEFAULT '', PRIMARY KEY (`e_id`) ) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `events` -- LOCK TABLES `events` WRITE; /*!40000 ALTER TABLE `events` DISABLE KEYS */; INSERT INTO `events` VALUES (1,'QUALIFYING'),(2,'RACE'); /*!40000 ALTER TABLE `events` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `fflassets` -- DROP TABLE IF EXISTS `fflassets`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `fflassets` ( `fa_id` int(4) NOT NULL AUTO_INCREMENT, `fa_currseason` int(1) NOT NULL DEFAULT '0', `fa_chassis` varchar(30) NOT NULL DEFAULT '', `fa_mioc` int(3) NOT NULL DEFAULT '0', `fa_engine` varchar(30) NOT NULL DEFAULT '', `fa_mioe` int(3) NOT NULL DEFAULT '0', PRIMARY KEY (`fa_id`) ) ENGINE=MyISAM AUTO_INCREMENT=32 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `fflassets` -- LOCK TABLES `fflassets` WRITE; /*!40000 ALTER TABLE `fflassets` DISABLE KEYS */; INSERT INTO `fflassets` VALUES (1,1,'Ferrari',29,'Ferrari (Ferrari)',27),(2,0,'McLaren',0,'Mercedes (McLaren)',0),(3,0,'BMW Sauber',0,'BMW (BMW Sauber)',0),(4,1,'Renault',25,'Renault (Renault)',22),(5,0,'Toyota',0,'Toyota (Toyota)',0),(6,1,'Toro Rosso',24,'Ferrari (Toro Rosso)',26),(7,0,'Red Bull',0,'Renault (Red Bull)',0),(8,0,'Williams',0,'Toyota (Williams)',0),(9,0,'Brawn',0,'Mercedes (Brawn)',0),(10,0,'Force India',0,'Ferrari (Force India)',0),(11,1,'Mercedes GP',30,'Mercedes (Mercedes GP)',30),(12,1,'Sauber',23,'Ferrari (Sauber)',25),(13,0,'Williams',0,'Cosworth (Williams)',0),(14,1,'Force India',26,'Mercedes (Force India)',28),(15,0,'Lotus',0,'Cosworth (Lotus)',0),(16,0,'HRT',0,'Cosworth (HRT)',0),(17,0,'Virgin',0,'Cosworth (Virgin)',0),(18,0,'Lotus',0,'Renault (Lotus)',0),(19,0,'Williams',0,'Renault (Williams)',0),(20,0,'Caterham',0,'Renault (Caterham)',0),(21,0,'Marussia',0,'Cosworth (Marussia)',0),(22,0,'Toro Rosso',0,'Renault (Toro Rosso)',0),(23,1,'Williams',28,'Mercedes (Williams)',29),(24,0,'Marussia',0,'Ferrari (Marussia)',0),(25,1,'McLaren',22,'Honda (McLaren)',21),(26,0,'Lotus',0,'Mercedes (Lotus)',0),(27,1,'Manor',21,'Ferrari (Manor)',24),(28,1,'Red Bull',27,'TAG Heuer (Red Bull)',20),(29,1,'Haas',20,'Ferrari (Haas)',23); /*!40000 ALTER TABLE `fflassets` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `fflpoints` -- DROP TABLE IF EXISTS `fflpoints`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `fflpoints` ( `fp_u_id` int(4) NOT NULL DEFAULT '0', `fp_g_id` int(4) NOT NULL DEFAULT '0', `fp_points` decimal(4,1) NOT NULL DEFAULT '0.0' ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `fflpoints` -- LOCK TABLES `fflpoints` WRITE; /*!40000 ALTER TABLE `fflpoints` DISABLE KEYS */; INSERT INTO `fflpoints` VALUES (1,1,'87.0'),(12,1,'70.0'),(21,1,'86.0'),(10,1,'33.0'),(9,1,'70.0'),(18,1,'60.0'),(20,1,'87.0'),(1,2,'88.0'),(12,2,'58.0'),(21,2,'80.0'),(10,2,'33.0'),(9,2,'70.0'),(18,2,'58.0'),(20,2,'88.0'),(1,3,'66.0'),(12,3,'76.0'),(21,3,'62.0'),(10,3,'34.0'),(9,3,'71.0'),(18,3,'61.0'),(20,3,'66.0'),(1,4,'86.0'),(12,4,'49.0'),(21,4,'100.0'),(10,4,'39.0'),(9,4,'58.0'),(18,4,'66.0'),(20,4,'86.0'),(1,5,'25.0'),(12,5,'52.0'),(21,5,'0.0'),(10,5,'33.0'),(9,5,'45.0'),(18,5,'41.0'),(20,5,'25.0'),(1,6,'62.0'),(12,6,'61.0'),(21,6,'72.0'),(10,6,'37.0'),(9,6,'61.0'),(18,6,'57.0'),(20,6,'62.0'),(1,7,'82.0'),(12,7,'71.0'),(21,7,'70.0'),(10,7,'51.0'),(9,7,'67.0'),(18,7,'63.0'),(20,7,'82.0'),(1,8,'74.0'),(12,8,'63.0'),(21,8,'70.0'),(10,8,'40.0'),(9,8,'71.0'),(18,8,'65.0'),(20,8,'74.0'),(1,9,'92.0'),(12,9,'65.0'),(21,9,'74.0'),(10,9,'41.0'),(9,9,'62.0'),(18,9,'56.0'),(20,9,'92.0'),(1,10,'98.0'),(12,10,'72.0'),(21,10,'80.0'),(10,10,'37.0'),(9,10,'64.0'),(18,10,'56.0'),(20,10,'98.0'),(1,11,'96.0'),(12,11,'80.0'),(21,11,'92.0'),(10,11,'45.0'),(9,11,'78.0'),(18,11,'73.0'),(20,11,'96.0'),(1,12,'89.0'),(12,12,'80.0'),(21,12,'74.0'),(10,12,'43.0'),(9,12,'73.0'),(18,12,'55.0'),(20,12,'89.0'),(1,13,'80.0'),(12,13,'66.0'),(21,13,'86.0'),(10,13,'25.0'),(9,13,'68.0'),(18,13,'56.0'),(20,13,'80.0'),(1,14,'92.0'),(12,14,'74.0'),(21,14,'86.0'),(10,14,'45.0'),(9,14,'80.0'),(18,14,'70.0'),(20,14,'92.0'),(1,15,'88.0'),(12,15,'77.0'),(21,15,'87.0'),(10,15,'38.0'),(9,15,'80.0'),(18,15,'68.0'),(20,15,'88.0'),(1,16,'49.0'),(12,16,'58.0'),(21,16,'36.0'),(10,16,'13.0'),(9,16,'52.0'),(18,16,'33.0'),(20,16,'49.0'),(1,17,'98.0'),(12,17,'78.0'),(21,17,'80.0'),(10,17,'37.0'),(9,17,'70.0'),(18,17,'62.0'),(20,17,'98.0'),(1,18,'86.0'),(12,18,'70.0'),(21,18,'96.0'),(10,18,'37.0'),(9,18,'70.0'),(18,18,'73.0'),(20,18,'86.0'),(20,19,'98.0'),(18,19,'61.0'),(9,19,'76.0'),(10,19,'43.0'),(21,19,'86.0'),(12,19,'80.0'),(1,19,'98.0'),(1,20,'101.0'),(12,20,'72.0'),(21,20,'87.0'),(10,20,'35.0'),(9,20,'57.0'),(18,20,'62.0'),(20,20,'101.0'),(1,21,'98.0'),(12,21,'80.0'),(21,21,'87.0'),(10,21,'48.0'),(9,21,'76.0'),(18,21,'67.0'),(20,21,'98.0'); /*!40000 ALTER TABLE `fflpoints` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `fflresults` -- DROP TABLE IF EXISTS `fflresults`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `fflresults` ( `fr_season` int(4) NOT NULL DEFAULT '0', `fr_u_id` int(4) NOT NULL DEFAULT '0', `fr_ft_a_id_d1` int(4) NOT NULL DEFAULT '0', `fr_ft_a_id_d2` int(4) NOT NULL DEFAULT '0', `fr_fa_id_chassis` int(4) NOT NULL DEFAULT '0', `fr_fa_id_engine` int(4) NOT NULL DEFAULT '0', `fr_totalpoints` decimal(5,1) DEFAULT '0.0', PRIMARY KEY (`fr_season`,`fr_u_id`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `fflresults` -- LOCK TABLES `fflresults` WRITE; /*!40000 ALTER TABLE `fflresults` DISABLE KEYS */; INSERT INTO `fflresults` VALUES (2009,0,128,762,9,9,'523.0'),(2009,1,746,762,8,7,'304.5'),(2009,2,15,251,9,1,'276.0'),(2009,3,49,303,9,1,'343.0'),(2009,6,484,128,9,6,'297.0'),(2009,9,602,128,5,7,'356.0'),(2009,10,334,128,8,9,'350.5'),(2009,11,746,128,7,1,'351.0'),(2009,12,762,128,9,1,'421.0'),(2010,0,15,713,7,7,'1295.0'),(2010,1,334,411,11,7,'984.0'),(2010,4,484,762,17,7,'898.0'),(2010,6,484,713,7,6,'702.0'),(2010,9,816,15,11,2,'942.0'),(2010,10,417,303,2,7,'1088.0'),(2010,11,818,15,1,1,'1044.0'),(2010,12,15,816,11,7,'986.0'),(2010,13,49,818,1,6,'456.0'),(2011,6,713,348,2,7,'1223.0'),(2011,1,632,822,1,7,'1128.0'),(2011,12,667,820,7,1,'1128.0'),(2011,10,484,820,7,2,'1292.0'),(2011,0,128,820,7,7,'1597.0'),(2012,1,602,816,2,7,'1108.0'),(2012,12,15,320,2,7,'1212.0'),(2012,6,411,816,7,1,'983.0'),(2012,9,667,825,7,2,'903.0'),(2012,10,762,825,2,7,'1135.0'),(2012,2,762,394,18,7,'1044.0'),(2012,7,762,818,18,18,'918.0'),(2012,0,15,320,7,7,'1294.0'),(2013,1,762,828,1,7,'1347.0'),(2013,20,602,829,1,7,'1139.0'),(2013,12,602,829,1,7,'1139.0'),(2013,10,762,830,2,7,'1115.0'),(2013,18,15,826,19,1,'601.0'),(2013,0,15,828,7,7,'1434.0'),(2014,1,762,834,1,7,'843.0'),(2014,20,762,834,11,7,'1328.0'),(2014,12,602,832,11,7,'1169.0'),(2014,10,334,821,2,7,'972.0'),(2014,9,632,834,11,1,'1289.0'),(2014,0,824,834,11,11,'1695.0'),(2015,1,832,840,11,11,'1549.0'),(2015,20,602,839,11,11,'1574.0'),(2015,21,831,602,11,25,'889.0'),(2015,9,484,839,11,1,'1274.0'),(2015,10,762,840,11,7,'1216.0'),(2015,0,602,839,11,11,'1574.0'),(2016,1,840,843,11,11,'1735.0'),(2016,12,762,834,11,28,'1452.0'),(2016,21,834,15,11,11,'1591.0'),(2016,10,334,845,1,4,'787.0'),(2016,9,824,841,11,1,'1419.0'),(2016,18,15,839,11,1,'1263.0'),(2016,20,840,843,11,11,'1735.0'),(2016,0,840,843,11,11,'1735.0'); /*!40000 ALTER TABLE `fflresults` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `fflteams` -- DROP TABLE IF EXISTS `fflteams`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `fflteams` ( `ft_u_id` int(4) NOT NULL DEFAULT '0', `ft_d_id_d1` int(4) NOT NULL DEFAULT '0', `ft_d_id_d2` int(4) NOT NULL DEFAULT '0', `ft_fa_id_chassis` int(4) NOT NULL DEFAULT '0', `ft_fa_id_engine` int(4) NOT NULL DEFAULT '0', PRIMARY KEY (`ft_u_id`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `fflteams` -- LOCK TABLES `fflteams` WRITE; /*!40000 ALTER TABLE `fflteams` DISABLE KEYS */; INSERT INTO `fflteams` VALUES (1,11,17,11,11),(12,3,18,11,28),(21,18,14,11,11),(10,1,19,1,4),(9,8,20,11,1),(18,14,12,11,1),(20,11,17,11,11); /*!40000 ALTER TABLE `fflteams` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `gps` -- DROP TABLE IF EXISTS `gps`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `gps` ( `g_id` int(4) NOT NULL AUTO_INCREMENT, `g_name` varchar(40) NOT NULL DEFAULT '', `g_datetime_q` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `g_datetime_r` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `g_flag` varchar(20) NOT NULL DEFAULT '', `g_circuit` varchar(40) NOT NULL DEFAULT '', PRIMARY KEY (`g_id`) ) ENGINE=MyISAM AUTO_INCREMENT=22 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `gps` -- LOCK TABLES `gps` WRITE; /*!40000 ALTER TABLE `gps` DISABLE KEYS */; INSERT INTO `gps` VALUES (1,'AUSTRALIA (Melbourne)','2016-03-19 07:00:00','2016-03-20 06:00:00','flag_AUSTRALIA.gif','circuit_AUSTRALIA.gif'),(2,'BAHRAIN (Sakhir)','2016-04-02 17:00:00','2016-04-03 17:00:00','flag_BAHRAIN.gif','circuit_BAHRAIN.gif'),(3,'CHINA (Shanghai)','2016-04-16 09:00:00','2016-04-17 08:00:00','flag_CHINA.gif','circuit_CHINA.gif'),(4,'RUSSIA (Sochi)','2016-04-30 14:00:00','2016-05-01 14:00:00','flag_RUSSIA.gif','circuit_RUSSIA.gif'),(5,'SPAIN (Barcelona)','2016-05-14 14:00:00','2016-05-15 14:00:00','flag_SPAIN.gif','circuit_SPAIN_(Barcelona).gif'),(6,'MONACO (Monte Carlo)','2016-05-28 14:00:00','2016-05-29 14:00:00','flag_MONACO.gif','circuit_MONACO.gif'),(7,'CANADA (Montreal)','2016-06-11 19:00:00','2016-06-12 20:00:00','flag_CANADA.gif','circuit_CANADA.gif'),(8,'EUROPE (Baku)','2016-06-18 15:00:00','2016-06-19 15:00:00','flag_EUROPE.gif','circuit_EUROPE_(Baku).gif'),(9,'AUSTRIA (Spielberg)','2016-07-02 14:00:00','2016-07-03 14:00:00','flag_AUSTRIA.gif','circuit_AUSTRIA.gif'),(10,'GREAT BRITAIN (Silverstone)','2016-07-09 14:00:00','2016-07-10 14:00:00','flag_UK.gif','circuit_UK.gif'),(11,'HUNGARY (Budapest)','2016-07-23 14:00:00','2016-07-24 14:00:00','flag_HUNGARY.gif','circuit_HUNGARY.gif'),(12,'GERMANY (Hockenheim)','2016-07-30 14:00:00','2016-07-31 14:00:00','flag_GERMANY.gif','circuit_GERMANY_(Hockenheim).gif'),(13,'BELGIUM (Spa)','2016-08-27 14:00:00','2016-08-28 14:00:00','flag_BELGIUM.gif','circuit_BELGIUM.gif'),(14,'ITALY (Monza)','2016-09-03 14:00:00','2016-09-04 14:00:00','flag_ITALY.gif','circuit_ITALY.gif'),(15,'SINGAPORE (Singapore)','2016-09-17 15:00:00','2016-09-18 14:00:00','flag_SINGAPORE.gif','circuit_SINGAPORE.gif'),(16,'MALAYSIA (Sepang)','2016-10-01 11:00:00','2016-10-02 09:00:00','flag_MALAYSIA.gif','circuit_MALAYSIA.gif'),(17,'JAPAN (Suzuka)','2016-10-08 08:00:00','2016-10-09 07:00:00','flag_JAPAN.gif','circuit_JAPAN_(Suzuka).gif'),(18,'USA (Austin)','2016-10-22 20:00:00','2016-10-23 21:00:00','flag_USA.gif','circuit_USA_(Austin).gif'),(19,'MEXICO (Mexico City)','2016-10-29 20:00:00','2016-10-30 20:00:00','flag_MEXICO.gif','circuit_MEXICO.gif'),(20,'BRAZIL (Sao Paulo)','2016-11-12 17:00:00','2016-11-13 17:00:00','flag_BRAZIL.gif','circuit_BRAZIL.gif'),(21,'UNITED ARAB EMIRATES (Abu Dhabi)','2016-11-26 14:00:00','2016-11-27 14:00:00','flag_UAE.gif','circuit_UAE.gif'); /*!40000 ALTER TABLE `gps` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `results` -- DROP TABLE IF EXISTS `results`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `results` ( `r_g_id` int(4) NOT NULL DEFAULT '0', `r_e_id` int(2) NOT NULL DEFAULT '0', `r_d_id_p1` int(4) NOT NULL DEFAULT '0', `r_d_id_p2` int(4) NOT NULL DEFAULT '0', `r_d_id_p3` int(4) NOT NULL DEFAULT '0', `r_d_id_p4` int(4) NOT NULL DEFAULT '0', `r_d_id_p5` int(4) NOT NULL DEFAULT '0', `r_d_id_p6` int(4) NOT NULL DEFAULT '0', `r_d_id_p7` int(4) NOT NULL DEFAULT '0', `r_d_id_p8` int(4) NOT NULL DEFAULT '0', `r_d_id_p9` int(4) NOT NULL DEFAULT '0', `r_d_id_p10` int(4) NOT NULL DEFAULT '0', `r_fl` int(4) NOT NULL DEFAULT '0', `r_firstout` varchar(20) NOT NULL DEFAULT '0', `r_bestcup` varchar(20) NOT NULL DEFAULT '0', `r_sc` int(2) NOT NULL DEFAULT '-1', `r_hp` int(1) NOT NULL DEFAULT '0', PRIMARY KEY (`r_g_id`,`r_e_id`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `results` -- LOCK TABLES `results` WRITE; /*!40000 ALTER TABLE `results` DISABLE KEYS */; INSERT INTO `results` VALUES (1,1,1,2,3,0,0,0,0,0,0,0,0,'0','0',-1,0),(1,2,2,1,3,8,6,21,10,5,12,11,8,'7','21',1,0),(2,1,1,2,3,0,0,0,0,0,0,0,0,'0','0',-1,0),(2,2,2,4,1,8,21,11,7,6,5,23,2,'3','18',0,0),(3,1,2,8,4,0,0,0,0,0,0,0,0,'0','0',-1,0),(3,2,2,3,7,8,4,6,1,11,12,5,10,'','1',1,0),(4,1,2,3,5,0,0,0,0,0,0,0,0,'0','0',-1,0),(4,2,2,1,4,5,6,14,18,21,9,13,2,'20,10,3','18',1,0),(5,1,1,2,8,0,0,0,0,0,0,0,0,'0','0',-1,0),(5,2,11,4,3,8,5,12,9,6,13,7,7,'1,2','6',1,0),(6,1,8,2,1,0,0,0,0,0,0,0,0,'0','0',-1,0),(6,2,1,8,9,3,14,10,2,12,13,6,1,'17','19',1,0),(7,1,1,2,3,0,0,0,0,0,0,0,0,'0','0',-1,0),(7,2,1,3,5,11,2,4,8,10,12,9,2,'13','12',1,0),(8,1,2,9,8,0,0,0,0,0,0,0,0,'0','0',-1,0),(8,2,2,3,9,4,1,5,8,11,10,6,2,'7','13,18',0,0),(9,1,1,2,10,0,0,0,0,0,0,0,0,'0','0',-1,0),(9,2,1,11,4,2,8,13,21,12,5,19,1,'7','15',1,0),(10,1,1,2,11,0,0,0,0,0,0,0,0,'0','0',-1,0),(10,2,1,11,2,8,4,9,10,12,3,7,2,'19','15',1,0),(11,1,2,1,8,0,0,0,0,0,0,0,0,'0','0',-1,0),(11,2,1,2,8,3,11,4,14,12,5,10,4,'13','4',0,0),(12,1,2,1,8,0,0,0,0,0,0,0,0,'0','0',-1,0),(12,2,1,8,11,2,3,4,10,13,5,9,8,'6','21',0,0),(13,1,2,11,4,0,0,0,0,0,0,0,0,'0','0',-1,0),(13,2,2,8,1,10,9,3,14,5,4,6,1,'19','1',1,0),(14,1,1,2,3,0,0,0,0,0,0,0,0,'0','0',-1,0),(14,2,2,1,3,4,8,5,11,9,6,10,14,'15','21',0,0),(15,1,2,8,1,0,0,0,0,0,0,0,0,'0','0',-1,0),(15,2,2,8,1,4,3,11,14,9,7,18,8,'10','3',1,0),(16,1,1,2,11,0,0,0,0,0,0,0,0,'0','0',-1,0),(16,2,8,11,2,4,5,9,14,10,13,17,2,'3','14',1,0),(17,1,2,1,4,0,0,0,0,0,0,0,0,'0','0',-1,0),(17,2,2,11,1,3,4,8,9,10,6,5,3,'','13,17',0,0),(18,1,1,2,8,0,0,0,0,0,0,0,0,'0','0',-1,0),(18,2,1,2,8,3,14,12,6,9,13,21,3,'10','13',1,0),(19,1,1,2,11,0,0,0,0,0,0,0,0,'0','0',-1,0),(19,2,1,2,8,11,3,4,10,5,6,9,8,'19','17',1,0),(20,1,1,2,4,0,0,0,0,0,0,0,0,'0','0',-1,0),(20,2,1,2,11,9,3,12,10,8,15,14,11,'16','15',1,0),(21,1,1,2,8,0,0,0,0,0,0,0,0,'0','0',-1,0),(21,2,1,2,3,11,8,4,10,9,6,14,3,'18','16,24',0,0); /*!40000 ALTER TABLE `results` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tips` -- DROP TABLE IF EXISTS `tips`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `tips` ( `t_u_id` int(4) NOT NULL DEFAULT '0', `t_g_id` int(4) NOT NULL DEFAULT '0', `t_e_id` int(2) NOT NULL DEFAULT '0', `t_d_id_p1` int(4) NOT NULL DEFAULT '0', `t_d_id_p2` int(4) NOT NULL DEFAULT '0', `t_d_id_p3` int(4) NOT NULL DEFAULT '0', `t_fl` int(4) NOT NULL DEFAULT '0', `t_firstout` int(4) NOT NULL DEFAULT '0', `t_bestcup` int(4) NOT NULL DEFAULT '0', `t_sc` int(2) NOT NULL DEFAULT '0', `t_timestamp` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `t_score` int(4) NOT NULL DEFAULT '0', PRIMARY KEY (`t_u_id`,`t_g_id`,`t_e_id`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tips` -- LOCK TABLES `tips` WRITE; /*!40000 ALTER TABLE `tips` DISABLE KEYS */; INSERT INTO `tips` VALUES (7,1,1,1,2,3,0,0,0,0,'2016-03-17 20:04:32',6),(12,1,1,1,2,14,0,0,0,0,'2016-03-18 09:07:05',4),(21,1,1,1,2,4,0,0,0,0,'2016-03-18 15:51:02',4),(21,1,2,1,2,3,1,18,7,0,'2016-03-19 16:20:00',3),(1,1,1,1,2,3,0,0,0,0,'2016-03-19 06:26:52',6),(10,1,1,1,3,8,0,0,0,0,'2016-03-18 21:16:27',3),(9,1,1,1,3,5,0,0,0,0,'2016-03-18 22:03:31',3),(18,1,1,1,3,4,0,0,0,0,'2016-03-19 00:06:29',3),(1,1,2,1,2,3,1,18,5,1,'2016-03-19 08:32:28',5),(12,1,2,1,2,3,1,19,7,1,'2016-03-19 16:50:57',5),(7,1,2,1,2,3,1,9,5,1,'2016-03-19 20:51:41',5),(10,1,2,1,3,2,1,19,7,1,'2016-03-19 22:07:29',4),(9,1,2,1,3,4,3,7,5,-1,'2016-03-19 23:00:28',5),(18,1,2,1,2,3,1,19,14,0,'2016-03-19 23:57:51',3),(2,1,2,1,2,3,2,18,5,1,'2016-03-20 05:53:38',5),(12,2,1,2,1,3,0,0,0,0,'2016-03-28 22:42:39',4),(7,2,1,2,1,3,0,0,0,0,'2016-04-02 16:49:05',4),(12,2,2,2,1,3,2,19,9,0,'2016-04-02 20:11:11',5),(21,2,1,2,1,3,0,0,0,0,'2016-04-02 08:41:25',4),(21,2,2,1,2,3,1,18,7,0,'2016-04-03 12:49:38',3),(9,2,1,3,4,2,0,0,0,0,'2016-04-02 16:11:38',2),(1,2,1,2,1,3,0,0,0,0,'2016-04-02 16:16:38',4),(10,2,1,1,2,3,0,0,0,0,'2016-04-02 16:19:06',6),(18,2,1,1,3,2,0,0,0,0,'2016-04-02 16:28:10',4),(1,2,2,1,2,3,1,7,9,0,'2016-04-02 18:44:26',3),(7,2,2,2,1,3,2,20,9,-1,'2016-04-03 15:25:10',4),(10,2,2,2,1,3,2,15,7,-1,'2016-04-03 16:16:27',4),(2,2,2,1,2,3,1,23,15,0,'2016-04-03 16:43:36',3),(18,2,2,1,3,2,1,17,9,0,'2016-04-03 16:54:46',3),(7,3,1,2,1,3,0,0,0,0,'2016-04-15 10:05:36',2),(12,3,1,2,1,3,0,0,0,0,'2016-04-15 11:23:00',2),(12,3,2,2,3,4,2,19,1,1,'2016-04-16 16:17:13',7),(1,3,1,1,2,3,0,0,0,0,'2016-04-15 20:42:05',1),(10,3,1,2,1,3,0,0,0,0,'2016-04-15 21:03:45',2),(21,3,1,1,2,3,0,0,0,0,'2016-04-15 23:09:26',1),(21,3,2,4,3,1,1,19,1,-1,'2016-04-17 00:15:51',4),(18,3,1,2,1,3,0,0,0,0,'2016-04-16 00:31:11',2),(9,3,1,2,3,4,0,0,0,0,'2016-04-16 08:54:32',4),(1,3,2,2,3,8,2,16,1,1,'2016-04-16 21:12:52',7),(10,3,2,2,4,3,2,6,1,1,'2016-04-16 21:14:24',6),(7,3,2,2,3,4,2,19,1,-1,'2016-04-17 07:58:37',6),(2,3,2,2,3,4,1,19,1,0,'2016-04-17 07:52:37',5),(18,3,2,2,3,4,4,19,1,0,'2016-04-17 07:54:02',5),(21,4,1,2,1,4,0,0,0,0,'2016-04-30 08:07:27',2),(21,4,2,2,1,3,1,19,1,0,'2016-05-01 13:57:43',3),(12,4,1,1,2,3,0,0,0,0,'2016-04-29 22:56:08',2),(10,4,1,2,1,3,0,0,0,0,'2016-04-30 07:33:49',3),(1,4,1,1,2,3,0,0,0,0,'2016-04-30 07:47:47',2),(7,4,1,1,2,4,0,0,0,0,'2016-04-30 08:41:01',1),(9,4,1,1,3,2,0,0,0,0,'2016-04-30 10:37:52',3),(18,4,1,1,2,3,0,0,0,0,'2016-04-30 12:21:42',2),(12,4,2,2,3,4,3,1,3,1,'2016-04-30 17:47:49',5),(7,4,2,2,5,4,2,15,1,1,'2016-05-01 13:27:12',6),(1,4,2,2,3,8,2,12,1,0,'2016-04-30 20:48:39',2),(10,4,2,2,4,3,2,6,1,-1,'2016-05-01 09:16:50',4),(9,4,2,2,1,3,3,21,1,-1,'2016-05-01 12:57:48',4),(18,4,2,2,4,3,2,19,1,0,'2016-05-01 13:48:25',3),(2,4,2,2,4,3,1,12,1,0,'2016-05-01 13:59:08',2),(21,5,1,2,1,3,0,0,0,0,'2016-05-14 13:30:10',2),(21,5,2,1,2,8,1,17,6,0,'2016-05-14 20:08:50',1),(12,5,1,1,2,3,0,0,0,0,'2016-05-13 09:39:04',4),(7,5,1,2,1,3,0,0,0,0,'2016-05-14 13:48:26',2),(10,5,1,2,1,3,0,0,0,0,'2016-05-14 11:35:22',2),(9,5,1,2,3,1,0,0,0,0,'2016-05-14 12:59:14',2),(1,5,1,2,1,3,0,0,0,0,'2016-05-14 13:19:09',2),(18,5,1,2,1,3,0,0,0,0,'2016-05-14 13:44:22',2),(12,5,2,1,2,11,1,19,6,0,'2016-05-14 15:09:06',2),(1,5,2,1,2,8,1,4,6,0,'2016-05-14 23:43:46',1),(7,5,2,1,2,8,1,20,7,0,'2016-05-15 13:34:35',-1),(10,5,2,2,1,3,2,6,18,-1,'2016-05-15 12:01:32',2),(9,5,2,1,2,3,2,7,6,-1,'2016-05-15 13:27:59',4),(18,5,2,1,2,3,1,18,6,0,'2016-05-15 13:50:04',3),(7,6,1,1,3,2,0,0,0,0,'2016-05-28 13:55:59',2),(1,6,1,1,3,2,0,0,0,0,'2016-05-28 13:36:43',2),(12,6,1,1,8,2,0,0,0,0,'2016-05-28 09:18:58',3),(10,6,1,2,1,8,0,0,0,0,'2016-05-28 10:39:23',3),(21,6,1,2,3,1,0,0,0,0,'2016-05-28 12:49:11',3),(18,6,1,1,2,3,0,0,0,0,'2016-05-28 13:15:28',3),(7,6,2,2,8,3,8,1,11,1,'2016-05-29 12:57:33',3),(12,6,2,8,2,3,8,16,11,1,'2016-05-28 17:01:48',2),(1,6,2,8,2,1,3,10,11,1,'2016-05-28 20:34:26',3),(21,6,2,2,8,3,8,18,11,1,'2016-05-29 00:31:19',3),(10,6,2,8,2,1,8,11,4,1,'2016-05-29 10:33:45',3),(18,6,2,2,8,1,1,20,13,1,'2016-05-29 13:49:15',5),(7,7,2,1,2,3,1,17,7,-1,'2016-06-12 02:21:22',3),(7,7,1,1,2,3,0,0,0,0,'2016-06-10 03:21:12',6),(21,7,1,1,2,3,0,0,0,0,'2016-06-10 10:47:41',6),(21,7,2,1,2,3,1,15,12,1,'2016-06-12 19:48:11',6),(1,7,1,1,2,3,0,0,0,0,'2016-06-10 22:35:28',6),(10,7,1,1,2,3,0,0,0,0,'2016-06-11 08:59:29',6),(12,7,1,1,2,3,0,0,0,0,'2016-06-11 11:05:56',6),(9,7,1,1,3,2,0,0,0,0,'2016-06-11 13:33:22',4),(18,7,1,1,3,2,0,0,0,0,'2016-06-11 17:10:23',4),(1,7,2,1,2,3,1,12,18,1,'2016-06-11 20:15:31',4),(12,7,2,1,2,3,1,20,12,0,'2016-06-11 21:35:26',4),(10,7,2,1,2,3,1,6,16,1,'2016-06-12 09:13:50',4),(18,7,2,1,2,3,1,19,12,1,'2016-06-12 19:36:56',6),(7,8,1,1,2,10,0,0,0,0,'2016-06-18 14:45:15',1),(7,8,2,2,8,3,2,15,1,1,'2016-06-19 14:13:17',3),(12,8,1,1,2,3,0,0,0,0,'2016-06-17 20:02:13',1),(21,8,1,1,2,10,0,0,0,0,'2016-06-17 21:56:37',1),(21,8,2,2,1,9,1,17,1,1,'2016-06-19 13:13:47',3),(18,8,1,1,2,3,0,0,0,0,'2016-06-17 22:48:32',1),(10,8,1,1,2,3,0,0,0,0,'2016-06-18 14:04:13',1),(1,8,1,1,2,8,0,0,0,0,'2016-06-18 14:09:51',3),(12,8,2,2,3,1,1,19,1,1,'2016-06-18 18:28:09',3),(1,8,2,2,3,8,1,10,1,1,'2016-06-18 20:50:45',3),(10,8,2,2,4,3,4,11,1,1,'2016-06-19 14:14:20',2),(18,8,2,2,8,9,2,18,14,1,'2016-06-19 14:52:24',4),(21,9,1,2,1,3,0,0,0,0,'2016-07-01 08:54:23',2),(21,9,2,1,2,10,1,17,9,0,'2016-07-03 13:45:27',2),(12,9,1,2,1,3,0,0,0,0,'2016-07-01 12:59:06',2),(7,9,1,1,3,2,0,0,0,0,'2016-07-02 13:59:36',3),(1,9,1,2,1,3,0,0,0,0,'2016-07-02 07:30:08',2),(10,9,1,2,1,3,0,0,0,0,'2016-07-02 09:54:59',2),(18,9,1,2,1,3,0,0,0,0,'2016-07-02 10:49:07',2),(12,9,2,1,2,3,1,18,3,1,'2016-07-02 18:58:09',4),(1,9,2,1,8,2,2,7,3,1,'2016-07-02 22:44:51',6),(7,9,2,1,2,4,1,20,2,1,'2016-07-03 13:47:13',6),(10,9,2,1,10,2,1,7,3,1,'2016-07-03 11:30:35',7),(18,9,2,1,2,10,1,7,3,1,'2016-07-03 13:38:25',7),(7,10,1,1,2,8,0,0,0,0,'2016-07-09 13:46:58',4),(21,10,1,1,2,8,0,0,0,0,'2016-07-09 13:35:40',4),(21,10,2,1,2,11,1,17,13,1,'2016-07-10 13:54:01',5),(12,10,1,1,2,3,0,0,0,0,'2016-07-09 09:43:45',4),(1,10,1,1,2,8,0,0,0,0,'2016-07-09 10:40:35',4),(10,10,1,1,2,3,0,0,0,0,'2016-07-09 10:44:07',4),(18,10,1,1,2,3,0,0,0,0,'2016-07-09 13:43:59',4),(12,10,2,1,2,11,1,19,7,1,'2016-07-10 13:22:37',8),(1,10,2,1,2,11,1,18,13,1,'2016-07-10 06:55:26',5),(7,10,2,1,2,8,1,7,3,1,'2016-07-10 13:37:39',4),(10,10,2,1,2,8,1,12,3,1,'2016-07-10 13:27:17',4),(18,10,2,1,2,8,1,13,3,1,'2016-07-10 13:56:56',4),(12,11,1,1,2,3,0,0,0,0,'2016-07-22 14:45:56',2),(21,11,1,1,2,8,0,0,0,0,'2016-07-22 19:57:43',4),(21,11,2,1,2,8,1,17,4,1,'2016-07-24 10:34:17',7),(1,11,1,1,2,8,0,0,0,0,'2016-07-23 11:44:00',4),(10,11,1,2,1,8,0,0,0,0,'2016-07-23 11:45:44',6),(7,11,1,2,11,8,0,0,0,0,'2016-07-23 12:35:23',4),(18,11,1,1,2,11,0,0,0,0,'2016-07-23 12:55:25',2),(12,11,2,1,2,11,8,18,6,1,'2016-07-23 20:02:41',3),(7,11,2,2,8,11,1,19,4,1,'2016-07-23 21:55:14',3),(1,11,2,1,2,11,1,10,6,1,'2016-07-23 23:16:38',3),(10,11,2,2,1,8,2,12,4,1,'2016-07-24 13:46:07',5),(18,11,2,2,1,8,2,19,6,0,'2016-07-24 13:58:33',5),(12,12,1,2,1,3,0,0,0,0,'2016-07-29 22:04:49',4),(7,12,1,2,1,3,0,0,0,0,'2016-07-30 08:24:50',4),(1,12,1,2,1,3,0,0,0,0,'2016-07-30 09:35:32',4),(10,12,1,2,1,3,0,0,0,0,'2016-07-30 09:54:46',4),(21,12,1,2,1,8,0,0,0,0,'2016-07-30 12:13:30',6),(21,12,2,2,1,8,2,17,14,0,'2016-07-31 10:24:00',3),(18,12,1,2,1,8,0,0,0,0,'2016-07-30 13:30:30',6),(10,12,2,2,1,8,1,19,21,-1,'2016-07-30 17:40:00',4),(12,12,2,2,1,8,2,18,22,1,'2016-07-30 20:50:31',1),(1,12,2,2,1,8,4,10,12,0,'2016-07-30 22:00:30',3),(7,12,2,1,2,8,2,20,21,1,'2016-07-31 13:43:56',4),(18,12,2,2,1,8,1,17,14,1,'2016-07-31 13:51:18',1),(21,13,1,8,3,4,0,0,0,0,'2016-08-27 12:29:20',2),(21,13,2,2,11,3,1,17,1,0,'2016-08-27 18:21:44',4),(12,13,1,2,11,8,0,0,0,0,'2016-08-27 08:55:45',4),(1,13,1,2,8,11,0,0,0,0,'2016-08-27 13:32:42',3),(7,13,1,2,11,8,0,0,0,0,'2016-08-27 08:33:50',4),(10,13,1,8,11,3,0,0,0,0,'2016-08-27 11:03:47',2),(18,13,1,1,2,8,0,0,0,0,'2016-08-27 13:23:07',1),(1,13,2,11,2,3,4,18,1,1,'2016-08-27 15:10:44',4),(12,13,2,2,11,3,1,15,1,0,'2016-08-27 19:27:33',4),(7,13,2,11,8,2,2,24,1,0,'2016-08-28 13:53:41',4),(18,13,2,11,2,4,1,14,1,1,'2016-08-28 13:49:53',5),(21,14,1,1,2,3,0,0,0,0,'2016-09-02 12:07:22',6),(21,14,2,1,2,3,3,17,21,0,'2016-09-04 08:59:04',7),(12,14,1,1,2,4,0,0,0,0,'2016-09-02 20:49:26',4),(1,14,1,1,2,3,0,0,0,0,'2016-09-03 09:32:31',6),(10,14,1,2,1,3,0,0,0,0,'2016-09-03 09:44:33',4),(7,14,1,1,2,3,0,0,0,0,'2016-09-03 13:41:50',6),(18,14,1,1,2,3,0,0,0,0,'2016-09-03 12:01:35',6),(12,14,2,1,2,3,1,24,13,0,'2016-09-03 15:47:10',5),(1,14,2,1,2,3,1,16,21,0,'2016-09-03 23:34:22',7),(10,14,2,1,2,3,1,12,21,0,'2016-09-04 10:26:03',7),(7,14,2,1,3,2,3,16,21,-1,'2016-09-04 13:50:34',5),(18,14,2,1,2,3,1,24,21,0,'2016-09-04 13:52:00',7),(12,15,1,8,4,11,0,0,0,0,'2016-09-16 18:19:43',1),(21,15,1,1,2,3,0,0,0,0,'2016-09-16 19:46:48',2),(21,15,2,2,1,8,8,17,3,1,'2016-09-18 13:28:54',8),(7,15,1,2,11,8,0,0,0,0,'2016-09-17 14:35:32',3),(10,15,1,2,1,11,0,0,0,0,'2016-09-17 09:35:48',3),(18,15,1,2,1,11,0,0,0,0,'2016-09-17 13:40:07',3),(1,15,1,2,11,4,0,0,0,0,'2016-09-17 13:54:13',2),(12,15,2,2,1,8,2,21,3,1,'2016-09-17 16:30:35',7),(1,15,2,8,2,11,3,16,3,1,'2016-09-17 20:05:07',5),(10,15,2,2,1,11,2,19,3,1,'2016-09-18 13:46:15',6),(18,15,2,1,2,8,1,17,3,0,'2016-09-18 13:58:45',4),(7,16,2,1,2,8,1,19,14,1,'2016-10-01 14:26:25',5),(7,16,1,1,2,3,0,0,0,0,'2016-09-30 16:16:46',4),(12,16,1,1,2,3,0,0,0,0,'2016-09-30 20:01:11',4),(21,16,1,1,2,3,0,0,0,0,'2016-09-30 23:56:53',4),(21,16,2,1,2,8,2,17,14,0,'2016-10-01 13:55:04',4),(10,16,1,2,1,3,0,0,0,0,'2016-10-01 07:48:14',2),(1,16,1,2,1,3,0,0,0,0,'2016-10-01 08:31:48',2),(18,16,1,1,2,8,0,0,0,0,'2016-10-01 10:18:27',4),(1,16,2,1,2,11,3,10,14,1,'2016-10-02 08:46:41',5),(12,16,2,1,2,11,8,19,14,1,'2016-10-01 22:07:55',5),(10,16,2,1,2,8,1,15,14,1,'2016-10-02 08:19:32',5),(18,16,2,2,1,8,8,19,14,1,'2016-10-02 08:29:26',5),(7,17,2,1,2,4,1,19,3,-1,'2016-10-08 23:27:46',2),(7,17,1,2,1,4,0,0,0,0,'2016-10-07 22:10:17',6),(21,17,1,1,2,3,0,0,0,0,'2016-10-07 08:29:45',2),(21,17,2,1,2,3,2,17,13,1,'2016-10-08 20:47:21',3),(12,17,1,1,2,11,0,0,0,0,'2016-10-07 09:36:47',2),(10,17,1,2,1,11,0,0,0,0,'2016-10-07 21:54:14',4),(18,17,1,2,1,11,0,0,0,0,'2016-10-07 22:08:40',4),(1,17,1,2,1,8,0,0,0,0,'2016-10-08 07:40:47',4),(12,17,2,1,2,3,2,24,13,1,'2016-10-08 09:13:10',3),(10,17,2,2,1,4,4,15,14,-1,'2016-10-08 17:11:24',3),(18,17,2,2,1,8,2,15,14,1,'2016-10-09 06:59:33',2),(1,17,2,2,1,11,3,9,13,1,'2016-10-09 06:49:37',6),(21,18,1,1,11,2,0,0,0,0,'2016-10-22 18:27:34',3),(21,18,2,1,2,11,2,17,13,0,'2016-10-23 10:53:58',5),(7,18,1,2,1,11,0,0,0,0,'2016-10-22 15:33:55',2),(12,18,1,2,1,11,0,0,0,0,'2016-10-22 16:49:34',2),(1,18,1,1,2,11,0,0,0,0,'2016-10-22 18:19:32',4),(18,18,1,11,8,2,0,0,0,0,'2016-10-22 19:16:02',2),(10,18,1,1,2,11,0,0,0,0,'2016-10-22 18:51:29',4),(1,18,2,1,2,11,8,16,13,1,'2016-10-22 21:46:15',7),(7,18,2,2,1,8,8,7,13,1,'2016-10-23 19:23:42',7),(12,18,2,1,2,11,8,15,13,0,'2016-10-23 07:19:57',5),(10,18,2,1,2,11,1,18,13,-1,'2016-10-23 10:46:25',6),(18,18,2,1,2,8,14,19,14,0,'2016-10-23 20:46:34',5),(7,19,1,1,11,2,0,0,0,0,'2016-10-29 19:56:52',4),(12,19,1,2,1,4,0,0,0,0,'2016-10-29 09:01:33',2),(10,19,1,1,2,3,0,0,0,0,'2016-10-29 16:16:10',4),(1,19,1,1,2,8,0,0,0,0,'2016-10-29 19:21:46',4),(21,19,1,1,2,8,0,0,0,0,'2016-10-29 18:56:24',4),(21,19,2,1,2,3,3,17,9,0,'2016-10-29 16:47:51',3),(18,19,1,1,2,11,0,0,0,0,'2016-10-29 19:12:22',6),(12,19,2,1,8,3,1,11,14,1,'2016-10-29 21:08:28',4),(1,19,2,1,2,8,3,10,7,1,'2016-10-30 11:35:11',7),(7,19,2,1,11,2,11,18,7,0,'2016-10-30 19:28:49',2),(10,19,2,2,1,11,2,15,21,1,'2016-10-30 15:55:16',3),(18,19,2,1,2,8,3,24,14,1,'2016-10-30 19:59:09',7),(7,20,1,1,2,11,0,0,0,0,'2016-11-12 13:59:13',4),(7,20,2,1,2,11,11,22,13,1,'2016-11-13 15:50:11',8),(12,20,1,2,1,8,0,0,0,0,'2016-11-11 22:22:35',2),(1,20,1,1,2,8,0,0,0,0,'2016-11-12 13:06:06',4),(10,20,1,1,2,11,0,0,0,0,'2016-11-12 13:47:56',4),(21,20,1,2,1,3,0,0,0,0,'2016-11-12 16:18:10',2),(18,20,1,1,2,3,0,0,0,0,'2016-11-12 16:01:09',4),(1,20,2,1,2,11,3,10,13,1,'2016-11-13 16:36:21',7),(12,20,2,1,2,11,1,15,12,1,'2016-11-13 08:26:47',7),(10,20,2,1,2,11,1,24,13,1,'2016-11-13 10:11:51',7),(21,20,2,2,1,3,1,17,13,1,'2016-11-13 10:31:26',3),(18,20,2,1,2,11,2,19,13,1,'2016-11-13 16:58:37',7),(7,21,1,3,1,11,0,0,0,0,'2016-11-26 13:50:39',1),(12,21,1,1,2,11,0,0,0,0,'2016-11-25 19:55:22',4),(21,21,1,1,2,11,0,0,0,0,'2016-11-26 08:46:07',4),(10,21,1,1,2,11,0,0,0,0,'2016-11-26 10:22:01',4),(18,21,1,1,2,11,0,0,0,0,'2016-11-26 12:41:57',4),(1,21,1,1,2,11,0,0,0,0,'2016-11-26 13:33:45',4),(1,21,2,1,2,8,3,10,18,0,'2016-11-26 19:04:37',6),(12,21,2,1,2,11,3,7,12,1,'2016-11-26 19:33:49',4),(7,21,2,1,2,11,1,12,11,1,'2016-11-27 10:14:24',3),(21,21,2,1,2,8,8,17,12,0,'2016-11-27 11:54:05',5),(10,21,2,1,2,4,1,6,12,1,'2016-11-27 13:11:04',3),(18,21,2,8,2,1,11,24,21,0,'2016-11-27 13:57:10',4); /*!40000 ALTER TABLE `tips` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `users` -- DROP TABLE IF EXISTS `users`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `users` ( `u_id` int(11) NOT NULL AUTO_INCREMENT, `u_name` char(3) NOT NULL DEFAULT '', `u_passcode` varchar(41) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL DEFAULT '', `u_pic` varchar(40) DEFAULT NULL, `u_realname` varchar(40) NOT NULL DEFAULT '', `u_nickname` varchar(20) NOT NULL DEFAULT 'not revealed', `u_email` varchar(50) NOT NULL DEFAULT '', `u_emailreminder` int(1) NOT NULL DEFAULT '0', `u_nationality` varchar(20) NOT NULL DEFAULT 'not revealed', `u_favdriver` int(11) NOT NULL DEFAULT '0', `u_since` year(4) NOT NULL DEFAULT '0000', `u_gtwins` int(3) NOT NULL DEFAULT '0', `u_admin` int(1) NOT NULL DEFAULT '0', PRIMARY KEY (`u_id`) ) ENGINE=MyISAM AUTO_INCREMENT=36 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `users` -- LOCK TABLES `users` WRITE; /*!40000 ALTER TABLE `users` DISABLE KEYS */; INSERT INTO `users` VALUES (1,'MAM','18d022103920e120b2faabf4be68aa8f','pic_MAM.gif','Markus A. Mascelli','MAM','mam@heimam.at',0,'italian',602,2006,2,1),(2,'GUE','78918cecf8926d0cada4c5bc31af87a3','pic_GUE.gif','Guenther Schmidt','GueStar','guenther.schmidt@gmail.com',0,'austrian',15,2006,3,0),(3,'ZEI','8dad7cabce9c511bd4983e8dc96ea5da','pic_ZEI.gif','Christian Zeichmann','Zeichi','christian.zeichmann@kabelnet.at',0,'austrian',0,2007,1,0),(4,'AFG','8ff522cd1e5219541b2e945af0727d2b','pic_AFG.gif','Andrea F. Grohmann','','a.grohmann@gmx.at',0,'austrian',0,2007,0,0),(5,'JIR','8522c2ccfd6fc5d242ed16d168401fad','avatar.jpg','Juergen Iser','','j.iser@gmx.at',0,'austrian',602,2008,0,0),(6,'KAI','e5f4d97a4961dea1184bbbe847b591f3','avatar.jpg','Roman Kailbach','Kailo','kailo@gmx.at',0,'austrian',334,2008,0,0),(7,'WOB','776ad0ef27acc0602c337dc2736f3a97','300ende.jpg','Mhöb Gnagflow','WoB','wboehm@gmail.com',0,'austrian',762,2008,1,0),(8,'REG','776ad0ef27acc0602c337dc2736f3a97','yoshi1.jpg','Regina Boehm','','rboehm@gmail.com',0,'austrian',0,2008,0,0),(9,'ISA','3c4db9561aa2b8530d5c60014dbfbe86','isa_grid_kl_hp_3.jpg','Ildiko Samu-Puehringer','sam','ildikosamu.puehringer@gmail.com',0,'hungarian',667,2008,0,0),(10,'MRO','cda0fd2918d19e20ac871ed79a8d2bb0','pic_MRO.jpg','Martha Rossa','RoMa','rossama@yahoo.com',0,'austrian',334,2008,1,1),(11,'MPU','f9c17117b5b8dbf8cfa83d8057ee1a0b','mpu_grid_tip_blaukl.jpg','Michael Puehringer','','michael.puehringer@lotterien.at',0,'austrian',621,2008,0,0),(12,'RHA','9ced82c0515df69d4e3311f63d40ffa0','avatar.jpg','Robert Haller','','rr101088@gmail.com',0,'austrian',0,2008,0,0),(13,'FAN','33c2e20d31b3ae8f4564d7517738eb7d','extremeevil.gif','Georg Juren','Schurl','georg.juren@atos.net',0,'austrian',49,2009,0,0),(14,'MBR','f9c17117b5b8dbf8cfa83d8057ee1a0b','avatar.jpg','Markus Brenner','','m.brenn@gmx.net',0,'austrian',0,2009,0,0),(15,'RSC','d67ee0b6a91696158441100ba2e5a9b0','schicht_roman.jpg','Roman Schicht','','rschicht@yahoo.com',0,'austrian',0,2009,0,0),(16,'FAB','f9c17117b5b8dbf8cfa83d8057ee1a0b','avatar.jpg','Alexander Fabozzi','','alexander.fabozzi@gmx.at',0,'austrian',0,2010,0,0),(17,'MAR','776ad0ef27acc0602c337dc2736f3a97','avatar.jpg','Marina Boehm','','mboehm@gmail.com',0,'austrian',0,2010,0,0),(18,'IRS','8918b74d571421bcc47fc59816bf8fc2','foto_ivan.png','Ivan Rodriguez','','irodriguezs@hotmail.com',0,'spanish',15,2010,1,0),(19,'ALE','2ab3343875e56dc0a15cbb6a98570cf2','avatar.jpg','Alexander Doler','','alexander.doler@atos.net',0,'austrian',0,2012,0,0),(20,'STM','f078ea5db3ca0165e914bb82ea971755','avatar.jpg','Manfred Steinacher','','mst4711@gmx.at',0,'austrian',0,2013,0,0),(21,'MCL','02a8925e820f46c6c89d7a85a1285deb','avatar.jpg','Sasa Petrovic','Ayrton','sasa.petrovic@citrix.com',0,'serbian',676,2014,0,0),(22,'HOK','21e316792058f92b4873dff990619a94','avatar.jpg','Hoking','Hoking','samuel2f3@hotmail.com',0,'',833,2015,0,0); /*!40000 ALTER TABLE `users` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `winners` -- DROP TABLE IF EXISTS `winners`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `winners` ( `w_season` int(4) NOT NULL DEFAULT '0', `w_u_id` int(4) NOT NULL DEFAULT '0', PRIMARY KEY (`w_season`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `winners` -- LOCK TABLES `winners` WRITE; /*!40000 ALTER TABLE `winners` DISABLE KEYS */; INSERT INTO `winners` VALUES (2006,2),(2007,2),(2008,10),(2009,1),(2010,3),(2011,1),(2012,18),(2013,2),(2014,1),(2015,7),(2016,1); /*!40000 ALTER TABLE `winners` ENABLE KEYS */; UNLOCK TABLES; -- -- Current Database: `niki_2017` -- CREATE DATABASE /*!32312 IF NOT EXISTS*/ `niki_2017` /*!40100 DEFAULT CHARACTER SET latin1 */; USE `niki_2017`; -- -- Table structure for table `alldrivers` -- DROP TABLE IF EXISTS `alldrivers`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `alldrivers` ( `a_id` int(4) NOT NULL AUTO_INCREMENT, `a_lname` varchar(20) NOT NULL DEFAULT '', `a_fname` varchar(20) NOT NULL DEFAULT '', PRIMARY KEY (`a_id`) ) ENGINE=MyISAM AUTO_INCREMENT=846 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `alldrivers` -- LOCK TABLES `alldrivers` WRITE; /*!40000 ALTER TABLE `alldrivers` DISABLE KEYS */; INSERT INTO `alldrivers` VALUES (1,'ABATE','Carlo'),(2,'ABECASSIS','George'),(3,'ACHESON','Kenny'),(4,'ADAMS','Philippe'),(5,'ADER','Walt'),(6,'ADOLFF','Kurt'),(7,'AGABASHIAN','Fred'),(8,'AHRENS','Kurt Jr.'),(9,'ALBERS','Christijan'),(10,'ALBORETO','Michele'),(11,'ALESI','Jean'),(12,'ALGUERSUARI','Jaime'),(13,'ALLIOT','Philippe'),(14,'ALLISON','Cliff'),(15,'ALONSO','Fernando'),(16,'AMATI','Giovanna'),(17,'AMICK','George'),(18,'AMICK','Red'),(19,'AMON','Chris'),(20,'ANDERSON','Bob'),(21,'ANDERSSON','Conny'),(22,'ANDRETTI','Mario'),(23,'ANDRETTI','Michael'),(24,'ANDREWS','Keith'),(25,'APICELLA','Marco'),(26,'ARMI','Frank'),(27,'ARNOLD','Chuck'),(28,'ARNOUX','Rene'),(29,'ARUNDELL','Peter'),(30,'ASCARI','Alberto'),(31,'ASHDOWN','Peter'),(32,'ASHLEY','Ian'),(33,'ASHMORE','Gerry'),(34,'ASTON','Bill'),(35,'ATTWOOD','Richard'),(36,'AYULO','Manny'),(37,'BADOER','Luca'),(38,'BAGHETTI','Giancarlo'),(39,'BAILEY','Julian'),(40,'BALDI','Mauro'),(41,'BALL','Bobby'),(42,'BALSA','Marcel'),(43,'BANDINI','Lorenzo'),(44,'BANKS','Henry'),(45,'BARBAZZA','Fabrizio'),(46,'BARBER','John'),(47,'BARBER','Skip'),(48,'BARILLA','Paolo'),(49,'BARRICHELLO','Rubens'),(50,'BARTELS','Michael'),(51,'BARTH','Edgar'),(52,'BASSI','Giorgio'),(53,'BAUER','Erwin'),(54,'BAUMGARTNER','Zsolt'),(55,'BAYOL','Elie'),(56,'BEAUMAN','Don'),(57,'BECHEM','Karl–Guenther'),(58,'BEHRA','Jean'),(59,'BELL','Derek'),(60,'BELLOF','Stefan'),(61,'BELMONDO','Paul'),(62,'BELSO','Tom'),(63,'BELTOISE','Jean-Pierre'),(64,'BERETTA','Olivier'),(65,'BERG','Allen'),(66,'BERGER','Georges'),(67,'BERGER','Gerhard'),(68,'BERNARD','Eric'),(69,'BERNOLDI','Enrique'),(70,'BERTAGGIA','Enrico'),(71,'BETTENHAUSEN','Tony'),(72,'BEUTTLER','Mike'),(73,'BHANUBANDH','Birabongse'),(74,'BIANCHI','Lucien'),(75,'BIANCO','Gino'),(76,'BINDER','Hans'),(77,'BIONDETTI','Clemente'),(78,'BIRGER','Pablo'),(79,'BISCH','Art'),(80,'BLANCHARD','Harry'),(81,'BLEEKEMOLEN','Michael'),(82,'BLIGNAUT','Alex'),(83,'BLOKDYK','Trevor'),(84,'BLUNDELL','Mark'),(85,'BOESEL','Raul'),(86,'BOFFA','Menato'),(87,'BONDURANT','Bob'),(88,'BONETTO','Felice'),(89,'BONNIER','Jo'),(90,'BONOMI','Roberto'),(91,'BORDEU','Juan Manuel'),(92,'BORGUDD','Slim'),(93,'BOTHA','Luki'),(94,'BOULLION','Jean-Christophe'),(95,'BOURDAIS','Sebastien'),(96,'BOUTSEN','Thierry'),(97,'BOYD','Johnny'),(98,'BRABHAM','David'),(99,'BRABHAM','Gary'),(100,'BRABHAM','Jack'),(101,'BRACK','Bill'),(102,'BRAMBILLA','Ernesto'),(103,'BRAMBILLA','Vittorio'),(104,'BRANCA','Toni'),(105,'BRANCATELLI','Gianfranco'),(106,'BRANDON','Eric'),(107,'BRANSON','Don'),(108,'BRIDGER','Tom'),(109,'BRISE','Tony'),(110,'BRISTOW','Chris'),(111,'BROEKER','Peter'),(112,'BROOKS','Tony'),(113,'BROWN','Alan'),(114,'BROWN','Walt'),(115,'BROWN','Warwick'),(116,'BRUDES','Adolf'),(117,'BRUNDLE','Martin'),(118,'BRUNI','Gianmaria'),(119,'BRYAN','Jimmy'),(120,'BUCCI','Clemar'),(121,'BUCKNUM','Ronnie'),(122,'BUEB','Ivor'),(123,'BUEMI','Sebastien'),(124,'BUENO','Luiz'),(125,'BURGESS','Ian'),(126,'BURTI','Luciano'),(127,'BUSSINELLO','Roberto'),(128,'BUTTON','Jenson'),(129,'BYRNE','Tommy'),(130,'CABIANCA','Giulio'),(131,'CADE','Phil'),(132,'CAFFI','Alex'),(133,'CAMPBELL-JONES','John'),(134,'CAMPOS','Adrian'),(135,'CANNON','John'),(136,'CANTONI','Eitel'),(137,'CANTRELL','Bill'),(138,'CAPELLI','Ivan'),(139,'CARINI','Piero'),(140,'CARTER','Duane'),(141,'CASTELLOTTI','Eugenio'),(142,'CECOTTO','Johnny'),(143,'CEVERT','Francois'),(144,'CHABOUD','Eugène'),(145,'CHAMBERLAIN','Jay'),(146,'CHAPMAN','Colin'),(147,'CHARLTON','Dave'),(148,'CHAVES','Pedro Matos'),(149,'CHEESBOURG','Bill'),(150,'CHEEVER','Eddie'),(151,'CHIESA','Andrea'),(152,'CHIMERI','Ettore'),(153,'CHIRON','Louis'),(154,'CHITWOOD','Joie'),(155,'CHRISTIE','Bob'),(156,'CLAES','Johnny'),(157,'CLAPHAM','David'),(158,'CLARK','Jim'),(159,'COGAN','Kevin'),(160,'COLLINS','Peter'),(161,'COLLOMB','Bernard'),(162,'COLOMBO','Alberto'),(163,'COMAS','Erik'),(164,'COMOTTI','Franco'),(165,'CONNOR','George'),(166,'CONSTANTINE','George'),(167,'CORDTS','John'),(168,'COULTHARD','David'),(169,'COURAGE','Piers'),(170,'CRAFT','Chris'),(171,'CRAWFORD','Jim'),(172,'CRAWFORD','Ray'),(173,'CRESPO','Alberto'),(174,'CREUS','Antonio'),(175,'CROCKETT','Larry'),(176,'CROOK','Tony'),(177,'CROSS','Art'),(178,'CROSSLEY','Geoff'),(179,'DA MATTA','Cristiano'),(180,'DA SLIVA RAMOS','Hernando'),(181,'DAIGH','Chuck'),(182,'DALMAS','Yannick'),(183,'DALY','Derek'),(184,'DANNER','Christian'),(185,'DAPONTE','Jorge'),(186,'DAVIDSON','Anthony'),(187,'DAVIES','Jimmy'),(188,'DAVIS','Colin'),(189,'DAYWALT','Jimmy'),(190,'DE ADAMICH','Andrea'),(191,'DE ANGELIS','Elio'),(192,'DE ARAUJO CABRAL','Mario'),(193,'DE CESARIS','Andrea'),(194,'DE CHANGY','Alain'),(195,'DE DRYVER','Bernard'),(196,'DE FILIPPIS','Maria Teresa'),(197,'DE GRAFFENRIED','Emmanuel'),(198,'DE KLERK','Peter'),(199,'DE LA ROSA','Pedro'),(200,'DE PORTAGO','Alfonso'),(201,'DE RIU','Giovanni'),(202,'DE TOMASO','Alejandro'),(203,'DE TORNACO','Charles'),(204,'DE VILLOTA','Emilio'),(205,'DE VOS','Ernie'),(206,'DELETRAZ','Jean-Denis'),(207,'DEPAILLER','Patrick'),(208,'DINIZ','Pedro'),(209,'DINSMORE','Duke'),(210,'DOCHNAL','Frank'),(211,'DOLHEM','Jose'),(212,'DONNELLY','Martin'),(213,'DONOHUE','Mark'),(214,'DOORNBOS','Robert'),(215,'D\'OREY','Fritz'),(216,'DOWNING','Ken'),(217,'DRAKE','Bob'),(218,'DRIVER','Paddy'),(219,'DROGO','Piero'),(220,'DUKE','Geoff'),(221,'DUMFRIES','Johnny'),(222,'DUNCAN','Len'),(223,'DUSIO','Piero'),(224,'EATON','George'),(225,'ECCLESTONE','Bernie'),(226,'EDMUNDS','Don'),(227,'EDWARDS','Guy'),(228,'ELFORD','Vic'),(229,'ELISIAN','Ed'),(230,'EMERY','Paul'),(231,'ENGE','Tomas'),(232,'ENGLAND','Paul'),(233,'ERTL','Harald'),(234,'ESTEFANO','Nasif'),(235,'ETANCELIN','Philippe'),(236,'EVANS','Bob'),(237,'FABI','Corrado'),(238,'FABI','Teo'),(239,'FABRE','Pascal'),(240,'FACETTI','Carlo'),(241,'FAGIOLI','Luigi'),(242,'FAIRMAN','Jack'),(243,'FANGIO','Juan Manuel'),(244,'FARINA','Nino'),(245,'FAULKNER','Walt'),(246,'FERGUSON','William'),(247,'FIRMAN','Ralph'),(248,'FISCHER','Ludwig'),(249,'FISCHER','Rudi'),(250,'FISHER','Mike'),(251,'FISICHELLA','Giancarlo'),(252,'FITCH','John'),(253,'FITTIPALDI','Christian'),(254,'FITTIPALDI','Emerson'),(255,'FITTIPALDI','Wilson'),(256,'FITZAU','Theo'),(257,'FLAHERTY','Pat'),(258,'FLINTERMAN','Jan'),(259,'FLOCKHART','Ron'),(260,'FOHR','Myron'),(261,'FOITEK','Gregor'),(262,'FOLLMER','George'),(263,'FONDER','George'),(264,'FONTANA','Norberto'),(265,'FONTES BAYARDO','Azdrubal'),(266,'FORBERG','Carl'),(267,'FORCE','Gene'),(268,'FORINI','Franco'),(269,'FOTHERINGHAM-PARKER','Philip'),(270,'FOYT','A.J.'),(271,'FRANCIA','Giorgio'),(272,'FREELAND','Don'),(273,'FRENTZEN','Heinz-Harald'),(274,'FRERE','Paul'),(275,'FRIESACHER','Patrick'),(276,'FRY','Joe'),(277,'FUSHIDA','Hiroshi'),(278,'GABBIANI','Beppe'),(279,'GACHOT','Bertrand'),(280,'GAILLARD','Patrick'),(281,'GALICA','Divina'),(282,'GALLI','Nanni'),(283,'GALVEZ','Oscar Alfredo'),(284,'GAMBLE','Fred'),(285,'GANLEY','Howden'),(286,'GARDNER','Frank'),(287,'GARRETT','Billy'),(288,'GARTNER','Jo'),(289,'GAZE','Tony'),(290,'GEKI','NN'),(291,'GENDEBIEN','Olivier'),(292,'GENE','Marc'),(293,'GEORGE','Elmer'),(294,'GERARD','Bob'),(295,'GERINI','Gerino'),(296,'GETHIN','Peter'),(297,'GHINZANI','Piercarlo'),(298,'GIACOMELLI','Bruno'),(299,'GIBSON','Dick'),(300,'GINTHER','Richie'),(301,'GIRAUD-CABANTOUS','Yves'),(302,'GIUNTI','Ignazio'),(303,'GLOCK','Timo'),(304,'GLOECKLER','Helm'),(305,'GODIA','Paco'),(306,'GODIN DE BEAUFORT','Carel'),(307,'GOETHALS','Christian'),(308,'GOLDSMITH','Paul'),(309,'GONZALEZ','Jose Froilan'),(310,'GONZALEZ','Oscar'),(311,'GORDINI','Aldo'),(312,'GOULD','Horace'),(313,'GOUNON','Jean-Marc'),(314,'GREEN','Cecil'),(315,'GREENE','Keith'),(316,'GREGORY','Masten'),(317,'GRIFFITH','Cliff'),(318,'GRIGNARD','Georges'),(319,'GRIM','Bobby'),(320,'GROSJEAN','Romain'),(321,'GROUILLARD','Olivier'),(322,'GUBBY','Brian'),(323,'GUELFI','Andre'),(324,'GUERRA','Miguel Angel'),(325,'GUERRERO','Roberto'),(326,'GUGELMIN','Mauricio'),(327,'GURNEY','Dan'),(328,'HAHNE','Hubert'),(329,'HAILWOOD','Mike'),(330,'HAKKINEN','Mika'),(331,'HALFORD','Bruce'),(332,'HALL','Jim'),(333,'HAMILTON','Duncan'),(334,'HAMILTON','Lewis'),(335,'HAMPSHIRE','David'),(336,'HANKS','Sam'),(337,'HANSGEN','Walt'),(338,'HARRIS','Mike'),(339,'HARRISON','Cuth'),(340,'HART','Brian'),(341,'HARTLEY','Gene'),(342,'HASEMI','Masahiro'),(343,'HATTORI','Naoki'),(344,'HAWKINS','Paul'),(345,'HAWTHORN','Mike'),(346,'HAYJE','Boy'),(347,'HEEKS','Willi'),(348,'HEIDFELD','Nick'),(349,'HELFRICH','Theo'),(350,'HELLINGS','Mack'),(351,'HENTON','Brian'),(352,'HERBERT','Johnny'),(353,'HERMAN','Al'),(354,'HERRMANN','Hans'),(355,'HESNAULT','Francois'),(356,'HEYER','Hans'),(357,'HILL','Damon'),(358,'HILL','Graham'),(359,'HILL','Phil'),(360,'HIRT','Peter'),(361,'HOBBS','David'),(362,'HOCKING','Gary'),(363,'HOFFMANN','Ingo'),(364,'HOLLAND','Bill'),(365,'HOLMES','Jackie'),(366,'HOMEIER','Bill'),(367,'HOSHINO','Kazuyoshi'),(368,'HOYT','Jerry'),(369,'HULME','Denny'),(370,'HUNT','James'),(371,'HURTUBISE','Jim'),(372,'HUTCHISON','Gus'),(373,'ICKX','Jacky'),(374,'IDE','Yuji'),(375,'IGLESIAS','Jesus'),(376,'INOUE','Taki'),(377,'IRELAND','Innes'),(378,'IRVINE','Eddie'),(379,'IRWIN','Chris'),(380,'JABOUILLE','Jean-Pierre'),(381,'JACKSON','Jimmy'),(382,'JAMES','Joe'),(383,'JAMES','John'),(384,'JARIER','Jean-Pierre'),(385,'JEAN','Max'),(386,'JOHANSSON','Stefan'),(387,'JOHNSON','Eddie'),(388,'JOHNSON','Leslie'),(389,'JOHNSTONE','Bruce'),(390,'JONES','Alan'),(391,'JONES','Tom'),(392,'JOVER','Juan'),(393,'KARCH','Oswald'),(394,'KARTHIKEYAN','Narain'),(395,'KATAYAMA','Ukyo'),(396,'KAVANAGH','Ken'),(397,'KEEGAN','Rupert'),(398,'KEIZAN','Eddie'),(399,'KELLER','Al'),(400,'KELLY','Joe'),(401,'KENNEDY','Dave'),(402,'KESSEL','Loris'),(403,'KESSLER','Bruce'),(404,'KIESA','Nicolas'),(405,'KINNUNEN','Leo'),(406,'KLADIS','Danny'),(407,'KLENK','Hans'),(408,'KLIEN','Christian'),(409,'KLING','Karl'),(410,'KLODWIG','Ernst'),(411,'KOBAYASHI','Kamui'),(412,'KOINIGG','Helmuth'),(413,'KOVALAINEN','Heikki'),(414,'KOZAROWITZKY','Mikko'),(415,'KRAKAU','Willi'),(416,'KRAUSE','Rudolf'),(417,'KUBICA','Robert'),(418,'KUHNKE','Kurt'),(419,'KUWASHIMA','Masami'),(420,'LA CAZE','Robert'),(421,'LAFFITE','Jacques'),(422,'LAGORCE','Franck'),(423,'LAMMERS','Jan'),(424,'LAMY','Pedro'),(425,'LANDI','Chico'),(426,'LANG','Hermann'),(427,'LANGES','Claudio'),(428,'LARINI','Nicola'),(429,'LARRAURI','Oscar'),(430,'LARROUSSE','Gerard'),(431,'LARSON','Jud'),(432,'LAUDA','Niki'),(433,'LAURENT','Roger'),(434,'LAVAGGI','Giovanni'),(435,'LAWRENCE','Chris'),(436,'LECLERE','Michel'),(437,'LEDERLE','Neville'),(438,'LEES','Geoff'),(439,'LEGAT','Arthur'),(440,'LEHTO','JJ'),(441,'LEONI','Lamberto'),(442,'LESTON','Les'),(443,'LEVEGH','Pierre'),(444,'LEVRETT','Bayliss'),(445,'LEWIS','Jackie'),(446,'LEWIS-EVANS','Stuart'),(447,'LIGIER','Guy'),(448,'LINDEN','Andy'),(449,'LIPPI','Roberto'),(450,'LIUZZI','Vitantonio'),(451,'LOMBARDI','Lella'),(452,'LONDONO','Ricardo'),(453,'LOOF','Ernst'),(454,'LOUVEAU','Henri'),(455,'LOVE','John'),(456,'LOVELY','Pete'),(457,'LOYER','Roger'),(458,'LUCAS','Jean'),(459,'LUCIENBONNET','Jean'),(460,'LUNGER','Brett'),(461,'MACDOWEL','Mike'),(462,'MACKAY-FRASER','Herbert'),(463,'MACKEY','Bill'),(464,'MACKLIN','Lance'),(465,'MAGEE','Damien'),(466,'MAGGS','Tony'),(467,'MAGILL','Mike'),(468,'MAGLIOLI','Umberto'),(469,'MAGNUSSEN','Jan'),(470,'MAIRESSE','Guy'),(471,'MAIRESSE','Willy'),(472,'MANSELL','Nigel'),(473,'MANTOVANI','Sergio'),(474,'MANTZ','Johnny'),(475,'MANZON','Robert'),(476,'MARIMON','Onofre'),(477,'MARKO','Helmut'),(478,'MARQUES','Tarso'),(479,'MARR','Leslie'),(480,'MARSH','Tony'),(481,'MARTIN','Eugene'),(482,'MARTINI','Pierluigi'),(483,'MASS','Jochen'),(484,'MASSA','Felipe'),(485,'MAY','Michael'),(486,'MAYER','Timmy'),(487,'MAZET','Francois'),(488,'MAZZACANE','Gaston'),(489,'MCALPINE','Kenneth'),(490,'MCCARTHY','Perry'),(491,'MCCOY','Ernie'),(492,'MCDOWELL','Johnny'),(493,'MCGRATH','Jack'),(494,'MCGUIRE','Brian'),(495,'MCLAREN','Bruce'),(496,'MCNISH','Allan'),(497,'MCRAE','Graham'),(498,'MCWITHEY','Jim'),(499,'MENDITEGUY','Carlos'),(500,'MERKEL','Harry'),(501,'MERZARIO','Arturo'),(502,'MIERES','Roberto'),(503,'MIGAULT','Francois'),(504,'MILES','John'),(505,'MILES','Ken'),(506,'MILHOUX','Andre'),(507,'MILLER','Chet'),(508,'MITTER','Gerhard'),(509,'MODENA','Stefano'),(510,'MONARCH','Thomas'),(511,'MONTAGNY','Franck'),(512,'MONTEIRO','Tiago'),(513,'MONTERMINI','Andrea'),(514,'MONTEVERDI','Peter'),(515,'MONTGOMERIE-CHARRING','Robin'),(516,'MONTOYA','Juan Pablo'),(517,'MORBIDELLI','Gianni'),(518,'MORENO','Roberto'),(519,'MORGAN','Dave'),(520,'MOSER','Silvio'),(521,'MOSS','Bill'),(522,'MOSS','Stirling'),(523,'MUNARON','Gino'),(524,'MURRAY','David'),(525,'MUSSO','Luigi'),(526,'NAKAJIMA','Kazuki'),(527,'NAKAJIMA','Satoru'),(528,'NAKANO','Shinji'),(529,'NALON','Duke'),(530,'NANNINI','Alessandro'),(531,'NASPETTI','Emanuele'),(532,'NATILI','Massimo'),(533,'NAYLOR','Brian'),(534,'NAZARUK','Mike'),(535,'NEEDELL','Tiff'),(536,'NELLEMAN','Jac'),(537,'NEVE','Patrick'),(538,'NICHOLSON','John'),(539,'NIDAY','Cal'),(540,'NIEDERMAYR','Helmut'),(541,'NIEMANN','Brausch'),(542,'NILSSON','Gunnar'),(543,'NODA','Hideki'),(544,'NUCKEY','Rodney'),(545,'O\'BRIEN','Robert'),(546,'O\'CONNOR','Pat'),(547,'OLIVER','Jackie'),(548,'ONGAIS','Danny'),(549,'OPPITZHAUSER','Karl'),(550,'OWEN','Arthur'),(551,'PACE','Carlos'),(552,'PAGANI','Nello'),(553,'PALETTI','Riccardo'),(554,'PALM','Torsten'),(555,'PALMER','Jonathan'),(556,'PANIS','Olivier'),(557,'PANTANO','Giorgio'),(558,'PAPIS','Massimiliano'),(559,'PARKES','Mike'),(560,'PARNELL','Reg'),(561,'PARNELL','Tim'),(562,'PARSONS','Johnnie'),(563,'PATRESE','Riccardo'),(564,'PEASE','Al'),(565,'PENSKE','Roger'),(566,'PERDISA','Cesare'),(567,'PEREZ-SALA','Luis'),(568,'PERKINS','Larry'),(569,'PESCAROLO','Henri'),(570,'PESENTI-ROSSI','Alessandro'),(571,'PETERS','Josef'),(572,'PETERSON','Ronnie'),(573,'PIAN','Alfredo'),(574,'PICARD','Francois'),(575,'PIETERSE','Ernie'),(576,'PIETSCH','Paul'),(577,'PILETTE','Andre'),(578,'PILETTE','Teddy'),(579,'PIOTTI','Luigi'),(580,'PIPER','David'),(581,'PIQUET','Nelson'),(582,'PIQUET','Nelson Jr.'),(583,'PIROCCHI','Renato'),(584,'PIRONI','Didier'),(585,'PIRRO','Emanuele'),(586,'PIZZONIA','Antonio'),(587,'POLLET','Jacques'),(588,'PON','Ben'),(589,'POORE','Dennis'),(590,'POSEY','Sam'),(591,'POZZI','Charles'),(592,'PRETORIUS','Jackie'),(593,'PRINOTH','Ernesto'),(594,'PROPHET','David'),(595,'PROST','Alain'),(596,'PRYCE','Tom'),(597,'PURLEY','David'),(598,'PUZEY','Clive'),(599,'QUESTER','Dieter'),(600,'RABY','Ian'),(601,'RAHAL','Bobby'),(602,'RAIKKONEN','Kimi'),(603,'RAPHANEL','Pierre-Henri'),(604,'RATHMANN','Dick'),(605,'RATHMANN','Jim'),(606,'RATZENBERGER','Roland'),(607,'REBAQUE','Hector'),(608,'REDMAN','Brian'),(609,'REECE','Jimmy'),(610,'REED','Ray'),(611,'REES','Alan'),(612,'REGAZZONI','Clay'),(613,'REUTEMANN','Carlos'),(614,'REVENTLOW','Lance'),(615,'REVSON','Peter'),(616,'RHODES','John'),(617,'RIBEIRO','Alex'),(618,'RICHARDSON','Ken'),(619,'RIESS','Fritz'),(620,'RIGSBY','Jim'),(621,'RINDT','Jochen'),(622,'RISELEY-PRICHARD','John'),(623,'ROBARTS','Richard'),(624,'RODRIGUEZ','Pedro'),(625,'RODRIGUEZ','Ricardo'),(626,'RODRIGUEZ LARRETA','Alberto'),(627,'ROL','Franco'),(628,'ROLLINSON','Alan'),(629,'ROLT','Tony'),(630,'ROOS','Bertil'),(631,'ROSBERG','Keke'),(632,'ROSBERG','Nico'),(633,'ROSE','Mauri'),(634,'ROSIER','Louis'),(635,'ROSSET','Ricardo'),(636,'ROTHENGATTER','Huub'),(637,'RUBY','Lloyd'),(638,'RUDAZ','Jean-Claude'),(639,'RUSSO','Eddie'),(640,'RUSSO','Paul'),(641,'RUTTMAN','Troy'),(642,'RYAN','Peter'),(643,'SACHS','Eddie'),(644,'SAID','Bob'),(645,'SALAZAR','Eliseo'),(646,'SALO','Mika'),(647,'SALVADORI','Roy'),(648,'SANESI','Consalvo'),(649,'SARRAZIN','Stephane'),(650,'SATO','Takuma'),(651,'SCARBOROUGH','Carl'),(652,'SCARFIOTTI','Ludovico'),(653,'SCARLATTI','Giorgio'),(654,'SCHECKTER','Ian'),(655,'SCHECKTER','Jody'),(656,'SCHELL','Harry'),(657,'SCHENKEN','Tim'),(658,'SCHERRER','Albert'),(659,'SCHIATTARELLA','Domenico'),(660,'SCHILLER','Heinz'),(661,'SCHINDLER','Bill'),(662,'SCHLESSER','Jean-Louis'),(663,'SCHLESSER','Jo'),(664,'SCHNEIDER','Bernd'),(665,'SCHOELLER','Rudolf'),(666,'SCHROEDER','Rob'),(667,'SCHUMACHER','Michael'),(668,'SCHUMACHER','Ralf'),(669,'SCHUPPAN','Vern'),(670,'SCHWELM CRUZ','Adolfo'),(671,'SCOTT','Bob'),(672,'SCOTT BROWN','Archie'),(673,'SCOTTI','Piero'),(674,'SEIDEL','Wolfgang'),(675,'SEIFFERT','Guenther'),(676,'SENNA','Ayrton'),(677,'SERAFINI','Dorino'),(678,'SERRA','Chico'),(679,'SERRURIER','Doug'),(680,'SERVOZ-GAVIN','Johnny'),(681,'SETTEMBER','Tony'),(682,'SHARP','Hap'),(683,'SHAWE-TAYLOR','Brian'),(684,'SHELBY','Carroll'),(685,'SHELLY','Tony'),(686,'SIFFERT','Jo'),(687,'SIMON','Andre'),(688,'SLOTEMAKER','Rob'),(689,'SOLANA','Moises'),(690,'SOLER-ROIG','Alex'),(691,'SOMMER','Raymond'),(692,'SOSPIRI','Vincenzo'),(693,'SOUTH','Stephen'),(694,'SPARKEN','Mike'),(695,'SPEED','Scott'),(696,'SPENCE','Mike'),(697,'STACEY','Alan'),(698,'STARRABBA','Gaetano'),(699,'STEVENSON','Chuck'),(700,'STEWART','Ian'),(701,'STEWART','Jackie'),(702,'STEWART','Jimmy'),(703,'STOHR','Siegfried'),(704,'STOMMELEN','Rolf'),(705,'STREIFF','Philippe'),(706,'STUCK','Hans'),(707,'STUCK','Hans Joachim'),(708,'STUPPACHER','Otto'),(709,'SULLIVAN','Danny'),(710,'SURER','Marc'),(711,'SURTEES','John'),(712,'SUTCLIFFE','Andy'),(713,'SUTIL','Adrian'),(714,'SUTTON','Len'),(715,'SUZUKI','Aguri'),(716,'SUZUKI','Toshio'),(717,'SWATERS','Jacques'),(718,'SWEIKERT','Bob'),(719,'TAKAGI','Toranosuke'),(720,'TAKAHARA','Noritake'),(721,'TAKAHASHI','Kunimitsu'),(722,'TAMBAY','Patrick'),(723,'TARAMAZZO','Luigi'),(724,'TARQUINI','Gabriele'),(725,'TARUFFI','Piero'),(726,'TAYLOR','Dennis'),(727,'TAYLOR','Henry'),(728,'TAYLOR','John'),(729,'TAYLOR','Mike'),(730,'TAYLOR','Trevor'),(731,'TEAGUE','Marshall'),(732,'TEMPLEMAN','Shorty'),(733,'TERRA','Max de'),(734,'TESTUT','Andre'),(735,'THACKWELL','Mike'),(736,'THIELE','Alfonso'),(737,'THOMPSON','Eric'),(738,'THOMSON','Johnny'),(739,'THORNE','Leslie'),(740,'TINGELSTAD','Bud'),(741,'TINGLE','Sam'),(742,'TITTERINGTON','Desmond'),(743,'TOLAN','Johnnie'),(744,'TRIMMER','Tony'),(745,'TRINTIGNANT','Maurice'),(746,'TRULLI','Jarno'),(747,'TUERO','Esteban'),(748,'TUNMER','Guy'),(749,'TURNER','Jack'),(750,'ULMEN','Toni'),(751,'UNSER','Bobby'),(752,'UNSER','Jerry'),(753,'URIA','Alberto'),(754,'VACCARELLA','Nino'),(755,'VAN DE POELE','Eric'),(756,'VAN DER LOF','Dries'),(757,'VAN DER VYVER','Syd'),(758,'VAN LENNEP','Gijs'),(759,'VAN ROOYEN','Basil'),(760,'VEITH','Bob'),(761,'VERSTAPPEN','Jos'),(762,'VETTEL','Sebastian'),(763,'VILLENEUVE','Gilles'),(764,'VILLENEUVE','Jacques'),(765,'VILLENEUVE SR.','Jacques'),(766,'VILLORESI','Luigi'),(767,'VOLONTERIO','Ottorino'),(768,'VON OPEL','Rikky'),(769,'VON TRIPS','Wolfgang'),(770,'VONLANTHEN','Jo'),(771,'VUKOVICH','Bill'),(772,'WACKER','Fred'),(773,'WALKER','David'),(774,'WALKER','Peter'),(775,'WALLARD','Lee'),(776,'WALTER','Heini'),(777,'WARD','Rodger'),(778,'WARWICK','Derek'),(779,'WATSON','John'),(780,'WEBB','Spider'),(781,'WEBBER','Mark'),(782,'WEIDLER','Volker'),(783,'WEILER','Wayne'),(784,'WENDLINGER','Karl'),(785,'WESTBURY','Peter'),(786,'WEYANT','Chuck'),(787,'WHARTON','Ken'),(788,'WHITEAWAY','Ted'),(789,'WHITEHEAD','Graham'),(790,'WHITEHEAD','Peter'),(791,'WHITEHOUSE','Bill'),(792,'WIDDOWS','Robin'),(793,'WIETZES','Eppie'),(794,'WILDS','Mike'),(795,'WILLIAMS','Jonathan'),(796,'WILLIAMSON','Roger'),(797,'WILSON','Dempsey'),(798,'WILSON','Desire'),(799,'WILSON','Justin'),(800,'WILSON','Vic'),(801,'WINKELHOCK','Joachim'),(802,'WINKELHOCK','Manfred'),(803,'WINKELHOCK','Markus'),(804,'WISELL','Reine'),(805,'WUNDERINK','Roelof'),(806,'WURZ','Alexander'),(807,'YAMAMOTO','Sakon'),(808,'YOONG','Alex'),(809,'ZANARDI','Alex'),(810,'ZAPICO','Emilio'),(811,'ZONTA','Ricardo'),(812,'ZORZI','Renzo'),(813,'ZUNINO','Ricardo'),(814,'CHANDHOK','Karun'),(815,'DI GRASSI','Lucas'),(816,'HUELKENBERG','Nico'),(817,'PETROV','Vitaly'),(818,'SENNA','Bruno'),(819,'D\'AMBROSIO','Jerome'),(820,'DI RESTA','Paul'),(821,'MALDONADO','Pastor'),(822,'PEREZ','Sergio'),(823,'PIC','Charles'),(824,'RICCIARDO','Daniel'),(825,'VERGNE','Jean-Eric'),(826,'BIANCHI','Jules'),(827,'BOTTAS','Valtteri'),(828,'CHILTON','Max'),(829,'GUTIERREZ','Esteban'),(830,'VAN DER GARDE','Giedo'),(831,'ERICSSON','Marcus'),(832,'KVYAT','Daniil'),(833,'LOTTERER','Andre'),(834,'MAGNUSSEN','Kevin'),(835,'STEVENS','Will'),(836,'MERHI','Roberto'),(837,'NASR','Felipe'),(838,'ROSSI','Alexander'),(839,'SAINZ','Carlos Jr.'),(840,'VERSTAPPEN','Max'),(841,'HARYANTO','Rio'),(842,'OCON','Esteban'),(843,'PALMER','Jolyon'),(844,'VANDOORNE','Stoffel'),(845,'WEHRLEIN','Pascal'); /*!40000 ALTER TABLE `alldrivers` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `drivers` -- DROP TABLE IF EXISTS `drivers`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `drivers` ( `d_id` int(4) NOT NULL AUTO_INCREMENT, `d_lname` varchar(20) NOT NULL DEFAULT '', `d_fname` varchar(20) NOT NULL DEFAULT '', `d_currseason` int(1) NOT NULL DEFAULT '0', `d_miod` int(3) NOT NULL DEFAULT '0', `d_fa_id` int(3) NOT NULL DEFAULT '0', PRIMARY KEY (`d_id`) ) ENGINE=MyISAM AUTO_INCREMENT=52 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `drivers` -- LOCK TABLES `drivers` WRITE; /*!40000 ALTER TABLE `drivers` DISABLE KEYS */; INSERT INTO `drivers` VALUES (1,'HAMILTON','Lewis',1,30,11),(2,'BOTTAS','Valtteri',1,24,11),(3,'RICCIARDO','Daniel',1,29,28),(4,'VERSTAPPEN','Max',1,27,28),(5,'VETTEL','Sebastian',1,28,1),(6,'RAIKKONEN','Kimi',1,26,1),(7,'PEREZ','Sergio',1,25,14),(8,'OCON','Esteban',1,12,14),(9,'STROLL','Lance',1,11,23),(10,'MASSA','Felipe',1,21,23),(11,'ALONSO','Fernando',1,22,25),(12,'VANDOORNE','Stoffel',1,14,25),(13,'SAINZ','Carlos Jr.',1,20,4),(14,'KVYAT','Daniil',1,18,22),(15,'GROSJEAN','Romain',1,19,29),(16,'MAGNUSSEN','Kevin',1,17,29),(17,'HUELKENBERG','Nico',1,23,4),(18,'PALMER','Jolyon',0,16,4),(19,'ERICSSON','Marcus',1,13,12),(20,'WEHRLEIN','Pascal',1,15,12),(21,'GIOVINAZZI','Antonio',1,0,12),(22,'BUTTON','Jenson',1,0,25),(23,'DI RESTA','Paul',1,0,23),(24,'GASLY','Pierre',1,0,22),(25,'HARTLEY','Brendon',1,0,22); /*!40000 ALTER TABLE `drivers` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `events` -- DROP TABLE IF EXISTS `events`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `events` ( `e_id` int(2) NOT NULL AUTO_INCREMENT, `e_type` varchar(20) NOT NULL DEFAULT '', PRIMARY KEY (`e_id`) ) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `events` -- LOCK TABLES `events` WRITE; /*!40000 ALTER TABLE `events` DISABLE KEYS */; INSERT INTO `events` VALUES (1,'QUALIFYING'),(2,'RACE'); /*!40000 ALTER TABLE `events` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `fflassets` -- DROP TABLE IF EXISTS `fflassets`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `fflassets` ( `fa_id` int(4) NOT NULL AUTO_INCREMENT, `fa_currseason` int(1) NOT NULL DEFAULT '0', `fa_chassis` varchar(30) NOT NULL DEFAULT '', `fa_mioc` int(3) NOT NULL DEFAULT '0', `fa_engine` varchar(30) NOT NULL DEFAULT '', `fa_mioe` int(3) NOT NULL DEFAULT '0', PRIMARY KEY (`fa_id`) ) ENGINE=MyISAM AUTO_INCREMENT=32 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `fflassets` -- LOCK TABLES `fflassets` WRITE; /*!40000 ALTER TABLE `fflassets` DISABLE KEYS */; INSERT INTO `fflassets` VALUES (1,1,'Ferrari',28,'Ferrari (Ferrari)',27),(2,0,'McLaren',0,'Mercedes (McLaren)',0),(3,0,'BMW Sauber',0,'BMW (BMW Sauber)',0),(4,1,'Renault',22,'Renault (Renault)',23),(5,0,'Toyota',0,'Toyota (Toyota)',0),(6,0,'Toro Rosso',0,'Ferrari (Toro Rosso)',0),(7,0,'Red Bull',0,'Renault (Red Bull)',0),(8,0,'Williams',0,'Toyota (Williams)',0),(9,0,'Brawn',0,'Mercedes (Brawn)',0),(10,0,'Force India',0,'Ferrari (Force India)',0),(11,1,'Mercedes GP',30,'Mercedes (Mercedes GP)',30),(12,1,'Sauber',21,'Ferrari (Sauber)',25),(13,0,'Williams',0,'Cosworth (Williams)',0),(14,1,'Force India',27,'Mercedes (Force India)',29),(15,0,'Lotus',0,'Cosworth (Lotus)',0),(16,0,'HRT',0,'Cosworth (HRT)',0),(17,0,'Virgin',0,'Cosworth (Virgin)',0),(18,0,'Lotus',0,'Renault (Lotus)',0),(19,0,'Williams',0,'Renault (Williams)',0),(20,0,'Caterham',0,'Renault (Caterham)',0),(21,0,'Marussia',0,'Cosworth (Marussia)',0),(22,1,'Toro Rosso',24,'Renault (Toro Rosso)',22),(23,1,'Williams',26,'Mercedes (Williams)',28),(24,0,'Marussia',0,'Ferrari (Marussia)',0),(25,1,'McLaren',25,'Honda (McLaren)',21),(26,0,'Lotus',0,'Mercedes (Lotus)',0),(27,0,'Manor',0,'Ferrari (Manor)',0),(28,1,'Red Bull',29,'TAG Heuer (Red Bull)',24),(29,1,'Haas',23,'Ferrari (Haas)',26); /*!40000 ALTER TABLE `fflassets` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `fflpoints` -- DROP TABLE IF EXISTS `fflpoints`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `fflpoints` ( `fp_u_id` int(4) NOT NULL DEFAULT '0', `fp_g_id` int(4) NOT NULL DEFAULT '0', `fp_points` decimal(4,1) NOT NULL DEFAULT '0.0' ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `fflpoints` -- LOCK TABLES `fflpoints` WRITE; /*!40000 ALTER TABLE `fflpoints` DISABLE KEYS */; INSERT INTO `fflpoints` VALUES (1,1,'67.0'),(36,1,'89.0'),(12,1,'59.0'),(21,1,'66.0'),(10,1,'58.0'),(18,1,'74.0'),(1,2,'67.0'),(36,2,'64.0'),(12,2,'69.0'),(21,2,'66.0'),(10,2,'51.0'),(18,2,'67.0'),(1,3,'67.0'),(36,3,'89.0'),(12,3,'59.0'),(21,3,'66.0'),(10,3,'58.0'),(18,3,'70.0'),(1,4,'80.0'),(36,4,'91.0'),(12,4,'78.0'),(21,4,'74.0'),(10,4,'55.0'),(18,4,'71.0'),(1,5,'60.0'),(36,5,'36.0'),(12,5,'50.0'),(21,5,'50.0'),(10,5,'43.0'),(18,5,'49.0'),(1,6,'36.0'),(36,6,'98.0'),(12,6,'55.0'),(21,6,'36.0'),(10,6,'43.0'),(18,6,'69.0'),(1,7,'94.0'),(36,7,'56.0'),(12,7,'84.0'),(21,7,'88.0'),(10,7,'57.0'),(18,7,'61.0'),(1,8,'64.0'),(36,8,'57.0'),(12,8,'79.0'),(21,8,'71.0'),(10,8,'57.0'),(18,8,'44.0'),(1,9,'78.0'),(36,9,'82.0'),(12,9,'81.0'),(21,9,'75.0'),(10,9,'56.0'),(18,9,'65.0'),(1,10,'90.0'),(36,10,'60.0'),(12,10,'87.0'),(21,10,'86.0'),(10,10,'49.0'),(18,10,'64.0'),(1,11,'57.0'),(36,11,'101.0'),(12,11,'54.0'),(21,11,'55.0'),(10,11,'61.0'),(18,11,'76.0'),(1,12,'72.0'),(36,12,'70.0'),(12,12,'62.0'),(21,12,'70.0'),(10,12,'53.0'),(18,12,'66.0'),(1,13,'94.0'),(36,13,'74.0'),(12,13,'82.0'),(21,13,'92.0'),(10,13,'64.0'),(18,13,'68.0'),(1,14,'87.0'),(36,14,'19.0'),(12,14,'74.0'),(21,14,'90.0'),(10,14,'50.0'),(18,14,'52.0'),(1,15,'63.0'),(36,15,'38.0'),(12,15,'79.0'),(21,15,'66.0'),(10,15,'50.0'),(18,15,'40.0'),(1,16,'82.0'),(36,16,'32.0'),(12,16,'90.0'),(21,16,'74.0'),(10,16,'37.0'),(18,16,'47.0'),(21,17,'70.0'),(12,17,'65.0'),(36,17,'76.0'),(1,17,'78.0'),(18,17,'74.0'),(10,17,'53.0'),(1,18,'50.0'),(36,18,'80.0'),(12,18,'73.0'),(21,18,'48.0'),(10,18,'41.0'),(18,18,'47.0'),(1,19,'60.0'),(36,19,'98.0'),(12,19,'66.0'),(21,19,'60.0'),(10,19,'59.0'),(18,19,'70.0'),(1,20,'90.0'),(36,20,'79.0'),(12,20,'82.0'),(21,20,'86.0'),(10,20,'60.0'),(18,20,'70.0'); /*!40000 ALTER TABLE `fflpoints` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `fflresults` -- DROP TABLE IF EXISTS `fflresults`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `fflresults` ( `fr_season` int(4) NOT NULL DEFAULT '0', `fr_u_id` int(4) NOT NULL DEFAULT '0', `fr_ft_a_id_d1` int(4) NOT NULL DEFAULT '0', `fr_ft_a_id_d2` int(4) NOT NULL DEFAULT '0', `fr_fa_id_chassis` int(4) NOT NULL DEFAULT '0', `fr_fa_id_engine` int(4) NOT NULL DEFAULT '0', `fr_totalpoints` decimal(5,1) DEFAULT '0.0', PRIMARY KEY (`fr_season`,`fr_u_id`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `fflresults` -- LOCK TABLES `fflresults` WRITE; /*!40000 ALTER TABLE `fflresults` DISABLE KEYS */; INSERT INTO `fflresults` VALUES (2009,0,128,762,9,9,'523.0'),(2009,1,746,762,8,7,'304.5'),(2009,2,15,251,9,1,'276.0'),(2009,3,49,303,9,1,'343.0'),(2009,6,484,128,9,6,'297.0'),(2009,9,602,128,5,7,'356.0'),(2009,10,334,128,8,9,'350.5'),(2009,11,746,128,7,1,'351.0'),(2009,12,762,128,9,1,'421.0'),(2010,0,15,713,7,7,'1295.0'),(2010,1,334,411,11,7,'984.0'),(2010,4,484,762,17,7,'898.0'),(2010,6,484,713,7,6,'702.0'),(2010,9,816,15,11,2,'942.0'),(2010,10,417,303,2,7,'1088.0'),(2010,11,818,15,1,1,'1044.0'),(2010,12,15,816,11,7,'986.0'),(2010,13,49,818,1,6,'456.0'),(2011,6,713,348,2,7,'1223.0'),(2011,1,632,822,1,7,'1128.0'),(2011,12,667,820,7,1,'1128.0'),(2011,10,484,820,7,2,'1292.0'),(2011,0,128,820,7,7,'1597.0'),(2012,1,602,816,2,7,'1108.0'),(2012,12,15,320,2,7,'1212.0'),(2012,6,411,816,7,1,'983.0'),(2012,9,667,825,7,2,'903.0'),(2012,10,762,825,2,7,'1135.0'),(2012,2,762,394,18,7,'1044.0'),(2012,7,762,818,18,18,'918.0'),(2012,0,15,320,7,7,'1294.0'),(2013,1,762,828,1,7,'1347.0'),(2013,20,602,829,1,7,'1139.0'),(2013,12,602,829,1,7,'1139.0'),(2013,10,762,830,2,7,'1115.0'),(2013,18,15,826,19,1,'601.0'),(2013,0,15,828,7,7,'1434.0'),(2014,1,762,834,1,7,'843.0'),(2014,20,762,834,11,7,'1328.0'),(2014,12,602,832,11,7,'1169.0'),(2014,10,334,821,2,7,'972.0'),(2014,9,632,834,11,1,'1289.0'),(2014,0,824,834,11,11,'1695.0'),(2015,1,832,840,11,11,'1549.0'),(2015,20,602,839,11,11,'1574.0'),(2015,21,831,602,11,25,'889.0'),(2015,9,484,839,11,1,'1274.0'),(2015,10,762,840,11,7,'1216.0'),(2015,0,602,839,11,11,'1574.0'),(2016,1,840,843,11,11,'1735.0'),(2016,12,762,834,11,28,'1452.0'),(2016,21,834,15,11,11,'1591.0'),(2016,10,334,845,1,4,'787.0'),(2016,9,824,841,11,1,'1419.0'),(2016,18,15,839,11,1,'1263.0'),(2016,20,840,843,11,11,'1735.0'),(2016,0,840,843,11,11,'1735.0'),(2017,1,12,8,11,11,'1436.0'),(2017,36,2,9,1,1,'1389.0'),(2017,12,2,8,11,28,'1428.0'),(2017,21,12,9,11,11,'1389.0'),(2017,10,5,9,11,25,'1055.0'),(2017,18,13,19,11,1,'1244.0'); /*!40000 ALTER TABLE `fflresults` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `fflteams` -- DROP TABLE IF EXISTS `fflteams`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `fflteams` ( `ft_u_id` int(4) NOT NULL DEFAULT '0', `ft_d_id_d1` int(4) NOT NULL DEFAULT '0', `ft_d_id_d2` int(4) NOT NULL DEFAULT '0', `ft_fa_id_chassis` int(4) NOT NULL DEFAULT '0', `ft_fa_id_engine` int(4) NOT NULL DEFAULT '0', PRIMARY KEY (`ft_u_id`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `fflteams` -- LOCK TABLES `fflteams` WRITE; /*!40000 ALTER TABLE `fflteams` DISABLE KEYS */; INSERT INTO `fflteams` VALUES (1,12,8,11,11),(36,2,9,1,1),(12,2,8,11,28),(21,12,9,11,11),(10,5,9,11,25),(18,13,19,11,1); /*!40000 ALTER TABLE `fflteams` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `gps` -- DROP TABLE IF EXISTS `gps`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `gps` ( `g_id` int(4) NOT NULL AUTO_INCREMENT, `g_name` varchar(40) NOT NULL DEFAULT '', `g_datetime_q` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `g_datetime_r` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `g_flag` varchar(20) NOT NULL DEFAULT '', `g_circuit` varchar(40) NOT NULL DEFAULT '', PRIMARY KEY (`g_id`) ) ENGINE=MyISAM AUTO_INCREMENT=22 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `gps` -- LOCK TABLES `gps` WRITE; /*!40000 ALTER TABLE `gps` DISABLE KEYS */; INSERT INTO `gps` VALUES (1,'AUSTRALIA (Melbourne)','2017-03-25 07:00:00','2017-03-26 07:00:00','flag_AUSTRALIA.gif','circuit_AUSTRALIA_new.jpg'),(2,'CHINA (Shanghai)','2017-04-08 09:00:00','2017-04-09 08:00:00','flag_CHINA.gif','circuit_CHINA_new.jpg'),(3,'BAHRAIN (Sakhir)','2017-04-15 17:00:00','2017-04-16 17:00:00','flag_BAHRAIN.gif','circuit_BAHRAIN_new.jpg'),(4,'RUSSIA (Sochi)','2017-04-29 14:00:00','2017-04-30 14:00:00','flag_RUSSIA.gif','circuit_RUSSIA_new.jpg'),(5,'SPAIN (Barcelona)','2017-05-13 14:00:00','2017-05-14 14:00:00','flag_SPAIN.gif','circuit_SPAIN_new.jpg'),(6,'MONACO (Monte Carlo)','2017-05-27 14:00:00','2017-05-28 14:00:00','flag_MONACO.gif','circuit_MONACO_new.jpg'),(7,'CANADA (Montreal)','2017-06-10 19:00:00','2017-06-11 20:00:00','flag_CANADA.gif','circuit_CANADA_new.jpg'),(8,'AZERBAIJAN (Baku)','2017-06-24 15:00:00','2017-06-25 15:00:00','flag_AZERBAIJAN.gif','circuit_AZERBAIJAN_new.jpg'),(9,'AUSTRIA (Spielberg)','2017-07-08 14:00:00','2017-07-09 14:00:00','flag_AUSTRIA.gif','circuit_AUSTRIA_new.jpg'),(10,'GREAT BRITAIN (Silverstone)','2017-07-15 14:00:00','2017-07-16 14:00:00','flag_UK.gif','circuit_UK_new.jpg'),(11,'HUNGARY (Budapest)','2017-07-29 14:00:00','2017-07-30 14:00:00','flag_HUNGARY.gif','circuit_HUNGARY_new.jpg'),(12,'BELGIUM (Spa)','2017-08-26 14:00:00','2017-08-27 14:00:00','flag_BELGIUM.gif','circuit_BELGIUM_new.jpg'),(13,'ITALY (Monza)','2017-09-02 14:00:00','2017-09-03 14:00:00','flag_ITALY.gif','circuit_ITALY_new.jpg'),(14,'SINGAPORE (Singapore)','2017-09-16 15:00:00','2017-09-17 14:00:00','flag_SINGAPORE.gif','circuit_SINGAPORE_new.jpg'),(15,'MALAYSIA (Sepang)','2017-09-30 11:00:00','2017-10-01 09:00:00','flag_MALAYSIA.gif','circuit_MALAYSIA_new.jpg'),(16,'JAPAN (Suzuka)','2017-10-07 08:00:00','2017-10-08 07:00:00','flag_JAPAN.gif','circuit_JAPAN_new.jpg'),(17,'USA (Austin)','2017-10-21 23:00:00','2017-10-22 20:00:00','flag_USA.gif','circuit_USA_new.jpg'),(18,'MEXICO (Mexico City)','2017-10-28 20:00:00','2017-10-29 21:00:00','flag_MEXICO.gif','circuit_MEXICO_new.jpg'),(19,'BRAZIL (Sao Paulo)','2017-11-11 17:00:00','2017-11-12 17:00:00','flag_BRAZIL.gif','circuit_BRAZIL_new.jpg'),(20,'UNITED ARAB EMIRATES (Abu Dhabi)','2017-11-25 14:00:00','2017-11-26 14:00:00','flag_UAE.gif','circuit_UAE_new.jpg'); /*!40000 ALTER TABLE `gps` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `results` -- DROP TABLE IF EXISTS `results`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `results` ( `r_g_id` int(4) NOT NULL DEFAULT '0', `r_e_id` int(2) NOT NULL DEFAULT '0', `r_d_id_p1` int(4) NOT NULL DEFAULT '0', `r_d_id_p2` int(4) NOT NULL DEFAULT '0', `r_d_id_p3` int(4) NOT NULL DEFAULT '0', `r_d_id_p4` int(4) NOT NULL DEFAULT '0', `r_d_id_p5` int(4) NOT NULL DEFAULT '0', `r_d_id_p6` int(4) NOT NULL DEFAULT '0', `r_d_id_p7` int(4) NOT NULL DEFAULT '0', `r_d_id_p8` int(4) NOT NULL DEFAULT '0', `r_d_id_p9` int(4) NOT NULL DEFAULT '0', `r_d_id_p10` int(4) NOT NULL DEFAULT '0', `r_fl` int(4) NOT NULL DEFAULT '0', `r_firstout` varchar(20) NOT NULL DEFAULT '0', `r_bestcup` varchar(20) NOT NULL DEFAULT '0', `r_sc` int(2) NOT NULL DEFAULT '-1', `r_hp` int(1) NOT NULL DEFAULT '0', PRIMARY KEY (`r_g_id`,`r_e_id`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `results` -- LOCK TABLES `results` WRITE; /*!40000 ALTER TABLE `results` DISABLE KEYS */; INSERT INTO `results` VALUES (1,1,1,5,2,0,0,0,0,0,0,0,0,'0','0',-1,0),(1,2,5,1,2,6,4,10,7,13,14,8,6,'15','12',0,0),(2,1,1,5,2,0,0,0,0,0,0,0,0,'0','0',-1,0),(2,2,1,5,4,3,6,2,13,16,7,8,1,'9','4',1,0),(3,1,2,1,5,0,0,0,0,0,0,0,0,'0','0',-1,0),(3,2,5,1,2,6,3,10,7,15,17,8,1,'16','7',1,0),(4,1,5,6,2,0,0,0,0,0,0,0,0,'0','0',-1,0),(4,2,2,5,6,1,4,7,8,17,10,13,6,'15,18','12',1,0),(5,1,1,5,2,0,0,0,0,0,0,0,0,'0','0',-1,0),(5,2,1,5,3,7,8,17,13,20,14,15,1,'6','14',1,0),(6,1,6,5,2,0,0,0,0,0,0,0,0,'0','0',-1,0),(6,2,5,6,3,2,4,13,1,15,10,16,7,'17','1',1,0),(7,1,1,5,2,0,0,0,0,0,0,0,0,'0','0',-1,0),(7,2,1,2,3,5,7,8,6,17,9,15,1,'10,13','9',1,0),(8,1,1,2,6,0,0,0,0,0,0,0,0,'0','0',-1,0),(8,2,3,2,9,5,1,8,16,13,11,20,5,'18','11',1,0),(9,1,2,5,1,0,0,0,0,0,0,0,0,'0','0',-1,0),(9,2,2,5,3,1,6,15,7,8,10,9,1,'11,4','10,9',0,0),(10,1,1,6,5,0,0,0,0,0,0,0,0,'0','0',-1,0),(10,2,1,2,6,4,3,17,5,8,7,10,1,'13','3',1,0),(11,1,5,6,2,0,0,0,0,0,0,0,0,'0','0',-1,0),(11,2,5,6,2,1,4,11,13,7,8,12,11,'3','14,7',1,0),(12,1,1,5,2,0,0,0,0,0,0,0,0,'0','0',-1,0),(12,2,1,5,3,6,2,17,15,10,8,13,5,'20','10',1,0),(13,1,1,4,3,0,0,0,0,0,0,0,0,'0','0',-1,0),(13,2,1,2,5,3,6,8,9,10,7,4,3,'18','3',0,0),(14,1,5,4,3,0,0,0,0,0,0,0,0,'0','0',-1,0),(14,2,1,3,2,13,7,18,12,9,15,8,1,'6,4','9',1,0),(15,1,1,6,4,0,0,0,0,0,0,0,0,'0','0',-1,0),(15,2,4,1,3,5,2,7,12,9,10,8,5,'13','5',0,0),(16,1,1,2,5,0,0,0,0,0,0,0,0,'0','0',-1,0),(16,2,1,4,3,2,6,8,7,16,15,10,2,'13','11',1,0),(17,1,1,5,2,0,0,0,0,0,0,0,0,'0','0',-1,0),(17,2,1,5,6,4,2,8,13,7,10,14,5,'17','4',0,0),(18,1,5,4,1,0,0,0,0,0,0,0,0,'0','0',-1,0),(18,2,4,2,6,5,8,9,7,16,1,11,5,'3','11',1,0),(19,1,2,5,6,0,0,0,0,0,0,0,0,'0','0',-1,0),(19,2,5,2,6,1,4,3,10,11,7,17,4,'12','1',1,0),(20,1,2,1,5,0,0,0,0,0,0,0,0,'0','0',-1,0),(20,2,2,1,5,6,4,17,7,8,11,10,2,'3','15,25',0,0); /*!40000 ALTER TABLE `results` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tips` -- DROP TABLE IF EXISTS `tips`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `tips` ( `t_u_id` int(4) NOT NULL DEFAULT '0', `t_g_id` int(4) NOT NULL DEFAULT '0', `t_e_id` int(2) NOT NULL DEFAULT '0', `t_d_id_p1` int(4) NOT NULL DEFAULT '0', `t_d_id_p2` int(4) NOT NULL DEFAULT '0', `t_d_id_p3` int(4) NOT NULL DEFAULT '0', `t_fl` int(4) NOT NULL DEFAULT '0', `t_firstout` int(4) NOT NULL DEFAULT '0', `t_bestcup` int(4) NOT NULL DEFAULT '0', `t_sc` int(2) NOT NULL DEFAULT '0', `t_timestamp` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `t_score` int(4) NOT NULL DEFAULT '0', PRIMARY KEY (`t_u_id`,`t_g_id`,`t_e_id`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tips` -- LOCK TABLES `tips` WRITE; /*!40000 ALTER TABLE `tips` DISABLE KEYS */; INSERT INTO `tips` VALUES (36,1,2,6,1,4,6,9,4,1,'2017-03-09 10:55:04',2),(36,1,1,1,6,2,0,0,0,0,'2017-03-09 10:55:23',4),(12,1,1,1,2,3,0,0,0,0,'2017-03-24 08:55:40',3),(21,1,1,1,2,5,0,0,0,0,'2017-03-24 16:05:39',4),(21,1,2,1,2,5,5,12,3,0,'2017-03-25 10:13:51',4),(1,1,1,1,5,2,0,0,0,0,'2017-03-24 19:29:41',6),(10,1,1,1,5,2,0,0,0,0,'2017-03-24 21:03:38',6),(7,1,1,1,5,2,0,0,0,0,'2017-03-24 22:43:33',6),(18,1,1,1,5,2,0,0,0,0,'2017-03-24 23:54:39',6),(12,1,2,1,5,2,1,3,16,1,'2017-03-25 08:20:12',3),(10,1,2,1,5,2,1,9,11,0,'2017-03-25 16:24:36',5),(1,1,2,1,5,6,1,19,3,1,'2017-03-25 17:47:26',1),(7,1,2,1,2,5,1,15,3,-1,'2017-03-25 19:03:14',6),(18,1,2,1,5,2,1,14,11,0,'2017-03-26 06:59:45',5),(7,2,1,1,5,2,0,0,0,0,'2017-04-07 08:18:29',6),(36,2,2,5,1,6,5,18,4,0,'2017-04-08 09:27:22',3),(36,2,1,5,2,1,0,0,0,0,'2017-04-08 08:56:53',3),(37,2,2,1,2,5,5,12,14,1,'2017-04-07 06:54:02',4),(12,2,1,1,2,5,0,0,0,0,'2017-04-07 12:54:22',4),(1,2,1,5,1,2,0,0,0,0,'2017-04-08 08:48:31',4),(21,2,1,5,1,6,0,0,0,0,'2017-04-08 07:05:57',2),(18,2,1,1,5,2,0,0,0,0,'2017-04-08 00:06:56',6),(10,2,1,5,2,1,0,0,0,0,'2017-04-08 08:50:16',3),(21,2,2,1,2,5,5,18,4,0,'2017-04-08 18:06:01',4),(12,2,2,1,5,2,1,4,15,1,'2017-04-08 19:43:02',6),(7,2,2,1,5,2,1,8,4,1,'2017-04-09 07:49:16',8),(1,2,2,5,1,2,1,19,4,1,'2017-04-08 22:10:14',6),(10,2,2,1,5,6,1,12,15,1,'2017-04-08 22:27:36',6),(18,2,2,1,5,6,1,12,4,1,'2017-04-09 07:59:49',8),(36,3,2,5,1,4,6,21,4,0,'2017-04-10 14:45:59',3),(36,3,1,1,5,2,0,0,0,0,'2017-04-10 14:45:52',3),(37,3,1,1,5,6,0,0,0,0,'2017-04-11 06:33:00',2),(7,3,1,5,3,2,0,0,0,0,'2017-04-14 21:06:16',2),(12,3,1,5,1,2,0,0,0,0,'2017-04-14 19:16:28',4),(1,3,1,1,5,2,0,0,0,0,'2017-04-15 08:03:04',3),(21,3,1,5,1,2,0,0,0,0,'2017-04-15 10:46:32',4),(10,3,1,1,5,2,0,0,0,0,'2017-04-15 16:06:49',3),(18,3,1,1,5,2,0,0,0,0,'2017-04-15 16:48:05',3),(12,3,2,1,2,5,1,19,13,0,'2017-04-15 18:18:42',3),(1,3,2,1,2,5,1,19,13,0,'2017-04-15 20:03:01',3),(7,3,2,5,1,3,1,16,18,0,'2017-04-16 15:04:10',7),(10,3,2,1,5,2,1,9,11,-1,'2017-04-16 11:03:55',5),(21,3,2,1,2,5,5,12,16,0,'2017-04-16 11:26:50',2),(18,3,2,1,2,5,1,16,7,-1,'2017-04-16 16:59:47',9),(36,4,2,5,6,2,5,16,10,1,'2017-04-29 15:15:55',4),(36,4,1,5,1,2,0,0,0,0,'2017-04-29 13:46:23',4),(12,4,1,5,6,1,0,0,0,0,'2017-04-28 20:00:55',4),(1,4,1,1,5,2,0,0,0,0,'2017-04-28 18:20:42',3),(21,4,1,5,6,2,0,0,0,0,'2017-04-28 18:49:18',6),(10,4,1,5,2,6,0,0,0,0,'2017-04-29 09:05:03',4),(7,4,1,5,6,1,0,0,0,0,'2017-04-29 12:22:14',4),(37,4,1,5,1,2,0,0,0,0,'2017-04-29 13:38:53',4),(18,4,1,5,1,6,0,0,0,0,'2017-04-29 13:45:45',3),(12,4,2,5,6,2,5,20,13,0,'2017-04-29 16:29:55',2),(1,4,2,5,1,6,5,16,15,1,'2017-04-29 18:34:59',4),(10,4,2,5,2,1,5,9,12,1,'2017-04-30 08:46:28',5),(21,4,2,5,6,2,5,11,15,1,'2017-04-30 10:18:41',4),(37,4,2,5,2,1,5,11,2,1,'2017-04-30 10:43:35',3),(18,4,2,5,2,6,5,12,14,0,'2017-04-30 13:59:10',3),(36,5,1,1,5,2,0,0,0,0,'2017-05-02 09:34:02',6),(36,5,2,5,1,2,1,9,4,0,'2017-05-02 09:34:59',2),(7,5,1,1,2,6,0,0,0,0,'2017-05-12 21:56:16',3),(7,5,2,5,1,2,5,9,14,1,'2017-05-14 08:33:50',5),(1,5,1,1,2,5,0,0,0,0,'2017-05-12 19:17:42',4),(12,5,1,1,2,6,0,0,0,0,'2017-05-13 13:57:43',3),(37,5,1,1,2,5,0,0,0,0,'2017-05-13 09:58:04',4),(21,5,1,1,2,6,0,0,0,0,'2017-05-13 13:08:38',3),(10,5,1,1,2,5,0,0,0,0,'2017-05-13 11:31:35',4),(18,5,1,1,5,2,0,0,0,0,'2017-05-13 13:50:22',6),(12,5,2,1,2,6,2,12,13,0,'2017-05-13 16:04:41',1),(37,5,2,1,2,5,5,9,2,0,'2017-05-13 18:07:08',2),(1,5,2,1,2,5,6,15,14,1,'2017-05-13 23:12:51',6),(10,5,2,5,1,2,5,20,17,-1,'2017-05-14 10:36:26',2),(21,5,2,1,2,5,5,12,14,1,'2017-05-14 12:46:59',6),(18,5,2,1,5,2,5,12,9,1,'2017-05-14 13:54:16',5),(36,6,2,5,6,2,6,9,1,1,'2017-05-28 09:35:59',7),(36,6,1,1,2,5,0,0,0,0,'2017-05-16 08:49:40',2),(21,6,1,1,5,4,0,0,0,0,'2017-05-26 08:30:26',2),(7,6,1,5,1,4,0,0,0,0,'2017-05-27 13:28:17',1),(12,6,1,5,6,2,0,0,0,0,'2017-05-27 08:52:19',4),(10,6,1,5,2,1,0,0,0,0,'2017-05-27 13:02:25',2),(1,6,1,5,6,2,0,0,0,0,'2017-05-27 13:14:39',4),(18,6,1,5,6,1,0,0,0,0,'2017-05-27 13:42:37',2),(12,6,2,5,6,2,5,12,1,1,'2017-05-27 15:34:30',7),(1,6,2,5,6,2,6,19,22,1,'2017-05-28 00:06:23',5),(21,6,2,6,5,4,1,12,1,1,'2017-05-28 09:36:18',5),(37,6,2,5,6,3,5,12,9999,1,'2017-05-28 12:23:33',7),(10,6,2,5,6,2,5,8,22,1,'2017-05-28 12:38:31',5),(7,6,2,5,6,2,5,18,1,1,'2017-05-28 13:24:32',7),(18,6,2,5,6,2,5,19,1,1,'2017-05-28 13:43:30',7),(36,7,2,1,5,2,1,12,6,1,'2017-06-08 14:22:16',5),(36,7,1,1,2,5,0,0,0,0,'2017-06-08 14:23:18',4),(12,7,1,1,2,5,0,0,0,0,'2017-06-09 18:10:01',4),(21,7,1,5,1,6,0,0,0,0,'2017-06-10 10:19:25',2),(37,7,1,1,6,5,0,0,0,0,'2017-06-10 11:09:06',3),(7,7,1,5,1,6,0,0,0,0,'2017-06-10 17:24:29',2),(7,7,2,1,5,6,5,19,9,1,'2017-06-11 19:25:56',5),(10,7,1,5,6,1,0,0,0,0,'2017-06-10 17:43:34',2),(1,7,1,5,1,6,0,0,0,0,'2017-06-10 18:03:37',2),(18,7,1,5,1,6,0,0,0,0,'2017-06-10 18:04:02',2),(1,7,2,1,5,2,5,15,16,1,'2017-06-10 20:37:04',4),(12,7,2,1,5,2,1,20,12,1,'2017-06-11 08:45:42',5),(37,7,2,1,5,2,5,9,6,1,'2017-06-11 09:58:07',4),(21,7,2,5,1,2,1,12,9,1,'2017-06-11 15:04:48',6),(10,7,2,1,5,6,1,13,20,1,'2017-06-11 19:19:53',7),(18,7,2,1,5,6,1,12,13,1,'2017-06-11 19:40:42',4),(36,8,1,5,2,6,0,0,0,0,'2017-06-14 09:56:03',4),(36,8,2,5,2,6,5,9,1,1,'2017-06-14 09:56:51',4),(7,8,1,2,5,1,0,0,0,0,'2017-06-24 14:28:19',2),(7,8,2,1,2,5,1,12,3,1,'2017-06-25 13:16:20',3),(12,8,1,5,1,4,0,0,0,0,'2017-06-23 15:31:22',1),(1,8,1,4,2,5,0,0,0,0,'2017-06-23 20:36:31',2),(10,8,1,5,1,4,0,0,0,0,'2017-06-24 11:06:05',1),(37,8,1,1,5,6,0,0,0,0,'2017-06-24 12:54:13',4),(18,8,1,5,6,1,0,0,0,0,'2017-06-24 13:18:58',2),(12,8,2,1,2,5,1,10,3,1,'2017-06-24 16:19:30',3),(1,8,2,1,2,5,1,15,3,1,'2017-06-25 00:58:09',3),(10,8,2,1,6,5,1,12,11,-1,'2017-06-25 09:59:45',2),(37,8,2,1,2,5,4,11,16,1,'2017-06-25 10:40:15',3),(18,8,2,1,6,5,5,18,11,1,'2017-06-25 13:58:38',7),(21,8,2,1,5,2,5,12,11,1,'2017-06-25 14:51:33',5),(7,9,1,5,2,1,0,0,0,0,'2017-07-08 13:41:30',4),(7,9,2,5,2,3,5,8,1,0,'2017-07-09 13:33:31',5),(36,9,1,5,1,2,0,0,0,0,'2017-07-07 11:47:05',3),(36,9,2,5,2,6,1,12,1,0,'2017-07-09 13:29:11',4),(37,9,1,1,5,2,0,0,0,0,'2017-07-07 18:33:34',4),(1,9,1,1,2,5,0,0,0,0,'2017-07-08 06:56:56',3),(21,9,1,1,5,2,0,0,0,0,'2017-07-08 07:43:35',4),(12,9,1,1,2,5,0,0,0,0,'2017-07-08 07:57:32',3),(18,9,1,1,5,2,0,0,0,0,'2017-07-08 12:48:47',4),(10,9,1,5,1,2,0,0,0,0,'2017-07-08 12:56:01',3),(1,9,2,2,5,1,1,8,16,1,'2017-07-08 17:28:13',4),(12,9,2,5,1,2,1,14,1,0,'2017-07-08 21:23:39',4),(21,9,2,5,1,2,1,12,16,1,'2017-07-09 13:59:26',2),(10,9,2,5,2,1,1,9,20,1,'2017-07-09 12:34:00',2),(18,9,2,2,5,1,1,15,1,1,'2017-07-09 13:54:03',4),(36,10,1,1,2,5,0,0,0,0,'2017-07-14 12:07:55',4),(36,10,2,1,5,6,1,12,3,1,'2017-07-16 13:26:14',8),(7,10,1,1,5,2,0,0,0,0,'2017-07-15 12:38:26',3),(1,10,1,1,2,5,0,0,0,0,'2017-07-15 07:00:08',4),(12,10,1,1,2,5,0,0,0,0,'2017-07-15 07:58:00',4),(10,10,1,5,1,2,0,0,0,0,'2017-07-15 09:09:19',2),(37,10,1,2,1,5,0,0,0,0,'2017-07-15 13:00:53',3),(18,10,1,1,2,5,0,0,0,0,'2017-07-15 13:34:35',4),(21,10,1,1,2,5,0,0,0,0,'2017-07-15 13:59:29',4),(12,10,2,1,2,5,5,11,3,1,'2017-07-15 21:41:33',7),(1,10,2,1,5,2,1,17,3,0,'2017-07-16 06:42:46',5),(7,10,2,1,6,2,6,14,3,0,'2017-07-16 08:57:44',5),(37,10,2,1,5,6,1,8,4,0,'2017-07-16 11:48:39',4),(10,10,2,1,5,6,1,9,11,1,'2017-07-16 12:23:27',6),(21,10,2,1,5,6,2,9,3,1,'2017-07-16 13:59:36',7),(18,10,2,1,5,6,1,12,3,1,'2017-07-16 13:55:17',8),(36,11,1,5,1,2,0,0,0,0,'2017-07-28 08:48:29',4),(36,11,2,5,1,6,5,18,4,0,'2017-07-28 08:49:11',2),(12,11,1,5,1,3,0,0,0,0,'2017-07-28 16:56:38',2),(1,11,1,5,2,1,0,0,0,0,'2017-07-29 13:32:49',3),(21,11,1,5,3,4,0,0,0,0,'2017-07-29 09:40:18',2),(7,11,1,5,6,1,0,0,0,0,'2017-07-29 12:50:19',4),(18,11,1,5,6,2,0,0,0,0,'2017-07-29 12:06:44',6),(10,11,1,5,2,6,0,0,0,0,'2017-07-29 13:14:55',4),(12,11,2,5,6,1,5,20,17,0,'2017-07-29 15:03:37',3),(1,11,2,5,6,1,1,14,9,1,'2017-07-29 16:01:52',5),(10,11,2,5,1,2,5,13,17,1,'2017-07-30 10:46:27',5),(7,11,2,5,6,1,5,4,14,0,'2017-07-30 13:32:35',5),(21,11,2,5,6,1,3,14,23,0,'2017-07-30 13:40:00',3),(18,11,2,5,2,6,5,9,7,0,'2017-07-30 13:56:35',5),(36,12,1,1,2,5,0,0,0,0,'2017-08-26 13:56:35',4),(36,12,2,5,1,2,1,12,10,1,'2017-08-27 13:46:28',5),(12,12,1,1,22,5,0,0,0,0,'2017-08-25 20:46:45',3),(7,12,1,5,6,1,0,0,0,0,'2017-08-26 13:53:45',2),(1,12,1,1,5,6,0,0,0,0,'2017-08-26 08:21:09',4),(10,12,1,1,2,5,0,0,0,0,'2017-08-26 09:33:18',4),(21,12,1,1,5,2,0,0,0,0,'2017-08-26 10:40:28',6),(37,12,1,1,2,6,0,0,0,0,'2017-08-26 11:19:46',3),(18,12,1,1,6,5,0,0,0,0,'2017-08-26 13:31:38',3),(12,12,2,1,5,2,1,12,9,1,'2017-08-26 15:29:39',5),(1,12,2,1,5,2,1,17,13,1,'2017-08-26 18:41:28',5),(7,12,2,1,2,5,6,19,14,-1,'2017-08-27 09:01:47',3),(37,12,2,5,2,3,1,8,4,1,'2017-08-27 09:52:15',4),(10,12,2,1,5,2,1,9,10,1,'2017-08-27 13:18:41',7),(21,12,2,1,5,2,1,11,12,1,'2017-08-27 13:44:10',5),(18,12,2,1,5,6,6,12,10,1,'2017-08-27 13:59:07',7),(36,13,1,1,2,5,0,0,0,0,'2017-08-28 15:02:37',2),(36,13,2,1,5,2,1,20,3,0,'2017-08-28 15:05:46',7),(21,13,1,1,2,5,0,0,0,0,'2017-09-01 14:05:37',2),(12,13,1,1,2,5,0,0,0,0,'2017-09-01 22:46:35',2),(37,13,1,1,5,2,0,0,0,0,'2017-09-02 07:13:10',2),(1,13,1,1,2,5,0,0,0,0,'2017-09-02 11:59:56',2),(7,13,1,1,2,5,0,0,0,0,'2017-09-02 12:04:49',2),(10,13,1,1,5,2,0,0,0,0,'2017-09-02 12:41:48',2),(18,13,1,5,1,6,0,0,0,0,'2017-09-02 13:58:42',1),(12,13,2,1,2,5,5,4,3,1,'2017-09-02 18:50:52',7),(1,13,2,1,2,5,1,10,3,0,'2017-09-02 22:10:37',9),(10,13,2,1,2,5,1,13,11,1,'2017-09-03 08:45:25',5),(21,13,2,1,2,5,1,12,3,0,'2017-09-03 10:25:01',9),(7,13,2,1,2,5,1,4,3,1,'2017-09-03 13:18:29',7),(37,13,2,1,5,2,2,8,4,1,'2017-09-03 13:37:22',3),(18,13,2,1,6,5,6,16,3,1,'2017-09-03 13:54:40',5),(36,14,2,5,4,3,4,20,10,1,'2017-09-17 13:14:37',2),(36,14,1,5,3,1,0,0,0,0,'2017-09-16 13:16:17',3),(37,14,1,3,5,4,0,0,0,0,'2017-09-15 18:10:57',3),(1,14,1,4,5,3,0,0,0,0,'2017-09-16 13:17:25',4),(12,14,1,3,1,4,0,0,0,0,'2017-09-15 23:43:04',2),(21,14,1,4,3,5,0,0,0,0,'2017-09-16 12:34:26',3),(18,14,1,5,1,4,0,0,0,0,'2017-09-16 14:16:57',3),(10,14,1,1,5,2,0,0,0,0,'2017-09-16 14:18:23',1),(7,14,1,3,4,1,0,0,0,0,'2017-09-16 14:29:34',3),(1,14,2,5,3,1,5,4,10,1,'2017-09-16 21:17:24',7),(12,14,2,5,3,4,5,10,9,1,'2017-09-16 22:17:11',5),(21,14,2,5,4,3,4,18,10,1,'2017-09-17 10:10:01',2),(10,14,2,5,4,1,5,9,10,1,'2017-09-17 10:12:28',2),(7,14,2,5,3,1,3,8,1,1,'2017-09-17 12:55:48',4),(18,14,2,5,3,6,3,18,19,1,'2017-09-17 13:59:12',3),(36,15,1,1,5,2,0,0,0,0,'2017-09-25 10:12:16',2),(36,15,2,1,4,3,5,6,5,1,'2017-10-01 08:58:12',6),(12,15,1,1,2,5,0,0,0,0,'2017-09-29 07:12:54',2),(21,15,1,1,4,5,0,0,0,0,'2017-09-29 09:59:43',3),(37,15,1,5,6,3,0,0,0,0,'2017-09-29 15:18:10',2),(1,15,1,5,6,1,0,0,0,0,'2017-09-29 20:57:04',3),(10,15,1,5,6,3,0,0,0,0,'2017-09-30 09:32:55',2),(7,15,2,1,6,3,1,8,5,1,'2017-10-01 07:33:09',4),(1,15,2,1,3,4,1,17,5,1,'2017-10-01 08:55:48',4),(12,15,2,1,3,4,5,6,5,1,'2017-09-30 19:49:21',5),(21,15,2,1,4,6,1,18,5,0,'2017-10-01 00:10:20',5),(18,15,2,1,6,3,3,24,5,1,'2017-10-01 08:03:38',4),(10,15,2,1,4,2,1,13,5,1,'2017-10-01 08:11:29',6),(37,15,2,1,3,2,1,15,24,1,'2017-10-01 08:55:13',1),(36,16,1,1,5,2,0,0,0,0,'2017-10-05 09:02:41',4),(36,16,2,1,5,3,1,18,2,0,'2017-10-07 18:28:59',3),(12,16,1,1,5,4,0,0,0,0,'2017-10-06 12:20:52',3),(37,16,1,1,5,4,0,0,0,0,'2017-10-06 14:57:07',3),(21,16,1,1,5,2,0,0,0,0,'2017-10-06 21:42:16',4),(1,16,1,1,5,3,0,0,0,0,'2017-10-06 21:49:54',3),(7,16,1,1,2,5,0,0,0,0,'2017-10-07 07:46:25',6),(18,16,1,1,2,5,0,0,0,0,'2017-10-07 07:58:43',6),(10,16,1,1,4,5,0,0,0,0,'2017-10-07 07:59:05',4),(12,16,2,1,5,4,1,10,13,1,'2017-10-07 09:14:23',4),(1,16,2,1,5,2,1,18,11,1,'2017-10-07 14:21:37',5),(21,16,2,1,5,2,5,18,11,0,'2017-10-07 17:22:02',3),(10,16,2,1,5,4,1,8,2,1,'2017-10-07 20:36:41',4),(7,16,2,1,5,3,2,8,2,-1,'2017-10-07 21:36:44',5),(37,16,2,1,5,3,1,15,4,0,'2017-10-07 22:25:38',3),(18,16,2,1,5,2,5,15,13,1,'2017-10-07 23:48:21',3),(21,17,1,1,5,2,0,0,0,0,'2017-10-20 12:58:03',6),(36,17,1,1,5,2,0,0,0,0,'2017-10-20 16:39:14',6),(36,17,2,1,5,3,1,20,4,0,'2017-10-22 20:41:14',7),(12,17,1,1,5,6,0,0,0,0,'2017-10-20 22:12:24',4),(1,17,1,1,2,5,0,0,0,0,'2017-10-21 21:38:26',4),(10,17,1,1,5,2,0,0,0,0,'2017-10-21 19:42:46',6),(37,17,1,1,5,2,0,0,0,0,'2017-10-21 20:21:31',6),(18,17,1,5,1,6,0,0,0,0,'2017-10-21 22:13:16',2),(1,17,2,1,2,5,1,15,4,1,'2017-10-22 00:08:21',4),(12,17,2,1,5,3,4,25,4,0,'2017-10-22 20:25:26',7),(7,17,2,1,2,5,1,9,4,-1,'2017-10-22 16:58:56',5),(21,17,2,5,1,2,1,17,4,0,'2017-10-22 17:31:01',8),(10,17,2,1,5,2,1,16,4,1,'2017-10-22 19:50:58',5),(37,17,2,1,5,2,5,4,3,1,'2017-10-22 20:20:15',4),(18,17,2,1,5,2,4,25,4,0,'2017-10-22 20:53:25',7),(36,18,1,1,5,2,0,0,0,0,'2017-10-23 15:37:05',2),(36,18,2,1,5,4,1,20,3,1,'2017-10-29 19:54:28',2),(21,18,1,3,1,4,0,0,0,0,'2017-10-28 12:41:46',2),(12,18,1,1,3,2,0,0,0,0,'2017-10-28 08:16:56',1),(7,18,1,1,2,3,0,0,0,0,'2017-10-28 13:59:37',1),(1,18,1,1,4,2,0,0,0,0,'2017-10-28 19:10:26',3),(10,18,1,1,4,2,0,0,0,0,'2017-10-28 14:43:08',3),(37,18,1,1,5,3,0,0,0,0,'2017-10-28 16:48:04',2),(18,18,1,1,5,4,0,0,0,0,'2017-10-28 19:14:57',3),(12,18,2,4,5,1,5,20,11,1,'2017-10-28 21:04:29',6),(1,18,2,4,5,1,5,17,3,1,'2017-10-29 19:58:52',4),(7,18,2,4,5,1,4,20,11,1,'2017-10-29 19:24:38',5),(21,18,2,4,1,5,3,24,3,1,'2017-10-29 18:13:01',3),(10,18,2,5,1,2,5,9,3,-1,'2017-10-29 18:54:07',2),(36,19,1,1,5,4,0,0,0,0,'2017-10-30 11:46:29',2),(36,19,2,4,5,2,1,20,1,0,'2017-11-12 16:59:21',3),(37,19,1,1,2,5,0,0,0,0,'2017-11-10 16:50:43',2),(18,19,1,1,2,5,0,0,0,0,'2017-11-11 08:11:49',2),(12,19,1,1,2,4,0,0,0,0,'2017-11-11 08:13:21',1),(1,19,1,1,2,5,0,0,0,0,'2017-11-11 13:41:56',2),(10,19,1,1,2,5,0,0,0,0,'2017-11-11 15:59:06',2),(21,19,1,1,2,3,0,0,0,0,'2017-11-11 16:02:13',1),(7,19,1,1,2,5,0,0,0,0,'2017-11-11 16:46:31',2),(7,19,2,2,5,6,5,15,1,1,'2017-11-11 18:36:07',7),(12,19,2,2,1,4,1,24,1,1,'2017-11-11 20:05:00',4),(21,19,2,2,5,4,1,24,1,0,'2017-11-12 15:43:55',3),(1,19,2,5,2,4,4,17,1,1,'2017-11-12 02:37:06',8),(10,19,2,2,5,4,2,8,1,0,'2017-11-12 10:57:57',3),(37,19,2,2,5,6,1,4,3,1,'2017-11-12 16:06:03',5),(18,19,2,5,2,4,5,6,1,1,'2017-11-12 16:58:03',7),(36,20,1,1,5,6,0,0,0,0,'2017-11-21 12:15:44',2),(36,20,2,1,2,5,1,20,11,1,'2017-11-26 13:58:40',3),(1,20,1,1,2,5,0,0,0,0,'2017-11-25 13:54:11',4),(12,20,1,1,2,4,0,0,0,0,'2017-11-24 22:45:29',2),(10,20,1,1,5,4,0,0,0,0,'2017-11-25 11:22:39',2),(7,20,1,1,2,5,0,0,0,0,'2017-11-25 12:25:23',4),(7,20,2,1,2,5,1,8,13,0,'2017-11-26 13:09:55',5),(18,20,1,1,2,5,0,0,0,0,'2017-11-25 13:04:06',4),(37,20,1,1,2,5,0,0,0,0,'2017-11-25 13:04:48',4),(12,20,2,1,2,5,1,11,13,0,'2017-11-25 17:04:06',5),(1,20,2,1,2,5,4,17,9,0,'2017-11-25 18:36:09',5),(10,20,2,1,2,5,2,16,11,1,'2017-11-26 10:52:37',4),(37,20,2,2,1,5,1,20,4,0,'2017-11-26 12:53:26',7),(18,20,2,2,1,5,3,15,13,1,'2017-11-26 13:58:01',5); /*!40000 ALTER TABLE `tips` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `users` -- DROP TABLE IF EXISTS `users`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `users` ( `u_id` int(11) NOT NULL AUTO_INCREMENT, `u_name` char(3) NOT NULL DEFAULT '', `u_passcode` varchar(41) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL DEFAULT '', `u_pic` varchar(40) DEFAULT NULL, `u_realname` varchar(40) NOT NULL DEFAULT '', `u_nickname` varchar(20) NOT NULL DEFAULT 'not revealed', `u_email` varchar(50) NOT NULL DEFAULT '', `u_emailreminder` int(1) NOT NULL DEFAULT '0', `u_nationality` varchar(20) NOT NULL DEFAULT 'not revealed', `u_favdriver` int(11) NOT NULL DEFAULT '0', `u_since` year(4) NOT NULL DEFAULT '0000', `u_gtwins` int(3) NOT NULL DEFAULT '0', `u_admin` int(1) NOT NULL DEFAULT '0', PRIMARY KEY (`u_id`) ) ENGINE=MyISAM AUTO_INCREMENT=38 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `users` -- LOCK TABLES `users` WRITE; /*!40000 ALTER TABLE `users` DISABLE KEYS */; INSERT INTO `users` VALUES (1,'MAM','18d022103920e120b2faabf4be68aa8f','pic_MAM.gif','Markus A. Mascelli','MAM','mam@heimam.at',0,'italian',602,2006,2,1),(2,'GUE','78918cecf8926d0cada4c5bc31af87a3','pic_GUE.gif','Guenther Schmidt','GueStar','guenther.schmidt@gmail.com',0,'austrian',15,2006,3,0),(3,'ZEI','8dad7cabce9c511bd4983e8dc96ea5da','pic_ZEI.gif','Christian Zeichmann','Zeichi','christian.zeichmann@kabelnet.at',0,'austrian',0,2007,1,0),(4,'AFG','8ff522cd1e5219541b2e945af0727d2b','pic_AFG.gif','Andrea F. Grohmann','','a.grohmann@gmx.at',0,'austrian',0,2007,0,0),(5,'JIR','8522c2ccfd6fc5d242ed16d168401fad','avatar.jpg','Juergen Iser','','j.iser@gmx.at',0,'austrian',602,2008,0,0),(6,'KAI','e5f4d97a4961dea1184bbbe847b591f3','avatar.jpg','Roman Kailbach','Kailo','kailo@gmx.at',0,'austrian',334,2008,0,0),(7,'WOB','776ad0ef27acc0602c337dc2736f3a97','300ende.jpg','Mhöb Gnagflow','WoB','wboehm@gmail.com',0,'austrian',762,2008,1,0),(8,'REG','776ad0ef27acc0602c337dc2736f3a97','yoshi1.jpg','Regina Boehm','','rboehm@gmail.com',0,'austrian',0,2008,0,0),(9,'ISA','3c4db9561aa2b8530d5c60014dbfbe86','isa_grid_kl_hp_3.jpg','Ildiko Samu-Puehringer','sam','ildikosamu.puehringer@gmail.com',0,'hungarian',667,2008,0,0),(10,'MRO','cda0fd2918d19e20ac871ed79a8d2bb0','pic_MRO.jpg','Martha Rossa','RoMa','rossama@yahoo.com',0,'austrian',334,2008,1,1),(11,'MPU','f9c17117b5b8dbf8cfa83d8057ee1a0b','mpu_grid_tip_blaukl.jpg','Michael Puehringer','','michael.puehringer@lotterien.at',0,'austrian',621,2008,0,0),(12,'RHA','9ced82c0515df69d4e3311f63d40ffa0','avatar.jpg','Robert Haller','','rr101088@gmail.com',0,'austrian',0,2008,0,0),(13,'FAN','33c2e20d31b3ae8f4564d7517738eb7d','extremeevil.gif','Georg Juren','Schurl','georg.juren@atos.net',0,'austrian',49,2009,0,0),(14,'MBR','f9c17117b5b8dbf8cfa83d8057ee1a0b','avatar.jpg','Markus Brenner','','m.brenn@gmx.net',0,'austrian',0,2009,0,0),(15,'RSC','d67ee0b6a91696158441100ba2e5a9b0','schicht_roman.jpg','Roman Schicht','','rschicht@yahoo.com',0,'austrian',0,2009,0,0),(16,'FAB','f9c17117b5b8dbf8cfa83d8057ee1a0b','avatar.jpg','Alexander Fabozzi','','alexander.fabozzi@gmx.at',0,'austrian',0,2010,0,0),(17,'MAR','776ad0ef27acc0602c337dc2736f3a97','avatar.jpg','Marina Boehm','','mboehm@gmail.com',0,'austrian',0,2010,0,0),(18,'IRS','8918b74d571421bcc47fc59816bf8fc2','foto_ivan.png','Ivan Rodriguez','','irodriguezs@hotmail.com',0,'spanish',15,2010,1,0),(19,'ALE','2ab3343875e56dc0a15cbb6a98570cf2','avatar.jpg','Alexander Doler','','alexander.doler@atos.net',0,'austrian',0,2012,0,0),(20,'STM','f078ea5db3ca0165e914bb82ea971755','avatar.jpg','Manfred Steinacher','','mst4711@gmx.at',0,'austrian',0,2013,0,0),(21,'MCL','02a8925e820f46c6c89d7a85a1285deb','avatar.jpg','Sasa Petrovic','Ayrton','sasa.petrovic@citrix.com',0,'serbian',676,2014,0,0),(22,'HOK','21e316792058f92b4873dff990619a94','avatar.jpg','Hoking','Hoking','samuel2f3@hotmail.com',0,'',833,2015,0,0),(36,'TOM','6b6817ae69fe2b011c7adb139a39d161','15409891.jpg','Thomas Reiter','raidaaa','t.reiter@gmx.at',0,'austrian',667,2017,0,0),(37,'JUF','bfdc65055698c17070dc805473c852f8','avatar.jpg','Juergen Finkes','jufi','juergen.finkes@kapsch.net',0,'austrian',0,2017,0,0); /*!40000 ALTER TABLE `users` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `winners` -- DROP TABLE IF EXISTS `winners`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `winners` ( `w_season` int(4) NOT NULL DEFAULT '0', `w_u_id` int(4) NOT NULL DEFAULT '0', PRIMARY KEY (`w_season`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `winners` -- LOCK TABLES `winners` WRITE; /*!40000 ALTER TABLE `winners` DISABLE KEYS */; INSERT INTO `winners` VALUES (2006,2),(2007,2),(2008,10),(2009,1),(2010,3),(2011,1),(2012,18),(2013,2),(2014,1),(2015,7),(2016,1),(2017,18); /*!40000 ALTER TABLE `winners` ENABLE KEYS */; UNLOCK TABLES; -- -- Current Database: `niki_dev` -- CREATE DATABASE /*!32312 IF NOT EXISTS*/ `niki_dev` /*!40100 DEFAULT CHARACTER SET latin1 */; USE `niki_dev`; -- -- Table structure for table `alldrivers` -- DROP TABLE IF EXISTS `alldrivers`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `alldrivers` ( `a_id` int(4) NOT NULL AUTO_INCREMENT, `a_lname` varchar(20) NOT NULL DEFAULT '', `a_fname` varchar(20) NOT NULL DEFAULT '', PRIMARY KEY (`a_id`) ) ENGINE=MyISAM AUTO_INCREMENT=850 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `alldrivers` -- LOCK TABLES `alldrivers` WRITE; /*!40000 ALTER TABLE `alldrivers` DISABLE KEYS */; INSERT INTO `alldrivers` VALUES (1,'ABATE','Carlo'),(2,'ABECASSIS','George'),(3,'ACHESON','Kenny'),(4,'ADAMS','Philippe'),(5,'ADER','Walt'),(6,'ADOLFF','Kurt'),(7,'AGABASHIAN','Fred'),(8,'AHRENS','Kurt Jr.'),(9,'ALBERS','Christijan'),(10,'ALBORETO','Michele'),(11,'ALESI','Jean'),(12,'ALGUERSUARI','Jaime'),(13,'ALLIOT','Philippe'),(14,'ALLISON','Cliff'),(15,'ALONSO','Fernando'),(16,'AMATI','Giovanna'),(17,'AMICK','George'),(18,'AMICK','Red'),(19,'AMON','Chris'),(20,'ANDERSON','Bob'),(21,'ANDERSSON','Conny'),(22,'ANDRETTI','Mario'),(23,'ANDRETTI','Michael'),(24,'ANDREWS','Keith'),(25,'APICELLA','Marco'),(26,'ARMI','Frank'),(27,'ARNOLD','Chuck'),(28,'ARNOUX','Rene'),(29,'ARUNDELL','Peter'),(30,'ASCARI','Alberto'),(31,'ASHDOWN','Peter'),(32,'ASHLEY','Ian'),(33,'ASHMORE','Gerry'),(34,'ASTON','Bill'),(35,'ATTWOOD','Richard'),(36,'AYULO','Manny'),(37,'BADOER','Luca'),(38,'BAGHETTI','Giancarlo'),(39,'BAILEY','Julian'),(40,'BALDI','Mauro'),(41,'BALL','Bobby'),(42,'BALSA','Marcel'),(43,'BANDINI','Lorenzo'),(44,'BANKS','Henry'),(45,'BARBAZZA','Fabrizio'),(46,'BARBER','John'),(47,'BARBER','Skip'),(48,'BARILLA','Paolo'),(49,'BARRICHELLO','Rubens'),(50,'BARTELS','Michael'),(51,'BARTH','Edgar'),(52,'BASSI','Giorgio'),(53,'BAUER','Erwin'),(54,'BAUMGARTNER','Zsolt'),(55,'BAYOL','Elie'),(56,'BEAUMAN','Don'),(57,'BECHEM','Karl–Guenther'),(58,'BEHRA','Jean'),(59,'BELL','Derek'),(60,'BELLOF','Stefan'),(61,'BELMONDO','Paul'),(62,'BELSO','Tom'),(63,'BELTOISE','Jean-Pierre'),(64,'BERETTA','Olivier'),(65,'BERG','Allen'),(66,'BERGER','Georges'),(67,'BERGER','Gerhard'),(68,'BERNARD','Eric'),(69,'BERNOLDI','Enrique'),(70,'BERTAGGIA','Enrico'),(71,'BETTENHAUSEN','Tony'),(72,'BEUTTLER','Mike'),(73,'BHANUBANDH','Birabongse'),(74,'BIANCHI','Lucien'),(75,'BIANCO','Gino'),(76,'BINDER','Hans'),(77,'BIONDETTI','Clemente'),(78,'BIRGER','Pablo'),(79,'BISCH','Art'),(80,'BLANCHARD','Harry'),(81,'BLEEKEMOLEN','Michael'),(82,'BLIGNAUT','Alex'),(83,'BLOKDYK','Trevor'),(84,'BLUNDELL','Mark'),(85,'BOESEL','Raul'),(86,'BOFFA','Menato'),(87,'BONDURANT','Bob'),(88,'BONETTO','Felice'),(89,'BONNIER','Jo'),(90,'BONOMI','Roberto'),(91,'BORDEU','Juan Manuel'),(92,'BORGUDD','Slim'),(93,'BOTHA','Luki'),(94,'BOULLION','Jean-Christophe'),(95,'BOURDAIS','Sebastien'),(96,'BOUTSEN','Thierry'),(97,'BOYD','Johnny'),(98,'BRABHAM','David'),(99,'BRABHAM','Gary'),(100,'BRABHAM','Jack'),(101,'BRACK','Bill'),(102,'BRAMBILLA','Ernesto'),(103,'BRAMBILLA','Vittorio'),(104,'BRANCA','Toni'),(105,'BRANCATELLI','Gianfranco'),(106,'BRANDON','Eric'),(107,'BRANSON','Don'),(108,'BRIDGER','Tom'),(109,'BRISE','Tony'),(110,'BRISTOW','Chris'),(111,'BROEKER','Peter'),(112,'BROOKS','Tony'),(113,'BROWN','Alan'),(114,'BROWN','Walt'),(115,'BROWN','Warwick'),(116,'BRUDES','Adolf'),(117,'BRUNDLE','Martin'),(118,'BRUNI','Gianmaria'),(119,'BRYAN','Jimmy'),(120,'BUCCI','Clemar'),(121,'BUCKNUM','Ronnie'),(122,'BUEB','Ivor'),(123,'BUEMI','Sebastien'),(124,'BUENO','Luiz'),(125,'BURGESS','Ian'),(126,'BURTI','Luciano'),(127,'BUSSINELLO','Roberto'),(128,'BUTTON','Jenson'),(129,'BYRNE','Tommy'),(130,'CABIANCA','Giulio'),(131,'CADE','Phil'),(132,'CAFFI','Alex'),(133,'CAMPBELL-JONES','John'),(134,'CAMPOS','Adrian'),(135,'CANNON','John'),(136,'CANTONI','Eitel'),(137,'CANTRELL','Bill'),(138,'CAPELLI','Ivan'),(139,'CARINI','Piero'),(140,'CARTER','Duane'),(141,'CASTELLOTTI','Eugenio'),(142,'CECOTTO','Johnny'),(143,'CEVERT','Francois'),(144,'CHABOUD','Eugène'),(145,'CHAMBERLAIN','Jay'),(146,'CHAPMAN','Colin'),(147,'CHARLTON','Dave'),(148,'CHAVES','Pedro Matos'),(149,'CHEESBOURG','Bill'),(150,'CHEEVER','Eddie'),(151,'CHIESA','Andrea'),(152,'CHIMERI','Ettore'),(153,'CHIRON','Louis'),(154,'CHITWOOD','Joie'),(155,'CHRISTIE','Bob'),(156,'CLAES','Johnny'),(157,'CLAPHAM','David'),(158,'CLARK','Jim'),(159,'COGAN','Kevin'),(160,'COLLINS','Peter'),(161,'COLLOMB','Bernard'),(162,'COLOMBO','Alberto'),(163,'COMAS','Erik'),(164,'COMOTTI','Franco'),(165,'CONNOR','George'),(166,'CONSTANTINE','George'),(167,'CORDTS','John'),(168,'COULTHARD','David'),(169,'COURAGE','Piers'),(170,'CRAFT','Chris'),(171,'CRAWFORD','Jim'),(172,'CRAWFORD','Ray'),(173,'CRESPO','Alberto'),(174,'CREUS','Antonio'),(175,'CROCKETT','Larry'),(176,'CROOK','Tony'),(177,'CROSS','Art'),(178,'CROSSLEY','Geoff'),(179,'DA MATTA','Cristiano'),(180,'DA SLIVA RAMOS','Hernando'),(181,'DAIGH','Chuck'),(182,'DALMAS','Yannick'),(183,'DALY','Derek'),(184,'DANNER','Christian'),(185,'DAPONTE','Jorge'),(186,'DAVIDSON','Anthony'),(187,'DAVIES','Jimmy'),(188,'DAVIS','Colin'),(189,'DAYWALT','Jimmy'),(190,'DE ADAMICH','Andrea'),(191,'DE ANGELIS','Elio'),(192,'DE ARAUJO CABRAL','Mario'),(193,'DE CESARIS','Andrea'),(194,'DE CHANGY','Alain'),(195,'DE DRYVER','Bernard'),(196,'DE FILIPPIS','Maria Teresa'),(197,'DE GRAFFENRIED','Emmanuel'),(198,'DE KLERK','Peter'),(199,'DE LA ROSA','Pedro'),(200,'DE PORTAGO','Alfonso'),(201,'DE RIU','Giovanni'),(202,'DE TOMASO','Alejandro'),(203,'DE TORNACO','Charles'),(204,'DE VILLOTA','Emilio'),(205,'DE VOS','Ernie'),(206,'DELETRAZ','Jean-Denis'),(207,'DEPAILLER','Patrick'),(208,'DINIZ','Pedro'),(209,'DINSMORE','Duke'),(210,'DOCHNAL','Frank'),(211,'DOLHEM','Jose'),(212,'DONNELLY','Martin'),(213,'DONOHUE','Mark'),(214,'DOORNBOS','Robert'),(215,'D\'OREY','Fritz'),(216,'DOWNING','Ken'),(217,'DRAKE','Bob'),(218,'DRIVER','Paddy'),(219,'DROGO','Piero'),(220,'DUKE','Geoff'),(221,'DUMFRIES','Johnny'),(222,'DUNCAN','Len'),(223,'DUSIO','Piero'),(224,'EATON','George'),(225,'ECCLESTONE','Bernie'),(226,'EDMUNDS','Don'),(227,'EDWARDS','Guy'),(228,'ELFORD','Vic'),(229,'ELISIAN','Ed'),(230,'EMERY','Paul'),(231,'ENGE','Tomas'),(232,'ENGLAND','Paul'),(233,'ERTL','Harald'),(234,'ESTEFANO','Nasif'),(235,'ETANCELIN','Philippe'),(236,'EVANS','Bob'),(237,'FABI','Corrado'),(238,'FABI','Teo'),(239,'FABRE','Pascal'),(240,'FACETTI','Carlo'),(241,'FAGIOLI','Luigi'),(242,'FAIRMAN','Jack'),(243,'FANGIO','Juan Manuel'),(244,'FARINA','Nino'),(245,'FAULKNER','Walt'),(246,'FERGUSON','William'),(247,'FIRMAN','Ralph'),(248,'FISCHER','Ludwig'),(249,'FISCHER','Rudi'),(250,'FISHER','Mike'),(251,'FISICHELLA','Giancarlo'),(252,'FITCH','John'),(253,'FITTIPALDI','Christian'),(254,'FITTIPALDI','Emerson'),(255,'FITTIPALDI','Wilson'),(256,'FITZAU','Theo'),(257,'FLAHERTY','Pat'),(258,'FLINTERMAN','Jan'),(259,'FLOCKHART','Ron'),(260,'FOHR','Myron'),(261,'FOITEK','Gregor'),(262,'FOLLMER','George'),(263,'FONDER','George'),(264,'FONTANA','Norberto'),(265,'FONTES BAYARDO','Azdrubal'),(266,'FORBERG','Carl'),(267,'FORCE','Gene'),(268,'FORINI','Franco'),(269,'FOTHERINGHAM-PARKER','Philip'),(270,'FOYT','A.J.'),(271,'FRANCIA','Giorgio'),(272,'FREELAND','Don'),(273,'FRENTZEN','Heinz-Harald'),(274,'FRERE','Paul'),(275,'FRIESACHER','Patrick'),(276,'FRY','Joe'),(277,'FUSHIDA','Hiroshi'),(278,'GABBIANI','Beppe'),(279,'GACHOT','Bertrand'),(280,'GAILLARD','Patrick'),(281,'GALICA','Divina'),(282,'GALLI','Nanni'),(283,'GALVEZ','Oscar Alfredo'),(284,'GAMBLE','Fred'),(285,'GANLEY','Howden'),(286,'GARDNER','Frank'),(287,'GARRETT','Billy'),(288,'GARTNER','Jo'),(289,'GAZE','Tony'),(290,'GEKI','NN'),(291,'GENDEBIEN','Olivier'),(292,'GENE','Marc'),(293,'GEORGE','Elmer'),(294,'GERARD','Bob'),(295,'GERINI','Gerino'),(296,'GETHIN','Peter'),(297,'GHINZANI','Piercarlo'),(298,'GIACOMELLI','Bruno'),(299,'GIBSON','Dick'),(300,'GINTHER','Richie'),(301,'GIRAUD-CABANTOUS','Yves'),(302,'GIUNTI','Ignazio'),(303,'GLOCK','Timo'),(304,'GLOECKLER','Helm'),(305,'GODIA','Paco'),(306,'GODIN DE BEAUFORT','Carel'),(307,'GOETHALS','Christian'),(308,'GOLDSMITH','Paul'),(309,'GONZALEZ','Jose Froilan'),(310,'GONZALEZ','Oscar'),(311,'GORDINI','Aldo'),(312,'GOULD','Horace'),(313,'GOUNON','Jean-Marc'),(314,'GREEN','Cecil'),(315,'GREENE','Keith'),(316,'GREGORY','Masten'),(317,'GRIFFITH','Cliff'),(318,'GRIGNARD','Georges'),(319,'GRIM','Bobby'),(320,'GROSJEAN','Romain'),(321,'GROUILLARD','Olivier'),(322,'GUBBY','Brian'),(323,'GUELFI','Andre'),(324,'GUERRA','Miguel Angel'),(325,'GUERRERO','Roberto'),(326,'GUGELMIN','Mauricio'),(327,'GURNEY','Dan'),(328,'HAHNE','Hubert'),(329,'HAILWOOD','Mike'),(330,'HAKKINEN','Mika'),(331,'HALFORD','Bruce'),(332,'HALL','Jim'),(333,'HAMILTON','Duncan'),(334,'HAMILTON','Lewis'),(335,'HAMPSHIRE','David'),(336,'HANKS','Sam'),(337,'HANSGEN','Walt'),(338,'HARRIS','Mike'),(339,'HARRISON','Cuth'),(340,'HART','Brian'),(341,'HARTLEY','Gene'),(342,'HASEMI','Masahiro'),(343,'HATTORI','Naoki'),(344,'HAWKINS','Paul'),(345,'HAWTHORN','Mike'),(346,'HAYJE','Boy'),(347,'HEEKS','Willi'),(348,'HEIDFELD','Nick'),(349,'HELFRICH','Theo'),(350,'HELLINGS','Mack'),(351,'HENTON','Brian'),(352,'HERBERT','Johnny'),(353,'HERMAN','Al'),(354,'HERRMANN','Hans'),(355,'HESNAULT','Francois'),(356,'HEYER','Hans'),(357,'HILL','Damon'),(358,'HILL','Graham'),(359,'HILL','Phil'),(360,'HIRT','Peter'),(361,'HOBBS','David'),(362,'HOCKING','Gary'),(363,'HOFFMANN','Ingo'),(364,'HOLLAND','Bill'),(365,'HOLMES','Jackie'),(366,'HOMEIER','Bill'),(367,'HOSHINO','Kazuyoshi'),(368,'HOYT','Jerry'),(369,'HULME','Denny'),(370,'HUNT','James'),(371,'HURTUBISE','Jim'),(372,'HUTCHISON','Gus'),(373,'ICKX','Jacky'),(374,'IDE','Yuji'),(375,'IGLESIAS','Jesus'),(376,'INOUE','Taki'),(377,'IRELAND','Innes'),(378,'IRVINE','Eddie'),(379,'IRWIN','Chris'),(380,'JABOUILLE','Jean-Pierre'),(381,'JACKSON','Jimmy'),(382,'JAMES','Joe'),(383,'JAMES','John'),(384,'JARIER','Jean-Pierre'),(385,'JEAN','Max'),(386,'JOHANSSON','Stefan'),(387,'JOHNSON','Eddie'),(388,'JOHNSON','Leslie'),(389,'JOHNSTONE','Bruce'),(390,'JONES','Alan'),(391,'JONES','Tom'),(392,'JOVER','Juan'),(393,'KARCH','Oswald'),(394,'KARTHIKEYAN','Narain'),(395,'KATAYAMA','Ukyo'),(396,'KAVANAGH','Ken'),(397,'KEEGAN','Rupert'),(398,'KEIZAN','Eddie'),(399,'KELLER','Al'),(400,'KELLY','Joe'),(401,'KENNEDY','Dave'),(402,'KESSEL','Loris'),(403,'KESSLER','Bruce'),(404,'KIESA','Nicolas'),(405,'KINNUNEN','Leo'),(406,'KLADIS','Danny'),(407,'KLENK','Hans'),(408,'KLIEN','Christian'),(409,'KLING','Karl'),(410,'KLODWIG','Ernst'),(411,'KOBAYASHI','Kamui'),(412,'KOINIGG','Helmuth'),(413,'KOVALAINEN','Heikki'),(414,'KOZAROWITZKY','Mikko'),(415,'KRAKAU','Willi'),(416,'KRAUSE','Rudolf'),(417,'KUBICA','Robert'),(418,'KUHNKE','Kurt'),(419,'KUWASHIMA','Masami'),(420,'LA CAZE','Robert'),(421,'LAFFITE','Jacques'),(422,'LAGORCE','Franck'),(423,'LAMMERS','Jan'),(424,'LAMY','Pedro'),(425,'LANDI','Chico'),(426,'LANG','Hermann'),(427,'LANGES','Claudio'),(428,'LARINI','Nicola'),(429,'LARRAURI','Oscar'),(430,'LARROUSSE','Gerard'),(431,'LARSON','Jud'),(432,'LAUDA','Niki'),(433,'LAURENT','Roger'),(434,'LAVAGGI','Giovanni'),(435,'LAWRENCE','Chris'),(436,'LECLERE','Michel'),(437,'LEDERLE','Neville'),(438,'LEES','Geoff'),(439,'LEGAT','Arthur'),(440,'LEHTO','JJ'),(441,'LEONI','Lamberto'),(442,'LESTON','Les'),(443,'LEVEGH','Pierre'),(444,'LEVRETT','Bayliss'),(445,'LEWIS','Jackie'),(446,'LEWIS-EVANS','Stuart'),(447,'LIGIER','Guy'),(448,'LINDEN','Andy'),(449,'LIPPI','Roberto'),(450,'LIUZZI','Vitantonio'),(451,'LOMBARDI','Lella'),(452,'LONDONO','Ricardo'),(453,'LOOF','Ernst'),(454,'LOUVEAU','Henri'),(455,'LOVE','John'),(456,'LOVELY','Pete'),(457,'LOYER','Roger'),(458,'LUCAS','Jean'),(459,'LUCIENBONNET','Jean'),(460,'LUNGER','Brett'),(461,'MACDOWEL','Mike'),(462,'MACKAY-FRASER','Herbert'),(463,'MACKEY','Bill'),(464,'MACKLIN','Lance'),(465,'MAGEE','Damien'),(466,'MAGGS','Tony'),(467,'MAGILL','Mike'),(468,'MAGLIOLI','Umberto'),(469,'MAGNUSSEN','Jan'),(470,'MAIRESSE','Guy'),(471,'MAIRESSE','Willy'),(472,'MANSELL','Nigel'),(473,'MANTOVANI','Sergio'),(474,'MANTZ','Johnny'),(475,'MANZON','Robert'),(476,'MARIMON','Onofre'),(477,'MARKO','Helmut'),(478,'MARQUES','Tarso'),(479,'MARR','Leslie'),(480,'MARSH','Tony'),(481,'MARTIN','Eugene'),(482,'MARTINI','Pierluigi'),(483,'MASS','Jochen'),(484,'MASSA','Felipe'),(485,'MAY','Michael'),(486,'MAYER','Timmy'),(487,'MAZET','Francois'),(488,'MAZZACANE','Gaston'),(489,'MCALPINE','Kenneth'),(490,'MCCARTHY','Perry'),(491,'MCCOY','Ernie'),(492,'MCDOWELL','Johnny'),(493,'MCGRATH','Jack'),(494,'MCGUIRE','Brian'),(495,'MCLAREN','Bruce'),(496,'MCNISH','Allan'),(497,'MCRAE','Graham'),(498,'MCWITHEY','Jim'),(499,'MENDITEGUY','Carlos'),(500,'MERKEL','Harry'),(501,'MERZARIO','Arturo'),(502,'MIERES','Roberto'),(503,'MIGAULT','Francois'),(504,'MILES','John'),(505,'MILES','Ken'),(506,'MILHOUX','Andre'),(507,'MILLER','Chet'),(508,'MITTER','Gerhard'),(509,'MODENA','Stefano'),(510,'MONARCH','Thomas'),(511,'MONTAGNY','Franck'),(512,'MONTEIRO','Tiago'),(513,'MONTERMINI','Andrea'),(514,'MONTEVERDI','Peter'),(515,'MONTGOMERIE-CHARRING','Robin'),(516,'MONTOYA','Juan Pablo'),(517,'MORBIDELLI','Gianni'),(518,'MORENO','Roberto'),(519,'MORGAN','Dave'),(520,'MOSER','Silvio'),(521,'MOSS','Bill'),(522,'MOSS','Stirling'),(523,'MUNARON','Gino'),(524,'MURRAY','David'),(525,'MUSSO','Luigi'),(526,'NAKAJIMA','Kazuki'),(527,'NAKAJIMA','Satoru'),(528,'NAKANO','Shinji'),(529,'NALON','Duke'),(530,'NANNINI','Alessandro'),(531,'NASPETTI','Emanuele'),(532,'NATILI','Massimo'),(533,'NAYLOR','Brian'),(534,'NAZARUK','Mike'),(535,'NEEDELL','Tiff'),(536,'NELLEMAN','Jac'),(537,'NEVE','Patrick'),(538,'NICHOLSON','John'),(539,'NIDAY','Cal'),(540,'NIEDERMAYR','Helmut'),(541,'NIEMANN','Brausch'),(542,'NILSSON','Gunnar'),(543,'NODA','Hideki'),(544,'NUCKEY','Rodney'),(545,'O\'BRIEN','Robert'),(546,'O\'CONNOR','Pat'),(547,'OLIVER','Jackie'),(548,'ONGAIS','Danny'),(549,'OPPITZHAUSER','Karl'),(550,'OWEN','Arthur'),(551,'PACE','Carlos'),(552,'PAGANI','Nello'),(553,'PALETTI','Riccardo'),(554,'PALM','Torsten'),(555,'PALMER','Jonathan'),(556,'PANIS','Olivier'),(557,'PANTANO','Giorgio'),(558,'PAPIS','Massimiliano'),(559,'PARKES','Mike'),(560,'PARNELL','Reg'),(561,'PARNELL','Tim'),(562,'PARSONS','Johnnie'),(563,'PATRESE','Riccardo'),(564,'PEASE','Al'),(565,'PENSKE','Roger'),(566,'PERDISA','Cesare'),(567,'PEREZ-SALA','Luis'),(568,'PERKINS','Larry'),(569,'PESCAROLO','Henri'),(570,'PESENTI-ROSSI','Alessandro'),(571,'PETERS','Josef'),(572,'PETERSON','Ronnie'),(573,'PIAN','Alfredo'),(574,'PICARD','Francois'),(575,'PIETERSE','Ernie'),(576,'PIETSCH','Paul'),(577,'PILETTE','Andre'),(578,'PILETTE','Teddy'),(579,'PIOTTI','Luigi'),(580,'PIPER','David'),(581,'PIQUET','Nelson'),(582,'PIQUET','Nelson Jr.'),(583,'PIROCCHI','Renato'),(584,'PIRONI','Didier'),(585,'PIRRO','Emanuele'),(586,'PIZZONIA','Antonio'),(587,'POLLET','Jacques'),(588,'PON','Ben'),(589,'POORE','Dennis'),(590,'POSEY','Sam'),(591,'POZZI','Charles'),(592,'PRETORIUS','Jackie'),(593,'PRINOTH','Ernesto'),(594,'PROPHET','David'),(595,'PROST','Alain'),(596,'PRYCE','Tom'),(597,'PURLEY','David'),(598,'PUZEY','Clive'),(599,'QUESTER','Dieter'),(600,'RABY','Ian'),(601,'RAHAL','Bobby'),(602,'RAIKKONEN','Kimi'),(603,'RAPHANEL','Pierre-Henri'),(604,'RATHMANN','Dick'),(605,'RATHMANN','Jim'),(606,'RATZENBERGER','Roland'),(607,'REBAQUE','Hector'),(608,'REDMAN','Brian'),(609,'REECE','Jimmy'),(610,'REED','Ray'),(611,'REES','Alan'),(612,'REGAZZONI','Clay'),(613,'REUTEMANN','Carlos'),(614,'REVENTLOW','Lance'),(615,'REVSON','Peter'),(616,'RHODES','John'),(617,'RIBEIRO','Alex'),(618,'RICHARDSON','Ken'),(619,'RIESS','Fritz'),(620,'RIGSBY','Jim'),(621,'RINDT','Jochen'),(622,'RISELEY-PRICHARD','John'),(623,'ROBARTS','Richard'),(624,'RODRIGUEZ','Pedro'),(625,'RODRIGUEZ','Ricardo'),(626,'RODRIGUEZ LARRETA','Alberto'),(627,'ROL','Franco'),(628,'ROLLINSON','Alan'),(629,'ROLT','Tony'),(630,'ROOS','Bertil'),(631,'ROSBERG','Keke'),(632,'ROSBERG','Nico'),(633,'ROSE','Mauri'),(634,'ROSIER','Louis'),(635,'ROSSET','Ricardo'),(636,'ROTHENGATTER','Huub'),(637,'RUBY','Lloyd'),(638,'RUDAZ','Jean-Claude'),(639,'RUSSO','Eddie'),(640,'RUSSO','Paul'),(641,'RUTTMAN','Troy'),(642,'RYAN','Peter'),(643,'SACHS','Eddie'),(644,'SAID','Bob'),(645,'SALAZAR','Eliseo'),(646,'SALO','Mika'),(647,'SALVADORI','Roy'),(648,'SANESI','Consalvo'),(649,'SARRAZIN','Stephane'),(650,'SATO','Takuma'),(651,'SCARBOROUGH','Carl'),(652,'SCARFIOTTI','Ludovico'),(653,'SCARLATTI','Giorgio'),(654,'SCHECKTER','Ian'),(655,'SCHECKTER','Jody'),(656,'SCHELL','Harry'),(657,'SCHENKEN','Tim'),(658,'SCHERRER','Albert'),(659,'SCHIATTARELLA','Domenico'),(660,'SCHILLER','Heinz'),(661,'SCHINDLER','Bill'),(662,'SCHLESSER','Jean-Louis'),(663,'SCHLESSER','Jo'),(664,'SCHNEIDER','Bernd'),(665,'SCHOELLER','Rudolf'),(666,'SCHROEDER','Rob'),(667,'SCHUMACHER','Michael'),(668,'SCHUMACHER','Ralf'),(669,'SCHUPPAN','Vern'),(670,'SCHWELM CRUZ','Adolfo'),(671,'SCOTT','Bob'),(672,'SCOTT BROWN','Archie'),(673,'SCOTTI','Piero'),(674,'SEIDEL','Wolfgang'),(675,'SEIFFERT','Guenther'),(676,'SENNA','Ayrton'),(677,'SERAFINI','Dorino'),(678,'SERRA','Chico'),(679,'SERRURIER','Doug'),(680,'SERVOZ-GAVIN','Johnny'),(681,'SETTEMBER','Tony'),(682,'SHARP','Hap'),(683,'SHAWE-TAYLOR','Brian'),(684,'SHELBY','Carroll'),(685,'SHELLY','Tony'),(686,'SIFFERT','Jo'),(687,'SIMON','Andre'),(688,'SLOTEMAKER','Rob'),(689,'SOLANA','Moises'),(690,'SOLER-ROIG','Alex'),(691,'SOMMER','Raymond'),(692,'SOSPIRI','Vincenzo'),(693,'SOUTH','Stephen'),(694,'SPARKEN','Mike'),(695,'SPEED','Scott'),(696,'SPENCE','Mike'),(697,'STACEY','Alan'),(698,'STARRABBA','Gaetano'),(699,'STEVENSON','Chuck'),(700,'STEWART','Ian'),(701,'STEWART','Jackie'),(702,'STEWART','Jimmy'),(703,'STOHR','Siegfried'),(704,'STOMMELEN','Rolf'),(705,'STREIFF','Philippe'),(706,'STUCK','Hans'),(707,'STUCK','Hans Joachim'),(708,'STUPPACHER','Otto'),(709,'SULLIVAN','Danny'),(710,'SURER','Marc'),(711,'SURTEES','John'),(712,'SUTCLIFFE','Andy'),(713,'SUTIL','Adrian'),(714,'SUTTON','Len'),(715,'SUZUKI','Aguri'),(716,'SUZUKI','Toshio'),(717,'SWATERS','Jacques'),(718,'SWEIKERT','Bob'),(719,'TAKAGI','Toranosuke'),(720,'TAKAHARA','Noritake'),(721,'TAKAHASHI','Kunimitsu'),(722,'TAMBAY','Patrick'),(723,'TARAMAZZO','Luigi'),(724,'TARQUINI','Gabriele'),(725,'TARUFFI','Piero'),(726,'TAYLOR','Dennis'),(727,'TAYLOR','Henry'),(728,'TAYLOR','John'),(729,'TAYLOR','Mike'),(730,'TAYLOR','Trevor'),(731,'TEAGUE','Marshall'),(732,'TEMPLEMAN','Shorty'),(733,'TERRA','Max de'),(734,'TESTUT','Andre'),(735,'THACKWELL','Mike'),(736,'THIELE','Alfonso'),(737,'THOMPSON','Eric'),(738,'THOMSON','Johnny'),(739,'THORNE','Leslie'),(740,'TINGELSTAD','Bud'),(741,'TINGLE','Sam'),(742,'TITTERINGTON','Desmond'),(743,'TOLAN','Johnnie'),(744,'TRIMMER','Tony'),(745,'TRINTIGNANT','Maurice'),(746,'TRULLI','Jarno'),(747,'TUERO','Esteban'),(748,'TUNMER','Guy'),(749,'TURNER','Jack'),(750,'ULMEN','Toni'),(751,'UNSER','Bobby'),(752,'UNSER','Jerry'),(753,'URIA','Alberto'),(754,'VACCARELLA','Nino'),(755,'VAN DE POELE','Eric'),(756,'VAN DER LOF','Dries'),(757,'VAN DER VYVER','Syd'),(758,'VAN LENNEP','Gijs'),(759,'VAN ROOYEN','Basil'),(760,'VEITH','Bob'),(761,'VERSTAPPEN','Jos'),(762,'VETTEL','Sebastian'),(763,'VILLENEUVE','Gilles'),(764,'VILLENEUVE','Jacques'),(765,'VILLENEUVE SR.','Jacques'),(766,'VILLORESI','Luigi'),(767,'VOLONTERIO','Ottorino'),(768,'VON OPEL','Rikky'),(769,'VON TRIPS','Wolfgang'),(770,'VONLANTHEN','Jo'),(771,'VUKOVICH','Bill'),(772,'WACKER','Fred'),(773,'WALKER','David'),(774,'WALKER','Peter'),(775,'WALLARD','Lee'),(776,'WALTER','Heini'),(777,'WARD','Rodger'),(778,'WARWICK','Derek'),(779,'WATSON','John'),(780,'WEBB','Spider'),(781,'WEBBER','Mark'),(782,'WEIDLER','Volker'),(783,'WEILER','Wayne'),(784,'WENDLINGER','Karl'),(785,'WESTBURY','Peter'),(786,'WEYANT','Chuck'),(787,'WHARTON','Ken'),(788,'WHITEAWAY','Ted'),(789,'WHITEHEAD','Graham'),(790,'WHITEHEAD','Peter'),(791,'WHITEHOUSE','Bill'),(792,'WIDDOWS','Robin'),(793,'WIETZES','Eppie'),(794,'WILDS','Mike'),(795,'WILLIAMS','Jonathan'),(796,'WILLIAMSON','Roger'),(797,'WILSON','Dempsey'),(798,'WILSON','Desire'),(799,'WILSON','Justin'),(800,'WILSON','Vic'),(801,'WINKELHOCK','Joachim'),(802,'WINKELHOCK','Manfred'),(803,'WINKELHOCK','Markus'),(804,'WISELL','Reine'),(805,'WUNDERINK','Roelof'),(806,'WURZ','Alexander'),(807,'YAMAMOTO','Sakon'),(808,'YOONG','Alex'),(809,'ZANARDI','Alex'),(810,'ZAPICO','Emilio'),(811,'ZONTA','Ricardo'),(812,'ZORZI','Renzo'),(813,'ZUNINO','Ricardo'),(814,'CHANDHOK','Karun'),(815,'DI GRASSI','Lucas'),(816,'HUELKENBERG','Nico'),(817,'PETROV','Vitaly'),(818,'SENNA','Bruno'),(819,'D\'AMBROSIO','Jerome'),(820,'DI RESTA','Paul'),(821,'MALDONADO','Pastor'),(822,'PEREZ','Sergio'),(823,'PIC','Charles'),(824,'RICCIARDO','Daniel'),(825,'VERGNE','Jean-Eric'),(826,'BIANCHI','Jules'),(827,'BOTTAS','Valtteri'),(828,'CHILTON','Max'),(829,'GUTIERREZ','Esteban'),(830,'VAN DER GARDE','Giedo'),(831,'ERICSSON','Marcus'),(832,'KVYAT','Daniil'),(833,'LOTTERER','Andre'),(834,'MAGNUSSEN','Kevin'),(835,'STEVENS','Will'),(836,'MERHI','Roberto'),(837,'NASR','Felipe'),(838,'ROSSI','Alexander'),(839,'SAINZ','Carlos Jr.'),(840,'VERSTAPPEN','Max'),(841,'HARYANTO','Rio'),(842,'OCON','Esteban'),(843,'PALMER','Jolyon'),(844,'VANDOORNE','Stoffel'),(845,'WEHRLEIN','Pascal'),(846,'GASLY','Pierre'),(847,'GIOVINAZZI','Antonio'),(848,'HARTLEY','Brendon'),(849,'STROLL','Lance'); /*!40000 ALTER TABLE `alldrivers` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `drivers` -- DROP TABLE IF EXISTS `drivers`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `drivers` ( `d_id` int(4) NOT NULL AUTO_INCREMENT, `d_lname` varchar(20) NOT NULL DEFAULT '', `d_fname` varchar(20) NOT NULL DEFAULT '', `d_currseason` int(1) NOT NULL DEFAULT '0', `d_miod` int(3) NOT NULL DEFAULT '0', `d_fa_id` int(3) NOT NULL DEFAULT '0', PRIMARY KEY (`d_id`) ) ENGINE=MyISAM AUTO_INCREMENT=52 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `drivers` -- LOCK TABLES `drivers` WRITE; /*!40000 ALTER TABLE `drivers` DISABLE KEYS */; INSERT INTO `drivers` VALUES (1,'HAMILTON','Lewis',1,30,11),(2,'BOTTAS','Valtteri',1,24,11),(3,'RICCIARDO','Daniel',1,29,28),(4,'VERSTAPPEN','Max',1,27,28),(5,'VETTEL','Sebastian',1,28,1),(6,'RAIKKONEN','Kimi',1,26,1),(7,'PEREZ','Sergio',1,25,14),(8,'OCON','Esteban',1,12,14),(9,'STROLL','Lance',1,11,23),(10,'MASSA','Felipe',1,21,23),(11,'ALONSO','Fernando',1,22,25),(12,'VANDOORNE','Stoffel',1,14,25),(13,'SAINZ','Carlos Jr.',1,20,4),(14,'KVYAT','Daniil',1,18,22),(15,'GROSJEAN','Romain',1,19,29),(16,'MAGNUSSEN','Kevin',1,17,29),(17,'HUELKENBERG','Nico',1,23,4),(18,'PALMER','Jolyon',0,16,4),(19,'ERICSSON','Marcus',1,13,12),(20,'WEHRLEIN','Pascal',1,15,12),(21,'GIOVINAZZI','Antonio',1,0,12),(22,'BUTTON','Jenson',1,0,25),(23,'DI RESTA','Paul',1,0,23),(24,'GASLY','Pierre',1,0,22),(25,'HARTLEY','Brendon',1,0,22); /*!40000 ALTER TABLE `drivers` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `events` -- DROP TABLE IF EXISTS `events`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `events` ( `e_id` int(2) NOT NULL AUTO_INCREMENT, `e_type` varchar(20) NOT NULL DEFAULT '', PRIMARY KEY (`e_id`) ) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `events` -- LOCK TABLES `events` WRITE; /*!40000 ALTER TABLE `events` DISABLE KEYS */; INSERT INTO `events` VALUES (1,'QUALIFYING'),(2,'RACE'); /*!40000 ALTER TABLE `events` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `fflassets` -- DROP TABLE IF EXISTS `fflassets`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `fflassets` ( `fa_id` int(4) NOT NULL AUTO_INCREMENT, `fa_currseason` int(1) NOT NULL DEFAULT '0', `fa_chassis` varchar(30) NOT NULL DEFAULT '', `fa_mioc` int(3) NOT NULL DEFAULT '0', `fa_engine` varchar(30) NOT NULL DEFAULT '', `fa_mioe` int(3) NOT NULL DEFAULT '0', PRIMARY KEY (`fa_id`) ) ENGINE=MyISAM AUTO_INCREMENT=32 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `fflassets` -- LOCK TABLES `fflassets` WRITE; /*!40000 ALTER TABLE `fflassets` DISABLE KEYS */; INSERT INTO `fflassets` VALUES (1,1,'Ferrari',28,'Ferrari (Ferrari)',27),(2,0,'McLaren',0,'Mercedes (McLaren)',0),(3,0,'BMW Sauber',0,'BMW (BMW Sauber)',0),(4,1,'Renault',22,'Renault (Renault)',23),(5,0,'Toyota',0,'Toyota (Toyota)',0),(6,0,'Toro Rosso',0,'Ferrari (Toro Rosso)',0),(7,0,'Red Bull',0,'Renault (Red Bull)',0),(8,0,'Williams',0,'Toyota (Williams)',0),(9,0,'Brawn',0,'Mercedes (Brawn)',0),(10,0,'Force India',0,'Ferrari (Force India)',0),(11,1,'Mercedes GP',30,'Mercedes (Mercedes GP)',30),(12,1,'Sauber',21,'Ferrari (Sauber)',25),(13,0,'Williams',0,'Cosworth (Williams)',0),(14,1,'Force India',27,'Mercedes (Force India)',29),(15,0,'Lotus',0,'Cosworth (Lotus)',0),(16,0,'HRT',0,'Cosworth (HRT)',0),(17,0,'Virgin',0,'Cosworth (Virgin)',0),(18,0,'Lotus',0,'Renault (Lotus)',0),(19,0,'Williams',0,'Renault (Williams)',0),(20,0,'Caterham',0,'Renault (Caterham)',0),(21,0,'Marussia',0,'Cosworth (Marussia)',0),(22,1,'Toro Rosso',24,'Renault (Toro Rosso)',22),(23,1,'Williams',26,'Mercedes (Williams)',28),(24,0,'Marussia',0,'Ferrari (Marussia)',0),(25,1,'McLaren',25,'Honda (McLaren)',21),(26,0,'Lotus',0,'Mercedes (Lotus)',0),(27,0,'Manor',0,'Ferrari (Manor)',0),(28,1,'Red Bull',29,'TAG Heuer (Red Bull)',24),(29,1,'Haas',23,'Ferrari (Haas)',26); /*!40000 ALTER TABLE `fflassets` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `fflpoints` -- DROP TABLE IF EXISTS `fflpoints`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `fflpoints` ( `fp_u_id` int(4) NOT NULL DEFAULT '0', `fp_g_id` int(4) NOT NULL DEFAULT '0', `fp_points` decimal(4,1) NOT NULL DEFAULT '0.0' ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `fflpoints` -- LOCK TABLES `fflpoints` WRITE; /*!40000 ALTER TABLE `fflpoints` DISABLE KEYS */; INSERT INTO `fflpoints` VALUES (1,1,'67.0'),(36,1,'89.0'),(12,1,'59.0'),(21,1,'66.0'),(10,1,'58.0'),(18,1,'74.0'),(1,2,'67.0'),(36,2,'64.0'),(12,2,'69.0'),(21,2,'66.0'),(10,2,'51.0'),(18,2,'67.0'),(1,3,'67.0'),(36,3,'89.0'),(12,3,'59.0'),(21,3,'66.0'),(10,3,'58.0'),(18,3,'70.0'),(1,4,'80.0'),(36,4,'91.0'),(12,4,'78.0'),(21,4,'74.0'),(10,4,'55.0'),(18,4,'71.0'),(1,5,'60.0'),(36,5,'36.0'),(12,5,'50.0'),(21,5,'50.0'),(10,5,'43.0'),(18,5,'49.0'),(1,6,'36.0'),(36,6,'98.0'),(12,6,'55.0'),(21,6,'36.0'),(10,6,'43.0'),(18,6,'69.0'),(1,7,'94.0'),(36,7,'56.0'),(12,7,'84.0'),(21,7,'88.0'),(10,7,'57.0'),(18,7,'61.0'),(1,8,'64.0'),(36,8,'57.0'),(12,8,'79.0'),(21,8,'71.0'),(10,8,'57.0'),(18,8,'44.0'),(1,9,'78.0'),(36,9,'82.0'),(12,9,'81.0'),(21,9,'75.0'),(10,9,'56.0'),(18,9,'65.0'),(1,10,'90.0'),(36,10,'60.0'),(12,10,'87.0'),(21,10,'86.0'),(10,10,'49.0'),(18,10,'64.0'),(1,11,'57.0'),(36,11,'101.0'),(12,11,'54.0'),(21,11,'55.0'),(10,11,'61.0'),(18,11,'76.0'),(1,12,'72.0'),(36,12,'70.0'),(12,12,'62.0'),(21,12,'70.0'),(10,12,'53.0'),(18,12,'66.0'),(1,13,'94.0'),(36,13,'74.0'),(12,13,'82.0'),(21,13,'92.0'),(10,13,'64.0'),(18,13,'68.0'),(1,14,'87.0'),(36,14,'19.0'),(12,14,'74.0'),(21,14,'90.0'),(10,14,'50.0'),(18,14,'52.0'),(1,15,'63.0'),(36,15,'38.0'),(12,15,'79.0'),(21,15,'66.0'),(10,15,'50.0'),(18,15,'40.0'),(1,16,'82.0'),(36,16,'32.0'),(12,16,'90.0'),(21,16,'74.0'),(10,16,'37.0'),(18,16,'47.0'),(21,17,'70.0'),(12,17,'65.0'),(36,17,'76.0'),(1,17,'78.0'),(18,17,'74.0'),(10,17,'53.0'),(1,18,'50.0'),(36,18,'80.0'),(12,18,'73.0'),(21,18,'48.0'),(10,18,'41.0'),(18,18,'47.0'),(1,19,'60.0'),(36,19,'98.0'),(12,19,'66.0'),(21,19,'60.0'),(10,19,'59.0'),(18,19,'70.0'),(1,20,'90.0'),(36,20,'79.0'),(12,20,'82.0'),(21,20,'86.0'),(10,20,'60.0'),(18,20,'70.0'),(1,20,'90.0'),(36,20,'79.0'),(12,20,'82.0'),(21,20,'86.0'),(10,20,'60.0'),(18,20,'70.0'),(1,20,'90.0'),(36,20,'79.0'),(12,20,'82.0'),(21,20,'86.0'),(10,20,'60.0'),(18,20,'70.0'),(1,20,'90.0'),(36,20,'79.0'),(12,20,'82.0'),(21,20,'86.0'),(10,20,'60.0'),(18,20,'70.0'); /*!40000 ALTER TABLE `fflpoints` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `fflresults` -- DROP TABLE IF EXISTS `fflresults`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `fflresults` ( `fr_season` int(4) NOT NULL DEFAULT '0', `fr_u_id` int(4) NOT NULL DEFAULT '0', `fr_ft_a_id_d1` int(4) NOT NULL DEFAULT '0', `fr_ft_a_id_d2` int(4) NOT NULL DEFAULT '0', `fr_fa_id_chassis` int(4) NOT NULL DEFAULT '0', `fr_fa_id_engine` int(4) NOT NULL DEFAULT '0', `fr_totalpoints` decimal(5,1) DEFAULT '0.0', PRIMARY KEY (`fr_season`,`fr_u_id`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `fflresults` -- LOCK TABLES `fflresults` WRITE; /*!40000 ALTER TABLE `fflresults` DISABLE KEYS */; INSERT INTO `fflresults` VALUES (2009,0,128,762,9,9,'523.0'),(2009,1,746,762,8,7,'304.5'),(2009,2,15,251,9,1,'276.0'),(2009,3,49,303,9,1,'343.0'),(2009,6,484,128,9,6,'297.0'),(2009,9,602,128,5,7,'356.0'),(2009,10,334,128,8,9,'350.5'),(2009,11,746,128,7,1,'351.0'),(2009,12,762,128,9,1,'421.0'),(2010,0,15,713,7,7,'1295.0'),(2010,1,334,411,11,7,'984.0'),(2010,4,484,762,17,7,'898.0'),(2010,6,484,713,7,6,'702.0'),(2010,9,816,15,11,2,'942.0'),(2010,10,417,303,2,7,'1088.0'),(2010,11,818,15,1,1,'1044.0'),(2010,12,15,816,11,7,'986.0'),(2010,13,49,818,1,6,'456.0'),(2011,6,713,348,2,7,'1223.0'),(2011,1,632,822,1,7,'1128.0'),(2011,12,667,820,7,1,'1128.0'),(2011,10,484,820,7,2,'1292.0'),(2011,0,128,820,7,7,'1597.0'),(2012,1,602,816,2,7,'1108.0'),(2012,12,15,320,2,7,'1212.0'),(2012,6,411,816,7,1,'983.0'),(2012,9,667,825,7,2,'903.0'),(2012,10,762,825,2,7,'1135.0'),(2012,2,762,394,18,7,'1044.0'),(2012,7,762,818,18,18,'918.0'),(2012,0,15,320,7,7,'1294.0'),(2013,1,762,828,1,7,'1347.0'),(2013,20,602,829,1,7,'1139.0'),(2013,12,602,829,1,7,'1139.0'),(2013,10,762,830,2,7,'1115.0'),(2013,18,15,826,19,1,'601.0'),(2013,0,15,828,7,7,'1434.0'),(2014,1,762,834,1,7,'843.0'),(2014,20,762,834,11,7,'1328.0'),(2014,12,602,832,11,7,'1169.0'),(2014,10,334,821,2,7,'972.0'),(2014,9,632,834,11,1,'1289.0'),(2014,0,824,834,11,11,'1695.0'),(2015,1,832,840,11,11,'1549.0'),(2015,20,602,839,11,11,'1574.0'),(2015,21,831,602,11,25,'889.0'),(2015,9,484,839,11,1,'1274.0'),(2015,10,762,840,11,7,'1216.0'),(2015,0,602,839,11,11,'1574.0'),(2016,1,840,843,11,11,'1735.0'),(2016,12,762,834,11,28,'1452.0'),(2016,21,834,15,11,11,'1591.0'),(2016,10,334,845,1,4,'787.0'),(2016,9,824,841,11,1,'1419.0'),(2016,18,15,839,11,1,'1263.0'),(2016,20,840,843,11,11,'1735.0'),(2016,0,840,843,11,11,'1735.0'),(2017,1,844,842,11,11,'1706.0'),(2017,36,827,849,1,1,'1626.0'),(2017,12,827,842,11,28,'1674.0'),(2017,21,844,849,11,11,'1647.0'),(2017,10,762,849,11,25,'1235.0'),(2017,18,839,831,11,1,'1454.0'),(2017,0,842,849,11,11,'1463.0'); /*!40000 ALTER TABLE `fflresults` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `fflteams` -- DROP TABLE IF EXISTS `fflteams`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `fflteams` ( `ft_u_id` int(4) NOT NULL DEFAULT '0', `ft_d_id_d1` int(4) NOT NULL DEFAULT '0', `ft_d_id_d2` int(4) NOT NULL DEFAULT '0', `ft_fa_id_chassis` int(4) NOT NULL DEFAULT '0', `ft_fa_id_engine` int(4) NOT NULL DEFAULT '0', PRIMARY KEY (`ft_u_id`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `fflteams` -- LOCK TABLES `fflteams` WRITE; /*!40000 ALTER TABLE `fflteams` DISABLE KEYS */; INSERT INTO `fflteams` VALUES (1,12,8,11,11),(36,2,9,1,1),(12,2,8,11,28),(21,12,9,11,11),(10,5,9,11,25),(18,13,19,11,1); /*!40000 ALTER TABLE `fflteams` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `gps` -- DROP TABLE IF EXISTS `gps`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `gps` ( `g_id` int(4) NOT NULL AUTO_INCREMENT, `g_name` varchar(40) NOT NULL DEFAULT '', `g_datetime_q` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `g_datetime_r` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `g_flag` varchar(20) NOT NULL DEFAULT '', `g_circuit` varchar(40) NOT NULL DEFAULT '', PRIMARY KEY (`g_id`) ) ENGINE=MyISAM AUTO_INCREMENT=22 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `gps` -- LOCK TABLES `gps` WRITE; /*!40000 ALTER TABLE `gps` DISABLE KEYS */; INSERT INTO `gps` VALUES (1,'AUSTRALIA (Melbourne)','2017-03-25 07:00:00','2017-03-26 07:00:00','flag_AUSTRALIA.gif','circuit_AUSTRALIA_new.jpg'),(2,'CHINA (Shanghai)','2017-04-08 09:00:00','2017-04-09 08:00:00','flag_CHINA.gif','circuit_CHINA_new.jpg'),(3,'BAHRAIN (Sakhir)','2017-04-15 17:00:00','2017-04-16 17:00:00','flag_BAHRAIN.gif','circuit_BAHRAIN_new.jpg'),(4,'RUSSIA (Sochi)','2017-04-29 14:00:00','2017-04-30 14:00:00','flag_RUSSIA.gif','circuit_RUSSIA_new.jpg'),(5,'SPAIN (Barcelona)','2017-05-13 14:00:00','2017-05-14 14:00:00','flag_SPAIN.gif','circuit_SPAIN_new.jpg'),(6,'MONACO (Monte Carlo)','2017-05-27 14:00:00','2017-05-28 14:00:00','flag_MONACO.gif','circuit_MONACO_new.jpg'),(7,'CANADA (Montreal)','2017-06-10 19:00:00','2017-06-11 20:00:00','flag_CANADA.gif','circuit_CANADA_new.jpg'),(8,'AZERBAIJAN (Baku)','2017-06-24 15:00:00','2017-06-25 15:00:00','flag_AZERBAIJAN.gif','circuit_AZERBAIJAN_new.jpg'),(9,'AUSTRIA (Spielberg)','2017-07-08 14:00:00','2017-07-09 14:00:00','flag_AUSTRIA.gif','circuit_AUSTRIA_new.jpg'),(10,'GREAT BRITAIN (Silverstone)','2017-07-15 14:00:00','2017-07-16 14:00:00','flag_UK.gif','circuit_UK_new.jpg'),(11,'HUNGARY (Budapest)','2017-07-29 14:00:00','2017-07-30 14:00:00','flag_HUNGARY.gif','circuit_HUNGARY_new.jpg'),(12,'BELGIUM (Spa)','2017-08-26 14:00:00','2017-08-27 14:00:00','flag_BELGIUM.gif','circuit_BELGIUM_new.jpg'),(13,'ITALY (Monza)','2017-09-02 14:00:00','2017-09-03 14:00:00','flag_ITALY.gif','circuit_ITALY_new.jpg'),(14,'SINGAPORE (Singapore)','2017-09-16 15:00:00','2017-09-17 14:00:00','flag_SINGAPORE.gif','circuit_SINGAPORE_new.jpg'),(15,'MALAYSIA (Sepang)','2017-09-30 11:00:00','2017-10-01 09:00:00','flag_MALAYSIA.gif','circuit_MALAYSIA_new.jpg'),(16,'JAPAN (Suzuka)','2017-10-07 08:00:00','2017-10-08 07:00:00','flag_JAPAN.gif','circuit_JAPAN_new.jpg'),(17,'USA (Austin)','2017-10-21 23:00:00','2017-10-22 20:00:00','flag_USA.gif','circuit_USA_new.jpg'),(18,'MEXICO (Mexico City)','2017-10-28 20:00:00','2017-10-29 21:00:00','flag_MEXICO.gif','circuit_MEXICO_new.jpg'),(19,'BRAZIL (Sao Paulo)','2017-11-11 17:00:00','2017-11-12 17:00:00','flag_BRAZIL.gif','circuit_BRAZIL_new.jpg'),(20,'UNITED ARAB EMIRATES (Abu Dhabi)','2017-11-25 14:00:00','2017-11-26 14:00:00','flag_UAE.gif','circuit_UAE_new.jpg'); /*!40000 ALTER TABLE `gps` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `results` -- DROP TABLE IF EXISTS `results`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `results` ( `r_g_id` int(4) NOT NULL DEFAULT '0', `r_e_id` int(2) NOT NULL DEFAULT '0', `r_d_id_p1` int(4) NOT NULL DEFAULT '0', `r_d_id_p2` int(4) NOT NULL DEFAULT '0', `r_d_id_p3` int(4) NOT NULL DEFAULT '0', `r_d_id_p4` int(4) NOT NULL DEFAULT '0', `r_d_id_p5` int(4) NOT NULL DEFAULT '0', `r_d_id_p6` int(4) NOT NULL DEFAULT '0', `r_d_id_p7` int(4) NOT NULL DEFAULT '0', `r_d_id_p8` int(4) NOT NULL DEFAULT '0', `r_d_id_p9` int(4) NOT NULL DEFAULT '0', `r_d_id_p10` int(4) NOT NULL DEFAULT '0', `r_fl` int(4) NOT NULL DEFAULT '0', `r_firstout` varchar(20) NOT NULL DEFAULT '0', `r_bestcup` varchar(20) NOT NULL DEFAULT '0', `r_bestteam` varchar(20) DEFAULT '0', `r_sc` int(2) NOT NULL DEFAULT '-1', `r_hp` int(1) NOT NULL DEFAULT '0', PRIMARY KEY (`r_g_id`,`r_e_id`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `results` -- LOCK TABLES `results` WRITE; /*!40000 ALTER TABLE `results` DISABLE KEYS */; INSERT INTO `results` VALUES (1,1,1,5,2,0,0,0,0,0,0,0,0,'0','0','0',-1,0),(1,2,5,1,2,6,4,10,7,13,14,8,6,'15','12','0',0,0),(2,1,1,5,2,0,0,0,0,0,0,0,0,'0','0','0',-1,0),(2,2,1,5,4,3,6,2,13,16,7,8,1,'9','4','0',1,0),(3,1,2,1,5,0,0,0,0,0,0,0,0,'0','0','0',-1,0),(3,2,5,1,2,6,3,10,7,15,17,8,1,'16','7','0',1,0),(4,1,5,6,2,0,0,0,0,0,0,0,0,'0','0','0',-1,0),(4,2,2,5,6,1,4,7,8,17,10,13,6,'15,18','12','0',1,0),(5,1,1,5,2,0,0,0,0,0,0,0,0,'0','0','0',-1,0),(5,2,1,5,3,7,8,17,13,20,14,15,1,'6','14','0',1,0),(6,1,6,5,2,0,0,0,0,0,0,0,0,'0','0','0',-1,0),(6,2,5,6,3,2,4,13,1,15,10,16,7,'17','1','0',1,0),(7,1,1,5,2,0,0,0,0,0,0,0,0,'0','0','0',-1,0),(7,2,1,2,3,5,7,8,6,17,9,15,1,'10,13','9','0',1,0),(8,1,1,2,6,0,0,0,0,0,0,0,0,'0','0','0',-1,0),(8,2,3,2,9,5,1,8,16,13,11,20,5,'18','11','0',1,0),(9,1,2,5,1,0,0,0,0,0,0,0,0,'0','0','0',-1,0),(9,2,2,5,3,1,6,15,7,8,10,9,1,'11,4','10,9','0',0,0),(10,1,1,6,5,0,0,0,0,0,0,0,0,'0','0','0',-1,0),(10,2,1,2,6,4,3,17,5,8,7,10,1,'13','3','0',1,0),(11,1,5,6,2,0,0,0,0,0,0,0,0,'0','0','0',-1,0),(11,2,5,6,2,1,4,11,13,7,8,12,11,'3','14,7','0',1,0),(12,1,1,5,2,0,0,0,0,0,0,0,0,'0','0','0',-1,0),(12,2,1,5,3,6,2,17,15,10,8,13,5,'20','10','0',1,0),(13,1,1,4,3,0,0,0,0,0,0,0,0,'0','0','0',-1,0),(13,2,1,2,5,3,6,8,9,10,7,4,3,'18','3','0',0,0),(14,1,5,4,3,0,0,0,0,0,0,0,0,'0','0','0',-1,0),(14,2,1,3,2,13,7,18,12,9,15,8,1,'6,4','9','0',1,0),(15,1,1,6,4,0,0,0,0,0,0,0,0,'0','0','0',-1,0),(15,2,4,1,3,5,2,7,12,9,10,8,5,'13','5','0',0,0),(16,1,1,2,5,0,0,0,0,0,0,0,0,'0','0','0',-1,0),(16,2,1,4,3,2,6,8,7,16,15,10,2,'13','11','0',1,0),(17,1,1,5,2,0,0,0,0,0,0,0,0,'0','0','0',-1,0),(17,2,1,5,6,4,2,8,13,7,10,14,5,'17','4','0',0,0),(18,1,5,4,1,0,0,0,0,0,0,0,0,'0','0','0',-1,0),(18,2,4,2,6,5,8,9,7,16,1,11,5,'3','11','0',1,0),(19,1,2,5,6,0,0,0,0,0,0,0,0,'0','0','0',-1,0),(19,2,5,2,6,1,4,3,10,11,7,17,4,'12','1','1,11',1,0),(20,1,2,1,5,0,0,0,0,0,0,0,0,'0','0','0',-1,0),(20,2,2,1,5,6,4,17,7,8,11,10,2,'3','15,25','11',0,0); /*!40000 ALTER TABLE `results` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tips` -- DROP TABLE IF EXISTS `tips`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `tips` ( `t_u_id` int(4) NOT NULL DEFAULT '0', `t_g_id` int(4) NOT NULL DEFAULT '0', `t_e_id` int(2) NOT NULL DEFAULT '0', `t_d_id_p1` int(4) NOT NULL DEFAULT '0', `t_d_id_p2` int(4) NOT NULL DEFAULT '0', `t_d_id_p3` int(4) NOT NULL DEFAULT '0', `t_fl` int(4) NOT NULL DEFAULT '0', `t_firstout` int(4) NOT NULL DEFAULT '0', `t_bestcup` int(4) NOT NULL DEFAULT '0', `t_bestteam` int(4) DEFAULT '0', `t_sc` int(2) NOT NULL DEFAULT '0', `t_timestamp` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `t_score` int(4) NOT NULL DEFAULT '0', PRIMARY KEY (`t_u_id`,`t_g_id`,`t_e_id`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tips` -- LOCK TABLES `tips` WRITE; /*!40000 ALTER TABLE `tips` DISABLE KEYS */; INSERT INTO `tips` VALUES (36,1,2,6,1,4,6,9,4,0,1,'2017-03-09 10:55:04',2),(36,1,1,1,6,2,0,0,0,0,0,'2017-03-09 10:55:23',4),(12,1,1,1,2,3,0,0,0,0,0,'2017-03-24 08:55:40',3),(21,1,1,1,2,5,0,0,0,0,0,'2017-03-24 16:05:39',4),(21,1,2,1,2,5,5,12,3,0,0,'2017-03-25 10:13:51',4),(1,1,1,1,5,2,0,0,0,0,0,'2017-03-24 19:29:41',6),(10,1,1,1,5,2,0,0,0,0,0,'2017-03-24 21:03:38',6),(7,1,1,1,5,2,0,0,0,0,0,'2017-03-24 22:43:33',6),(18,1,1,1,5,2,0,0,0,0,0,'2017-03-24 23:54:39',6),(12,1,2,1,5,2,1,3,16,0,1,'2017-03-25 08:20:12',3),(10,1,2,1,5,2,1,9,11,0,0,'2017-03-25 16:24:36',5),(1,1,2,1,5,6,1,19,3,0,1,'2017-03-25 17:47:26',1),(7,1,2,1,2,5,1,15,3,0,-1,'2017-03-25 19:03:14',6),(18,1,2,1,5,2,1,14,11,0,0,'2017-03-26 06:59:45',5),(7,2,1,1,5,2,0,0,0,0,0,'2017-04-07 08:18:29',6),(36,2,2,5,1,6,5,18,4,0,0,'2017-04-08 09:27:22',3),(36,2,1,5,2,1,0,0,0,0,0,'2017-04-08 08:56:53',3),(37,2,2,1,2,5,5,12,14,0,1,'2017-04-07 06:54:02',4),(12,2,1,1,2,5,0,0,0,0,0,'2017-04-07 12:54:22',4),(1,2,1,5,1,2,0,0,0,0,0,'2017-04-08 08:48:31',4),(21,2,1,5,1,6,0,0,0,0,0,'2017-04-08 07:05:57',2),(18,2,1,1,5,2,0,0,0,0,0,'2017-04-08 00:06:56',6),(10,2,1,5,2,1,0,0,0,0,0,'2017-04-08 08:50:16',3),(21,2,2,1,2,5,5,18,4,0,0,'2017-04-08 18:06:01',4),(12,2,2,1,5,2,1,4,15,0,1,'2017-04-08 19:43:02',6),(7,2,2,1,5,2,1,8,4,0,1,'2017-04-09 07:49:16',8),(1,2,2,5,1,2,1,19,4,0,1,'2017-04-08 22:10:14',6),(10,2,2,1,5,6,1,12,15,0,1,'2017-04-08 22:27:36',6),(18,2,2,1,5,6,1,12,4,0,1,'2017-04-09 07:59:49',8),(36,3,2,5,1,4,6,21,4,0,0,'2017-04-10 14:45:59',3),(36,3,1,1,5,2,0,0,0,0,0,'2017-04-10 14:45:52',3),(37,3,1,1,5,6,0,0,0,0,0,'2017-04-11 06:33:00',2),(7,3,1,5,3,2,0,0,0,0,0,'2017-04-14 21:06:16',2),(12,3,1,5,1,2,0,0,0,0,0,'2017-04-14 19:16:28',4),(1,3,1,1,5,2,0,0,0,0,0,'2017-04-15 08:03:04',3),(21,3,1,5,1,2,0,0,0,0,0,'2017-04-15 10:46:32',4),(10,3,1,1,5,2,0,0,0,0,0,'2017-04-15 16:06:49',3),(18,3,1,1,5,2,0,0,0,0,0,'2017-04-15 16:48:05',3),(12,3,2,1,2,5,1,19,13,0,0,'2017-04-15 18:18:42',3),(1,3,2,1,2,5,1,19,13,0,0,'2017-04-15 20:03:01',3),(7,3,2,5,1,3,1,16,18,0,0,'2017-04-16 15:04:10',7),(10,3,2,1,5,2,1,9,11,0,-1,'2017-04-16 11:03:55',5),(21,3,2,1,2,5,5,12,16,0,0,'2017-04-16 11:26:50',2),(18,3,2,1,2,5,1,16,7,0,-1,'2017-04-16 16:59:47',9),(36,4,2,5,6,2,5,16,10,0,1,'2017-04-29 15:15:55',4),(36,4,1,5,1,2,0,0,0,0,0,'2017-04-29 13:46:23',4),(12,4,1,5,6,1,0,0,0,0,0,'2017-04-28 20:00:55',4),(1,4,1,1,5,2,0,0,0,0,0,'2017-04-28 18:20:42',3),(21,4,1,5,6,2,0,0,0,0,0,'2017-04-28 18:49:18',6),(10,4,1,5,2,6,0,0,0,0,0,'2017-04-29 09:05:03',4),(7,4,1,5,6,1,0,0,0,0,0,'2017-04-29 12:22:14',4),(37,4,1,5,1,2,0,0,0,0,0,'2017-04-29 13:38:53',4),(18,4,1,5,1,6,0,0,0,0,0,'2017-04-29 13:45:45',3),(12,4,2,5,6,2,5,20,13,0,0,'2017-04-29 16:29:55',2),(1,4,2,5,1,6,5,16,15,0,1,'2017-04-29 18:34:59',4),(10,4,2,5,2,1,5,9,12,0,1,'2017-04-30 08:46:28',5),(21,4,2,5,6,2,5,11,15,0,1,'2017-04-30 10:18:41',4),(37,4,2,5,2,1,5,11,2,0,1,'2017-04-30 10:43:35',3),(18,4,2,5,2,6,5,12,14,0,0,'2017-04-30 13:59:10',3),(36,5,1,1,5,2,0,0,0,0,0,'2017-05-02 09:34:02',6),(36,5,2,5,1,2,1,9,4,0,0,'2017-05-02 09:34:59',2),(7,5,1,1,2,6,0,0,0,0,0,'2017-05-12 21:56:16',3),(7,5,2,5,1,2,5,9,14,0,1,'2017-05-14 08:33:50',5),(1,5,1,1,2,5,0,0,0,0,0,'2017-05-12 19:17:42',4),(12,5,1,1,2,6,0,0,0,0,0,'2017-05-13 13:57:43',3),(37,5,1,1,2,5,0,0,0,0,0,'2017-05-13 09:58:04',4),(21,5,1,1,2,6,0,0,0,0,0,'2017-05-13 13:08:38',3),(10,5,1,1,2,5,0,0,0,0,0,'2017-05-13 11:31:35',4),(18,5,1,1,5,2,0,0,0,0,0,'2017-05-13 13:50:22',6),(12,5,2,1,2,6,2,12,13,0,0,'2017-05-13 16:04:41',1),(37,5,2,1,2,5,5,9,2,0,0,'2017-05-13 18:07:08',2),(1,5,2,1,2,5,6,15,14,0,1,'2017-05-13 23:12:51',6),(10,5,2,5,1,2,5,20,17,0,-1,'2017-05-14 10:36:26',2),(21,5,2,1,2,5,5,12,14,0,1,'2017-05-14 12:46:59',6),(18,5,2,1,5,2,5,12,9,0,1,'2017-05-14 13:54:16',5),(36,6,2,5,6,2,6,9,1,0,1,'2017-05-28 09:35:59',7),(36,6,1,1,2,5,0,0,0,0,0,'2017-05-16 08:49:40',2),(21,6,1,1,5,4,0,0,0,0,0,'2017-05-26 08:30:26',2),(7,6,1,5,1,4,0,0,0,0,0,'2017-05-27 13:28:17',1),(12,6,1,5,6,2,0,0,0,0,0,'2017-05-27 08:52:19',4),(10,6,1,5,2,1,0,0,0,0,0,'2017-05-27 13:02:25',2),(1,6,1,5,6,2,0,0,0,0,0,'2017-05-27 13:14:39',4),(18,6,1,5,6,1,0,0,0,0,0,'2017-05-27 13:42:37',2),(12,6,2,5,6,2,5,12,1,0,1,'2017-05-27 15:34:30',7),(1,6,2,5,6,2,6,19,22,0,1,'2017-05-28 00:06:23',5),(21,6,2,6,5,4,1,12,1,0,1,'2017-05-28 09:36:18',5),(37,6,2,5,6,3,5,12,9999,0,1,'2017-05-28 12:23:33',7),(10,6,2,5,6,2,5,8,22,0,1,'2017-05-28 12:38:31',5),(7,6,2,5,6,2,5,18,1,0,1,'2017-05-28 13:24:32',7),(18,6,2,5,6,2,5,19,1,0,1,'2017-05-28 13:43:30',7),(36,7,2,1,5,2,1,12,6,0,1,'2017-06-08 14:22:16',5),(36,7,1,1,2,5,0,0,0,0,0,'2017-06-08 14:23:18',4),(12,7,1,1,2,5,0,0,0,0,0,'2017-06-09 18:10:01',4),(21,7,1,5,1,6,0,0,0,0,0,'2017-06-10 10:19:25',2),(37,7,1,1,6,5,0,0,0,0,0,'2017-06-10 11:09:06',3),(7,7,1,5,1,6,0,0,0,0,0,'2017-06-10 17:24:29',2),(7,7,2,1,5,6,5,19,9,0,1,'2017-06-11 19:25:56',5),(10,7,1,5,6,1,0,0,0,0,0,'2017-06-10 17:43:34',2),(1,7,1,5,1,6,0,0,0,0,0,'2017-06-10 18:03:37',2),(18,7,1,5,1,6,0,0,0,0,0,'2017-06-10 18:04:02',2),(1,7,2,1,5,2,5,15,16,0,1,'2017-06-10 20:37:04',4),(12,7,2,1,5,2,1,20,12,0,1,'2017-06-11 08:45:42',5),(37,7,2,1,5,2,5,9,6,0,1,'2017-06-11 09:58:07',4),(21,7,2,5,1,2,1,12,9,0,1,'2017-06-11 15:04:48',6),(10,7,2,1,5,6,1,13,20,0,1,'2017-06-11 19:19:53',7),(18,7,2,1,5,6,1,12,13,0,1,'2017-06-11 19:40:42',4),(36,8,1,5,2,6,0,0,0,0,0,'2017-06-14 09:56:03',4),(36,8,2,5,2,6,5,9,1,0,1,'2017-06-14 09:56:51',4),(7,8,1,2,5,1,0,0,0,0,0,'2017-06-24 14:28:19',2),(7,8,2,1,2,5,1,12,3,0,1,'2017-06-25 13:16:20',3),(12,8,1,5,1,4,0,0,0,0,0,'2017-06-23 15:31:22',1),(1,8,1,4,2,5,0,0,0,0,0,'2017-06-23 20:36:31',2),(10,8,1,5,1,4,0,0,0,0,0,'2017-06-24 11:06:05',1),(37,8,1,1,5,6,0,0,0,0,0,'2017-06-24 12:54:13',4),(18,8,1,5,6,1,0,0,0,0,0,'2017-06-24 13:18:58',2),(12,8,2,1,2,5,1,10,3,0,1,'2017-06-24 16:19:30',3),(1,8,2,1,2,5,1,15,3,0,1,'2017-06-25 00:58:09',3),(10,8,2,1,6,5,1,12,11,0,-1,'2017-06-25 09:59:45',2),(37,8,2,1,2,5,4,11,16,0,1,'2017-06-25 10:40:15',3),(18,8,2,1,6,5,5,18,11,0,1,'2017-06-25 13:58:38',7),(21,8,2,1,5,2,5,12,11,0,1,'2017-06-25 14:51:33',5),(7,9,1,5,2,1,0,0,0,0,0,'2017-07-08 13:41:30',4),(7,9,2,5,2,3,5,8,1,0,0,'2017-07-09 13:33:31',5),(36,9,1,5,1,2,0,0,0,0,0,'2017-07-07 11:47:05',3),(36,9,2,5,2,6,1,12,1,0,0,'2017-07-09 13:29:11',4),(37,9,1,1,5,2,0,0,0,0,0,'2017-07-07 18:33:34',4),(1,9,1,1,2,5,0,0,0,0,0,'2017-07-08 06:56:56',3),(21,9,1,1,5,2,0,0,0,0,0,'2017-07-08 07:43:35',4),(12,9,1,1,2,5,0,0,0,0,0,'2017-07-08 07:57:32',3),(18,9,1,1,5,2,0,0,0,0,0,'2017-07-08 12:48:47',4),(10,9,1,5,1,2,0,0,0,0,0,'2017-07-08 12:56:01',3),(1,9,2,2,5,1,1,8,16,0,1,'2017-07-08 17:28:13',4),(12,9,2,5,1,2,1,14,1,0,0,'2017-07-08 21:23:39',4),(21,9,2,5,1,2,1,12,16,0,1,'2017-07-09 13:59:26',2),(10,9,2,5,2,1,1,9,20,0,1,'2017-07-09 12:34:00',2),(18,9,2,2,5,1,1,15,1,0,1,'2017-07-09 13:54:03',4),(36,10,1,1,2,5,0,0,0,0,0,'2017-07-14 12:07:55',4),(36,10,2,1,5,6,1,12,3,0,1,'2017-07-16 13:26:14',8),(7,10,1,1,5,2,0,0,0,0,0,'2017-07-15 12:38:26',3),(1,10,1,1,2,5,0,0,0,0,0,'2017-07-15 07:00:08',4),(12,10,1,1,2,5,0,0,0,0,0,'2017-07-15 07:58:00',4),(10,10,1,5,1,2,0,0,0,0,0,'2017-07-15 09:09:19',2),(37,10,1,2,1,5,0,0,0,0,0,'2017-07-15 13:00:53',3),(18,10,1,1,2,5,0,0,0,0,0,'2017-07-15 13:34:35',4),(21,10,1,1,2,5,0,0,0,0,0,'2017-07-15 13:59:29',4),(12,10,2,1,2,5,5,11,3,0,1,'2017-07-15 21:41:33',7),(1,10,2,1,5,2,1,17,3,0,0,'2017-07-16 06:42:46',5),(7,10,2,1,6,2,6,14,3,0,0,'2017-07-16 08:57:44',5),(37,10,2,1,5,6,1,8,4,0,0,'2017-07-16 11:48:39',4),(10,10,2,1,5,6,1,9,11,0,1,'2017-07-16 12:23:27',6),(21,10,2,1,5,6,2,9,3,0,1,'2017-07-16 13:59:36',7),(18,10,2,1,5,6,1,12,3,0,1,'2017-07-16 13:55:17',8),(36,11,1,5,1,2,0,0,0,0,0,'2017-07-28 08:48:29',4),(36,11,2,5,1,6,5,18,4,0,0,'2017-07-28 08:49:11',2),(12,11,1,5,1,3,0,0,0,0,0,'2017-07-28 16:56:38',2),(1,11,1,5,2,1,0,0,0,0,0,'2017-07-29 13:32:49',3),(21,11,1,5,3,4,0,0,0,0,0,'2017-07-29 09:40:18',2),(7,11,1,5,6,1,0,0,0,0,0,'2017-07-29 12:50:19',4),(18,11,1,5,6,2,0,0,0,0,0,'2017-07-29 12:06:44',6),(10,11,1,5,2,6,0,0,0,0,0,'2017-07-29 13:14:55',4),(12,11,2,5,6,1,5,20,17,0,0,'2017-07-29 15:03:37',3),(1,11,2,5,6,1,1,14,9,0,1,'2017-07-29 16:01:52',5),(10,11,2,5,1,2,5,13,17,0,1,'2017-07-30 10:46:27',5),(7,11,2,5,6,1,5,4,14,0,0,'2017-07-30 13:32:35',5),(21,11,2,5,6,1,3,14,23,0,0,'2017-07-30 13:40:00',3),(18,11,2,5,2,6,5,9,7,0,0,'2017-07-30 13:56:35',5),(36,12,1,1,2,5,0,0,0,0,0,'2017-08-26 13:56:35',4),(36,12,2,5,1,2,1,12,10,0,1,'2017-08-27 13:46:28',5),(12,12,1,1,22,5,0,0,0,0,0,'2017-08-25 20:46:45',3),(7,12,1,5,6,1,0,0,0,0,0,'2017-08-26 13:53:45',2),(1,12,1,1,5,6,0,0,0,0,0,'2017-08-26 08:21:09',4),(10,12,1,1,2,5,0,0,0,0,0,'2017-08-26 09:33:18',4),(21,12,1,1,5,2,0,0,0,0,0,'2017-08-26 10:40:28',6),(37,12,1,1,2,6,0,0,0,0,0,'2017-08-26 11:19:46',3),(18,12,1,1,6,5,0,0,0,0,0,'2017-08-26 13:31:38',3),(12,12,2,1,5,2,1,12,9,0,1,'2017-08-26 15:29:39',5),(1,12,2,1,5,2,1,17,13,0,1,'2017-08-26 18:41:28',5),(7,12,2,1,2,5,6,19,14,0,-1,'2017-08-27 09:01:47',3),(37,12,2,5,2,3,1,8,4,0,1,'2017-08-27 09:52:15',4),(10,12,2,1,5,2,1,9,10,0,1,'2017-08-27 13:18:41',7),(21,12,2,1,5,2,1,11,12,0,1,'2017-08-27 13:44:10',5),(18,12,2,1,5,6,6,12,10,0,1,'2017-08-27 13:59:07',7),(36,13,1,1,2,5,0,0,0,0,0,'2017-08-28 15:02:37',2),(36,13,2,1,5,2,1,20,3,0,0,'2017-08-28 15:05:46',7),(21,13,1,1,2,5,0,0,0,0,0,'2017-09-01 14:05:37',2),(12,13,1,1,2,5,0,0,0,0,0,'2017-09-01 22:46:35',2),(37,13,1,1,5,2,0,0,0,0,0,'2017-09-02 07:13:10',2),(1,13,1,1,2,5,0,0,0,0,0,'2017-09-02 11:59:56',2),(7,13,1,1,2,5,0,0,0,0,0,'2017-09-02 12:04:49',2),(10,13,1,1,5,2,0,0,0,0,0,'2017-09-02 12:41:48',2),(18,13,1,5,1,6,0,0,0,0,0,'2017-09-02 13:58:42',1),(12,13,2,1,2,5,5,4,3,0,1,'2017-09-02 18:50:52',7),(1,13,2,1,2,5,1,10,3,0,0,'2017-09-02 22:10:37',9),(10,13,2,1,2,5,1,13,11,0,1,'2017-09-03 08:45:25',5),(21,13,2,1,2,5,1,12,3,0,0,'2017-09-03 10:25:01',9),(7,13,2,1,2,5,1,4,3,0,1,'2017-09-03 13:18:29',7),(37,13,2,1,5,2,2,8,4,0,1,'2017-09-03 13:37:22',3),(18,13,2,1,6,5,6,16,3,0,1,'2017-09-03 13:54:40',5),(36,14,2,5,4,3,4,20,10,0,1,'2017-09-17 13:14:37',2),(36,14,1,5,3,1,0,0,0,0,0,'2017-09-16 13:16:17',3),(37,14,1,3,5,4,0,0,0,0,0,'2017-09-15 18:10:57',3),(1,14,1,4,5,3,0,0,0,0,0,'2017-09-16 13:17:25',4),(12,14,1,3,1,4,0,0,0,0,0,'2017-09-15 23:43:04',2),(21,14,1,4,3,5,0,0,0,0,0,'2017-09-16 12:34:26',3),(18,14,1,5,1,4,0,0,0,0,0,'2017-09-16 14:16:57',3),(10,14,1,1,5,2,0,0,0,0,0,'2017-09-16 14:18:23',1),(7,14,1,3,4,1,0,0,0,0,0,'2017-09-16 14:29:34',3),(1,14,2,5,3,1,5,4,10,0,1,'2017-09-16 21:17:24',7),(12,14,2,5,3,4,5,10,9,0,1,'2017-09-16 22:17:11',5),(21,14,2,5,4,3,4,18,10,0,1,'2017-09-17 10:10:01',2),(10,14,2,5,4,1,5,9,10,0,1,'2017-09-17 10:12:28',2),(7,14,2,5,3,1,3,8,1,0,1,'2017-09-17 12:55:48',4),(18,14,2,5,3,6,3,18,19,0,1,'2017-09-17 13:59:12',3),(36,15,1,1,5,2,0,0,0,0,0,'2017-09-25 10:12:16',2),(36,15,2,1,4,3,5,6,5,0,1,'2017-10-01 08:58:12',6),(12,15,1,1,2,5,0,0,0,0,0,'2017-09-29 07:12:54',2),(21,15,1,1,4,5,0,0,0,0,0,'2017-09-29 09:59:43',3),(37,15,1,5,6,3,0,0,0,0,0,'2017-09-29 15:18:10',2),(1,15,1,5,6,1,0,0,0,0,0,'2017-09-29 20:57:04',3),(10,15,1,5,6,3,0,0,0,0,0,'2017-09-30 09:32:55',2),(7,15,2,1,6,3,1,8,5,0,1,'2017-10-01 07:33:09',4),(1,15,2,1,3,4,1,17,5,0,1,'2017-10-01 08:55:48',4),(12,15,2,1,3,4,5,6,5,0,1,'2017-09-30 19:49:21',5),(21,15,2,1,4,6,1,18,5,0,0,'2017-10-01 00:10:20',5),(18,15,2,1,6,3,3,24,5,0,1,'2017-10-01 08:03:38',4),(10,15,2,1,4,2,1,13,5,0,1,'2017-10-01 08:11:29',6),(37,15,2,1,3,2,1,15,24,0,1,'2017-10-01 08:55:13',1),(36,16,1,1,5,2,0,0,0,0,0,'2017-10-05 09:02:41',4),(36,16,2,1,5,3,1,18,2,0,0,'2017-10-07 18:28:59',3),(12,16,1,1,5,4,0,0,0,0,0,'2017-10-06 12:20:52',3),(37,16,1,1,5,4,0,0,0,0,0,'2017-10-06 14:57:07',3),(21,16,1,1,5,2,0,0,0,0,0,'2017-10-06 21:42:16',4),(1,16,1,1,5,3,0,0,0,0,0,'2017-10-06 21:49:54',3),(7,16,1,1,2,5,0,0,0,0,0,'2017-10-07 07:46:25',6),(18,16,1,1,2,5,0,0,0,0,0,'2017-10-07 07:58:43',6),(10,16,1,1,4,5,0,0,0,0,0,'2017-10-07 07:59:05',4),(12,16,2,1,5,4,1,10,13,0,1,'2017-10-07 09:14:23',4),(1,16,2,1,5,2,1,18,11,0,1,'2017-10-07 14:21:37',5),(21,16,2,1,5,2,5,18,11,0,0,'2017-10-07 17:22:02',3),(10,16,2,1,5,4,1,8,2,0,1,'2017-10-07 20:36:41',4),(7,16,2,1,5,3,2,8,2,0,-1,'2017-10-07 21:36:44',5),(37,16,2,1,5,3,1,15,4,0,0,'2017-10-07 22:25:38',3),(18,16,2,1,5,2,5,15,13,0,1,'2017-10-07 23:48:21',3),(21,17,1,1,5,2,0,0,0,0,0,'2017-10-20 12:58:03',6),(36,17,1,1,5,2,0,0,0,0,0,'2017-10-20 16:39:14',6),(36,17,2,1,5,3,1,20,4,0,0,'2017-10-22 20:41:14',7),(12,17,1,1,5,6,0,0,0,0,0,'2017-10-20 22:12:24',4),(1,17,1,1,2,5,0,0,0,0,0,'2017-10-21 21:38:26',4),(10,17,1,1,5,2,0,0,0,0,0,'2017-10-21 19:42:46',6),(37,17,1,1,5,2,0,0,0,0,0,'2017-10-21 20:21:31',6),(18,17,1,5,1,6,0,0,0,0,0,'2017-10-21 22:13:16',2),(1,17,2,1,2,5,1,15,4,0,1,'2017-10-22 00:08:21',4),(12,17,2,1,5,3,4,25,4,0,0,'2017-10-22 20:25:26',7),(7,17,2,1,2,5,1,9,4,0,-1,'2017-10-22 16:58:56',5),(21,17,2,5,1,2,1,17,4,0,0,'2017-10-22 17:31:01',8),(10,17,2,1,5,2,1,16,4,0,1,'2017-10-22 19:50:58',5),(37,17,2,1,5,2,5,4,3,0,1,'2017-10-22 20:20:15',4),(18,17,2,1,5,2,4,25,4,0,0,'2017-10-22 20:53:25',7),(36,18,1,1,5,2,0,0,0,0,0,'2017-10-23 15:37:05',2),(36,18,2,1,5,4,1,20,3,0,1,'2017-10-29 19:54:28',2),(21,18,1,3,1,4,0,0,0,0,0,'2017-10-28 12:41:46',2),(12,18,1,1,3,2,0,0,0,0,0,'2017-10-28 08:16:56',1),(7,18,1,1,2,3,0,0,0,0,0,'2017-10-28 13:59:37',1),(1,18,1,1,4,2,0,0,0,0,0,'2017-10-28 19:10:26',3),(10,18,1,1,4,2,0,0,0,0,0,'2017-10-28 14:43:08',3),(37,18,1,1,5,3,0,0,0,0,0,'2017-10-28 16:48:04',2),(18,18,1,1,5,4,0,0,0,0,0,'2017-10-28 19:14:57',3),(12,18,2,4,5,1,5,20,11,0,1,'2017-10-28 21:04:29',6),(1,18,2,4,5,1,5,17,3,0,1,'2017-10-29 19:58:52',4),(7,18,2,4,5,1,4,20,11,0,1,'2017-10-29 19:24:38',5),(21,18,2,4,1,5,3,24,3,0,1,'2017-10-29 18:13:01',3),(10,18,2,5,1,2,5,9,3,0,-1,'2017-10-29 18:54:07',2),(36,19,1,1,5,4,0,0,0,0,0,'2017-10-30 11:46:29',2),(36,19,2,4,5,2,1,20,1,0,0,'2017-11-12 16:59:21',3),(37,19,1,1,2,5,0,0,0,0,0,'2017-11-10 16:50:43',2),(18,19,1,1,2,5,0,0,0,0,0,'2017-11-11 08:11:49',2),(12,19,1,1,2,4,0,0,0,0,0,'2017-11-11 08:13:21',1),(1,19,1,1,2,5,0,0,0,0,0,'2017-11-11 13:41:56',2),(10,19,1,1,2,5,0,0,0,0,0,'2017-11-11 15:59:06',2),(21,19,1,1,2,3,0,0,0,0,0,'2017-11-11 16:02:13',1),(7,19,1,1,2,5,0,0,0,0,0,'2017-11-11 16:46:31',2),(7,19,2,2,5,6,5,15,1,0,1,'2017-11-11 18:36:07',7),(12,19,2,2,1,4,1,24,1,0,1,'2017-11-11 20:05:00',4),(21,19,2,2,5,4,1,24,1,0,0,'2017-11-12 15:43:55',3),(1,19,2,5,2,4,4,17,1,0,1,'2017-11-12 02:37:06',8),(10,19,2,2,5,4,2,8,1,0,0,'2017-11-12 10:57:57',3),(37,19,2,2,5,6,1,4,3,0,1,'2017-11-12 16:06:03',5),(18,19,2,5,2,4,5,6,1,0,1,'2017-11-12 16:58:03',7),(36,20,1,1,5,6,0,0,0,0,0,'2017-11-21 12:15:44',2),(36,20,2,1,2,5,1,20,11,0,1,'2017-11-26 13:58:40',3),(1,20,1,1,2,5,0,0,0,0,0,'2017-11-25 13:54:11',4),(12,20,1,1,2,4,0,0,0,0,0,'2017-11-24 22:45:29',2),(10,20,1,1,5,4,0,0,0,0,0,'2017-11-25 11:22:39',2),(7,20,1,1,2,5,0,0,0,0,0,'2017-11-25 12:25:23',4),(7,20,2,1,2,5,1,8,13,0,0,'2017-11-26 13:09:55',5),(18,20,1,1,2,5,0,0,0,0,0,'2017-11-25 13:04:06',4),(37,20,1,1,2,5,0,0,0,0,0,'2017-11-25 13:04:48',4),(12,20,2,1,2,5,1,11,13,0,0,'2017-11-25 17:04:06',5),(1,20,2,1,2,5,4,17,9,11,0,'2017-12-02 22:31:04',6),(10,20,2,1,2,5,2,16,11,0,1,'2017-11-26 10:52:37',4),(37,20,2,2,1,5,1,20,4,0,0,'2017-11-26 12:53:26',7),(18,20,2,2,1,5,3,15,13,0,11,'2017-11-26 13:58:01',5); /*!40000 ALTER TABLE `tips` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `users` -- DROP TABLE IF EXISTS `users`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `users` ( `u_id` int(11) NOT NULL AUTO_INCREMENT, `u_name` char(3) NOT NULL DEFAULT '', `u_passcode` varchar(41) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL DEFAULT '', `u_pic` varchar(40) DEFAULT NULL, `u_realname` varchar(40) NOT NULL DEFAULT '', `u_nickname` varchar(20) NOT NULL DEFAULT 'not revealed', `u_email` varchar(50) NOT NULL DEFAULT '', `u_emailreminder` int(1) NOT NULL DEFAULT '0', `u_nationality` varchar(20) NOT NULL DEFAULT 'not revealed', `u_favdriver` int(11) NOT NULL DEFAULT '0', `u_since` year(4) NOT NULL DEFAULT '0000', `u_gtwins` int(3) NOT NULL DEFAULT '0', `u_admin` int(1) NOT NULL DEFAULT '0', PRIMARY KEY (`u_id`) ) ENGINE=MyISAM AUTO_INCREMENT=38 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `users` -- LOCK TABLES `users` WRITE; /*!40000 ALTER TABLE `users` DISABLE KEYS */; INSERT INTO `users` VALUES (1,'MAM','18d022103920e120b2faabf4be68aa8f','pic_MAM.gif','Markus A. Mascelli','MAM','mam@heimam.at',0,'italian',602,2006,2,1),(2,'GUE','78918cecf8926d0cada4c5bc31af87a3','pic_GUE.gif','Guenther Schmidt','GueStar','guenther.schmidt@gmail.com',0,'austrian',15,2006,3,0),(3,'ZEI','8dad7cabce9c511bd4983e8dc96ea5da','pic_ZEI.gif','Christian Zeichmann','Zeichi','christian.zeichmann@kabelnet.at',0,'austrian',0,2007,1,0),(4,'AFG','8ff522cd1e5219541b2e945af0727d2b','pic_AFG.gif','Andrea F. Grohmann','','a.grohmann@gmx.at',0,'austrian',0,2007,0,0),(5,'JIR','8522c2ccfd6fc5d242ed16d168401fad','avatar.jpg','Juergen Iser','','j.iser@gmx.at',0,'austrian',602,2008,0,0),(6,'KAI','e5f4d97a4961dea1184bbbe847b591f3','avatar.jpg','Roman Kailbach','Kailo','kailo@gmx.at',0,'austrian',334,2008,0,0),(7,'WOB','776ad0ef27acc0602c337dc2736f3a97','300ende.jpg','Mhöb Gnagflow','WoB','wboehm@gmail.com',0,'austrian',762,2008,1,0),(8,'REG','776ad0ef27acc0602c337dc2736f3a97','yoshi1.jpg','Regina Boehm','','rboehm@gmail.com',0,'austrian',0,2008,0,0),(9,'ISA','3c4db9561aa2b8530d5c60014dbfbe86','isa_grid_kl_hp_3.jpg','Ildiko Samu-Puehringer','sam','ildikosamu.puehringer@gmail.com',0,'hungarian',667,2008,0,0),(10,'MRO','cda0fd2918d19e20ac871ed79a8d2bb0','pic_MRO.jpg','Martha Rossa','RoMa','rossama@yahoo.com',0,'austrian',334,2008,1,1),(11,'MPU','f9c17117b5b8dbf8cfa83d8057ee1a0b','mpu_grid_tip_blaukl.jpg','Michael Puehringer','','michael.puehringer@lotterien.at',0,'austrian',621,2008,0,0),(12,'RHA','9ced82c0515df69d4e3311f63d40ffa0','avatar.jpg','Robert Haller','','rr101088@gmail.com',0,'austrian',0,2008,0,0),(13,'FAN','33c2e20d31b3ae8f4564d7517738eb7d','extremeevil.gif','Georg Juren','Schurl','georg.juren@atos.net',0,'austrian',49,2009,0,0),(14,'MBR','f9c17117b5b8dbf8cfa83d8057ee1a0b','avatar.jpg','Markus Brenner','','m.brenn@gmx.net',0,'austrian',0,2009,0,0),(15,'RSC','d67ee0b6a91696158441100ba2e5a9b0','schicht_roman.jpg','Roman Schicht','','rschicht@yahoo.com',0,'austrian',0,2009,0,0),(16,'FAB','f9c17117b5b8dbf8cfa83d8057ee1a0b','avatar.jpg','Alexander Fabozzi','','alexander.fabozzi@gmx.at',0,'austrian',0,2010,0,0),(17,'MAR','776ad0ef27acc0602c337dc2736f3a97','avatar.jpg','Marina Boehm','','mboehm@gmail.com',0,'austrian',0,2010,0,0),(18,'IRS','8918b74d571421bcc47fc59816bf8fc2','foto_ivan.png','Ivan Rodriguez','','irodriguezs@hotmail.com',0,'spanish',15,2010,1,0),(19,'ALE','2ab3343875e56dc0a15cbb6a98570cf2','avatar.jpg','Alexander Doler','','alexander.doler@atos.net',0,'austrian',0,2012,0,0),(20,'STM','f078ea5db3ca0165e914bb82ea971755','avatar.jpg','Manfred Steinacher','','mst4711@gmx.at',0,'austrian',0,2013,0,0),(21,'MCL','02a8925e820f46c6c89d7a85a1285deb','avatar.jpg','Sasa Petrovic','Ayrton','sasa.petrovic@citrix.com',0,'serbian',676,2014,0,0),(22,'HOK','21e316792058f92b4873dff990619a94','avatar.jpg','Hoking','Hoking','samuel2f3@hotmail.com',0,'',833,2015,0,0),(36,'TOM','6b6817ae69fe2b011c7adb139a39d161','15409891.jpg','Thomas Reiter','raidaaa','t.reiter@gmx.at',0,'austrian',667,2017,0,0),(37,'JUF','bfdc65055698c17070dc805473c852f8','avatar.jpg','Juergen Finkes','jufi','juergen.finkes@kapsch.net',0,'austrian',0,2017,0,0); /*!40000 ALTER TABLE `users` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `winners` -- DROP TABLE IF EXISTS `winners`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `winners` ( `w_season` int(4) NOT NULL DEFAULT '0', `w_u_id` int(4) NOT NULL DEFAULT '0', PRIMARY KEY (`w_season`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `winners` -- LOCK TABLES `winners` WRITE; /*!40000 ALTER TABLE `winners` DISABLE KEYS */; INSERT INTO `winners` VALUES (2006,2),(2007,2),(2008,10),(2009,1),(2010,3),(2011,1),(2012,18),(2013,2),(2014,1),(2015,7),(2016,1),(2017,18); /*!40000 ALTER TABLE `winners` ENABLE KEYS */; UNLOCK TABLES; -- -- Current Database: `nucleus_mam` -- CREATE DATABASE /*!32312 IF NOT EXISTS*/ `nucleus_mam` /*!40100 DEFAULT CHARACTER SET latin1 */; USE `nucleus_mam`; -- -- Table structure for table `mam_nucleus_actionlog` -- DROP TABLE IF EXISTS `mam_nucleus_actionlog`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `mam_nucleus_actionlog` ( `timestamp` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `message` varchar(255) NOT NULL DEFAULT '' ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `mam_nucleus_actionlog` -- LOCK TABLES `mam_nucleus_actionlog` WRITE; /*!40000 ALTER TABLE `mam_nucleus_actionlog` DISABLE KEYS */; INSERT INTO `mam_nucleus_actionlog` VALUES ('2006-06-05 18:02:48','[Admin] Login successful for admin (sharedpc=0)'),('2006-06-05 18:04:53','[Admin] Login successful for admin (sharedpc=0)'),('2006-10-29 10:43:11','[Admin] Login successful for admin (sharedpc=0)'); /*!40000 ALTER TABLE `mam_nucleus_actionlog` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `mam_nucleus_activation` -- DROP TABLE IF EXISTS `mam_nucleus_activation`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `mam_nucleus_activation` ( `vkey` varchar(40) NOT NULL DEFAULT '', `vtime` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `vmember` int(11) NOT NULL DEFAULT '0', `vtype` varchar(15) NOT NULL DEFAULT '', `vextra` varchar(128) NOT NULL DEFAULT '', PRIMARY KEY (`vkey`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `mam_nucleus_activation` -- LOCK TABLES `mam_nucleus_activation` WRITE; /*!40000 ALTER TABLE `mam_nucleus_activation` DISABLE KEYS */; /*!40000 ALTER TABLE `mam_nucleus_activation` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `mam_nucleus_ban` -- DROP TABLE IF EXISTS `mam_nucleus_ban`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `mam_nucleus_ban` ( `iprange` varchar(15) NOT NULL DEFAULT '', `reason` varchar(255) NOT NULL DEFAULT '', `blogid` int(11) NOT NULL DEFAULT '0' ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `mam_nucleus_ban` -- LOCK TABLES `mam_nucleus_ban` WRITE; /*!40000 ALTER TABLE `mam_nucleus_ban` DISABLE KEYS */; /*!40000 ALTER TABLE `mam_nucleus_ban` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `mam_nucleus_blog` -- DROP TABLE IF EXISTS `mam_nucleus_blog`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `mam_nucleus_blog` ( `bnumber` int(11) NOT NULL AUTO_INCREMENT, `bname` varchar(60) NOT NULL DEFAULT '', `bshortname` varchar(15) NOT NULL DEFAULT '', `bdesc` varchar(200) DEFAULT NULL, `bcomments` tinyint(2) NOT NULL DEFAULT '1', `bmaxcomments` int(11) NOT NULL DEFAULT '0', `btimeoffset` decimal(3,1) NOT NULL DEFAULT '0.0', `bnotify` varchar(60) DEFAULT NULL, `burl` varchar(100) DEFAULT NULL, `bupdate` varchar(60) DEFAULT NULL, `bdefskin` int(11) NOT NULL DEFAULT '1', `bpublic` tinyint(2) NOT NULL DEFAULT '1', `bsendping` tinyint(2) NOT NULL DEFAULT '0', `bconvertbreaks` tinyint(2) NOT NULL DEFAULT '1', `bdefcat` int(11) DEFAULT NULL, `bnotifytype` int(11) NOT NULL DEFAULT '15', `ballowpast` tinyint(2) NOT NULL DEFAULT '0', `bincludesearch` tinyint(2) NOT NULL DEFAULT '0', PRIMARY KEY (`bnumber`), UNIQUE KEY `bnumber` (`bnumber`), UNIQUE KEY `bshortname` (`bshortname`) ) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `mam_nucleus_blog` -- LOCK TABLES `mam_nucleus_blog` WRITE; /*!40000 ALTER TABLE `mam_nucleus_blog` DISABLE KEYS */; INSERT INTO `mam_nucleus_blog` VALUES (1,'mam\'s nucleus cms','mynucleuscms','',1,0,'0.0','','http://nucleus.mamweb.at/','',5,1,0,1,1,1,1,0); /*!40000 ALTER TABLE `mam_nucleus_blog` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `mam_nucleus_category` -- DROP TABLE IF EXISTS `mam_nucleus_category`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `mam_nucleus_category` ( `catid` int(11) NOT NULL AUTO_INCREMENT, `cblog` int(11) NOT NULL DEFAULT '0', `cname` varchar(40) DEFAULT NULL, `cdesc` varchar(200) DEFAULT NULL, PRIMARY KEY (`catid`) ) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `mam_nucleus_category` -- LOCK TABLES `mam_nucleus_category` WRITE; /*!40000 ALTER TABLE `mam_nucleus_category` DISABLE KEYS */; INSERT INTO `mam_nucleus_category` VALUES (1,1,'General','Items that do not fit in other categories'); /*!40000 ALTER TABLE `mam_nucleus_category` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `mam_nucleus_comment` -- DROP TABLE IF EXISTS `mam_nucleus_comment`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `mam_nucleus_comment` ( `cnumber` int(11) NOT NULL AUTO_INCREMENT, `cbody` text NOT NULL, `cuser` varchar(40) DEFAULT NULL, `cmail` varchar(100) DEFAULT NULL, `cmember` int(11) DEFAULT NULL, `citem` int(11) NOT NULL DEFAULT '0', `ctime` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `chost` varchar(60) DEFAULT NULL, `cip` varchar(15) NOT NULL DEFAULT '', `cblog` int(11) NOT NULL DEFAULT '0', PRIMARY KEY (`cnumber`), UNIQUE KEY `cnumber` (`cnumber`), KEY `citem` (`citem`), FULLTEXT KEY `cbody` (`cbody`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `mam_nucleus_comment` -- LOCK TABLES `mam_nucleus_comment` WRITE; /*!40000 ALTER TABLE `mam_nucleus_comment` DISABLE KEYS */; /*!40000 ALTER TABLE `mam_nucleus_comment` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `mam_nucleus_config` -- DROP TABLE IF EXISTS `mam_nucleus_config`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `mam_nucleus_config` ( `name` varchar(20) NOT NULL DEFAULT '', `value` varchar(128) DEFAULT NULL, PRIMARY KEY (`name`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `mam_nucleus_config` -- LOCK TABLES `mam_nucleus_config` WRITE; /*!40000 ALTER TABLE `mam_nucleus_config` DISABLE KEYS */; INSERT INTO `mam_nucleus_config` VALUES ('DefaultBlog','1'),('AdminEmail','mam@heimam.at'),('IndexURL','http://nucleus.mamweb.at/'),('Language','english'),('SessionCookie',''),('AllowMemberCreate',''),('AllowMemberMail','1'),('SiteName','mam\'s nucleus cms'),('AdminURL','http://nucleus.mamweb.at/nucleus/'),('NewMemberCanLogon','1'),('DisableSite',''),('DisableSiteURL','http://www.this-page-intentionally-left-blank.org/'),('LastVisit',''),('MediaURL','http://nucleus.mamweb.at/media/'),('AllowedTypes','jpg,jpeg,gif,mpg,mpeg,avi,mov,mp3,swf,png'),('AllowLoginEdit',''),('AllowUpload','1'),('DisableJsTools','2'),('CookiePath','/'),('CookieDomain',''),('CookieSecure',''),('CookiePrefix',''),('MediaPrefix','1'),('MaxUploadSize','1048576'),('NonmemberMail',''),('PluginURL','http://nucleus.mamweb.at/nucleus/plugins/'),('ProtectMemNames','1'),('BaseSkin','5'),('SkinsURL','http://nucleus.mamweb.at/skins/'),('ActionURL','http://nucleus.mamweb.at/action.php'),('URLMode','normal'),('DatabaseVersion','322'); /*!40000 ALTER TABLE `mam_nucleus_config` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `mam_nucleus_item` -- DROP TABLE IF EXISTS `mam_nucleus_item`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `mam_nucleus_item` ( `inumber` int(11) NOT NULL AUTO_INCREMENT, `ititle` varchar(160) DEFAULT NULL, `ibody` text NOT NULL, `imore` text, `iblog` int(11) NOT NULL DEFAULT '0', `iauthor` int(11) NOT NULL DEFAULT '0', `itime` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `iclosed` tinyint(2) NOT NULL DEFAULT '0', `idraft` tinyint(2) NOT NULL DEFAULT '0', `ikarmapos` int(11) NOT NULL DEFAULT '0', `icat` int(11) DEFAULT NULL, `ikarmaneg` int(11) NOT NULL DEFAULT '0', PRIMARY KEY (`inumber`), UNIQUE KEY `inumber` (`inumber`), KEY `itime` (`itime`), FULLTEXT KEY `ibody` (`ibody`,`ititle`,`imore`) ) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=latin1 PACK_KEYS=0; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `mam_nucleus_item` -- LOCK TABLES `mam_nucleus_item` WRITE; /*!40000 ALTER TABLE `mam_nucleus_item` DISABLE KEYS */; INSERT INTO `mam_nucleus_item` VALUES (1,'Welcome to Nucleus CMS v3.22','This is the first post on your Nucleus CMS. Nucleus offers you the building blocks you need to create a web presence. Whether you want to create a personal blog, a family page, or an online business site, Nucleus CMS can help you achieve your goals.
\r\n
\r\nWe\'ve loaded this first entry with links and information to get you started. Though you can delete this entry, it will eventually scroll off the main page as you add content to your site. Add your comments while you learn to work with Nucleus CMS, or bookmark this page so you can come back to it when you need to.','Home - nucleuscms.org
\r\nWelcome to the world of Nucleus CMS.
\r\n
\r\nIn 2001 a set of PHP scripts were let loose on the open Internet. Those scripts, which took user-generated data and used it to dynamically create html pages, contained the ideas and the algorithms that are the core of today’s Nucleus CMS. Though Nucleus CMS 3.2 is far more flexible and powerful than the scripts from which it emerged, it still expresses the values that guided its birth: flexibility, security, and computational elegance.
\r\n
\r\nThanks to an international community of sophisticated developers and designers, Nucleus CMS remains simple enough for anyone to learn, and expandable enough to allow you to build almost any website you can imagine. Nucleus CMS lets you integrate text, images, and user comments in a seamless package that will make your web presence as serious, professional, personal, or fun as you want it to be.
\r\n
\r\nWe hope you enjoy its power.
\r\n
\r\nDocumentation - docs.nucleuscms.org
\r\nVisit our frequently asked questions page for a quick overview.
\r\n
\r\nThe install process places user and developer documentation on the web server for your convenience.
\r\n
\r\nPop-up help is available throughout the administration area to assist you in maintaining and customizing your site. When in the Nucleus CMS admin area, click on this symbol \"help for context-sensitive help.
\r\n
\r\nOr, if you can’t find the answer you need, visit our community Wiki for user written tips and how-tos.
\r\n
\r\nSupport - forum.nucleuscms.org
\r\nShould you require assistance, please don\'t hesitate to join the 1800+ registered users on our forums. With its built-in search capability of the 28,000+ posted articles, your answers are just a few clicks away. Remember: almost any question you think of has already been asked on the forums, and almost anything you want to do with Nucleus has been tried and explained there. Be sure to check them out.
\r\n
\r\nThanks to all the volunteers at the support forums.
\r\nadmun - Ottawa, ON, Canada
\r\nanand - Bangalore, India
\r\nhcgtv - Miami, USA
\r\nikeizer - Maastricht
\r\nmoraes - Curitiba, Brazil
\r\nroel - Rotterdam, The Netherlands
\r\nTeRanEX - Ekeren, Antwerp, Belgium
\r\nTrent - Alberta, Canada
\r\nxiffy - Deventer
\r\n
\r\nPersonalization - skins.nucleuscms.org
\r\nThe combination of multi-weblogs and skins/templates make for a powerful duo in personalizing your site or designing one for a friend, relative or business client. Import new skins to change the look of your website, or create your own skins and share them with the Nucleus community! Help designing or modifying skins is only a few clicks away in the Nucleus forums.
\r\n
\r\nWhat’s possible with Nucleus CMS:
\r\n
\r\nNucleus CMS is used on over 700 registered sites. Here are some ideas to get you started thinking about what Nucleus CMS can do for you:
\r\n
\r\nPersonal blogs
\r\nstanch.net - Stanch\'s personal weblog
\r\nrakaz.nl - Rakaz\'s personal weblog
\r\nbeefcake.nl - Beefcake | Nuke the whales!
\r\nbloggard.com - The Adventures of Bloggard
\r\nsempermagis.be - Webvoer voor de digitale honger. Warm geserveerd
\r\n
\r\nCommunity blogs
\r\ntipos.com.br - Brazilian blogging community
\r\n
\r\nFamily pages
\r\nmaguire.trentadams.ca - Maguire Baby Journal
\r\nbaruchito.com - Baruchito\'s homeCage
\r\n
\r\nNews sites
\r\nprintculture.com - Politics, Culture, Academics
\r\namericandaily.com - American Daily - News & Commentary
\r\n
\r\nTravel sites
\r\nhsbluebird.com - Hot Springs, Montana\'s Online Resource
\r\ngroningen-info.de - Neues aus Groningen. Für Leute aus Duitsland.
\r\n
\r\nBusiness sites
\r\nadrenalinsports.nl - Adrenalin sports
\r\nc-nes.org - Centre for Northeast Studies and Policy Research (C-NES)
\r\n
\r\nNucleus Developer Network - dev.nucleuscms.org
\r\nThe NUDN is a hub for developer sites and programming resources.
\r\n
\r\nNUDN satellite sites, location and UTC offset:
\r\nkarma - Izegem +02
\r\nhcgtv - Miami -05
\r\nadmun - Ottawa -04
\r\nTeRanEX - Ekeren +02
\r\n
\r\nSourceforge.net graciously hosts our Open Source project page which contains our software downloads and CVS repository.
\r\n
\r\nWant to play around, test changes or tell a friend or relative about Nucleus CMS? Visit our live demo site.
\r\n
\r\nLooking to add some extra functionality to the base Nucleus CMS package? Our plugin repository gives you plenty of ways to extend and expand what Nucleus CMS can do; your imagination and creativity are the only limit on how Nucleus CMS can work for you.
\r\n
\r\nDonators
\r\nWe would like to thank these nice people for their support. Thanks all!
\r\n
\r\nLike Nucleus CMS? Vote for us at HotScripts and opensourceCMS.
\r\n
\r\nLicense
\r\nWhen we speak of free software, we are referring to freedom, not price. Our General Public Licenses are designed to make sure that you have the freedom to distribute copies of free software (and charge for this service if you wish), that you receive source code or can get it if you want it, that you can change the software or use pieces of it in new free programs; and that you know you can do these things.',1,1,'2006-06-05 18:00:15',0,0,0,1,0); /*!40000 ALTER TABLE `mam_nucleus_item` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `mam_nucleus_karma` -- DROP TABLE IF EXISTS `mam_nucleus_karma`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `mam_nucleus_karma` ( `itemid` int(11) NOT NULL DEFAULT '0', `ip` char(15) NOT NULL DEFAULT '' ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `mam_nucleus_karma` -- LOCK TABLES `mam_nucleus_karma` WRITE; /*!40000 ALTER TABLE `mam_nucleus_karma` DISABLE KEYS */; /*!40000 ALTER TABLE `mam_nucleus_karma` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `mam_nucleus_member` -- DROP TABLE IF EXISTS `mam_nucleus_member`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `mam_nucleus_member` ( `mnumber` int(11) NOT NULL AUTO_INCREMENT, `mname` varchar(16) NOT NULL DEFAULT '', `mrealname` varchar(60) DEFAULT NULL, `mpassword` varchar(40) NOT NULL DEFAULT '', `memail` varchar(60) DEFAULT NULL, `murl` varchar(100) DEFAULT NULL, `mnotes` varchar(100) DEFAULT NULL, `madmin` tinyint(2) NOT NULL DEFAULT '0', `mcanlogin` tinyint(2) NOT NULL DEFAULT '1', `mcookiekey` varchar(40) DEFAULT NULL, `deflang` varchar(20) NOT NULL DEFAULT '', PRIMARY KEY (`mnumber`), UNIQUE KEY `mname` (`mname`), UNIQUE KEY `mnumber` (`mnumber`) ) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `mam_nucleus_member` -- LOCK TABLES `mam_nucleus_member` WRITE; /*!40000 ALTER TABLE `mam_nucleus_member` DISABLE KEYS */; INSERT INTO `mam_nucleus_member` VALUES (1,'Admin','Markus A. Mascelli','5a9361b28ee51795f1e82d9054919034','mam@heimam.at','http://nucleus.mamweb.at/','',1,1,'54e2435fe9dc4832ac39a0fc98ec813d',''); /*!40000 ALTER TABLE `mam_nucleus_member` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `mam_nucleus_plugin` -- DROP TABLE IF EXISTS `mam_nucleus_plugin`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `mam_nucleus_plugin` ( `pid` int(11) NOT NULL AUTO_INCREMENT, `pfile` varchar(40) NOT NULL DEFAULT '', `porder` int(11) NOT NULL DEFAULT '0', PRIMARY KEY (`pid`), KEY `pid` (`pid`), KEY `porder` (`porder`) ) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `mam_nucleus_plugin` -- LOCK TABLES `mam_nucleus_plugin` WRITE; /*!40000 ALTER TABLE `mam_nucleus_plugin` DISABLE KEYS */; INSERT INTO `mam_nucleus_plugin` VALUES (1,'NP_SkinFiles',1); /*!40000 ALTER TABLE `mam_nucleus_plugin` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `mam_nucleus_plugin_event` -- DROP TABLE IF EXISTS `mam_nucleus_plugin_event`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `mam_nucleus_plugin_event` ( `pid` int(11) NOT NULL DEFAULT '0', `event` varchar(40) DEFAULT NULL, KEY `pid` (`pid`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `mam_nucleus_plugin_event` -- LOCK TABLES `mam_nucleus_plugin_event` WRITE; /*!40000 ALTER TABLE `mam_nucleus_plugin_event` DISABLE KEYS */; INSERT INTO `mam_nucleus_plugin_event` VALUES (1,'QuickMenu'); /*!40000 ALTER TABLE `mam_nucleus_plugin_event` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `mam_nucleus_plugin_option` -- DROP TABLE IF EXISTS `mam_nucleus_plugin_option`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `mam_nucleus_plugin_option` ( `ovalue` text NOT NULL, `oid` int(11) NOT NULL AUTO_INCREMENT, `ocontextid` int(11) NOT NULL DEFAULT '0', PRIMARY KEY (`oid`,`ocontextid`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `mam_nucleus_plugin_option` -- LOCK TABLES `mam_nucleus_plugin_option` WRITE; /*!40000 ALTER TABLE `mam_nucleus_plugin_option` DISABLE KEYS */; /*!40000 ALTER TABLE `mam_nucleus_plugin_option` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `mam_nucleus_plugin_option_desc` -- DROP TABLE IF EXISTS `mam_nucleus_plugin_option_desc`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `mam_nucleus_plugin_option_desc` ( `oid` int(11) NOT NULL AUTO_INCREMENT, `opid` int(11) NOT NULL DEFAULT '0', `oname` varchar(20) NOT NULL DEFAULT '', `ocontext` varchar(20) NOT NULL DEFAULT '', `odesc` varchar(255) DEFAULT NULL, `otype` varchar(20) DEFAULT NULL, `odef` text, `oextra` text, PRIMARY KEY (`opid`,`oname`,`ocontext`), UNIQUE KEY `oid` (`oid`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `mam_nucleus_plugin_option_desc` -- LOCK TABLES `mam_nucleus_plugin_option_desc` WRITE; /*!40000 ALTER TABLE `mam_nucleus_plugin_option_desc` DISABLE KEYS */; /*!40000 ALTER TABLE `mam_nucleus_plugin_option_desc` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `mam_nucleus_skin` -- DROP TABLE IF EXISTS `mam_nucleus_skin`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `mam_nucleus_skin` ( `sdesc` int(11) NOT NULL DEFAULT '0', `stype` varchar(20) NOT NULL DEFAULT '', `scontent` text NOT NULL, PRIMARY KEY (`sdesc`,`stype`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `mam_nucleus_skin` -- LOCK TABLES `mam_nucleus_skin` WRITE; /*!40000 ALTER TABLE `mam_nucleus_skin` DISABLE KEYS */; INSERT INTO `mam_nucleus_skin` VALUES (2,'index','\"?>\r\n\r\n <%blogsetting(name)%>\r\n \" />\r\n <%version%>\r\n <%blog(feeds/atom/modified,1)%>\r\n <%blog(feeds/atom/entries,10)%>\r\n'),(4,'index','\r\n\r\n \r\n <%version%>\r\n http://nucleuscms.org/\r\n <%sitevar(url)%>\r\n \r\n xmlrpc/server.php\" blogID=\"<%blogsetting(id)%>\">\r\n http://nucleuscms.org/documentation/devdocs/xmlrpc.html\r\n \r\n xmlrpc/server.php\" blogID=\"<%blogsetting(id)%>\">\r\n http://nucleuscms.org/documentation/devdocs/xmlrpc.html\r\n \r\n \r\n \r\n'),(3,'index','\"?>\r\n\r\n \r\n <%blogsetting(name)%>\r\n <%blogsetting(url)%>\r\n <%blogsetting(desc)%>\r\n en-us \r\n <%version%>\r\n © \r\n Weblog\r\n http://backend.userland.com/rss\r\n \r\n <%blogsetting(url)%>/nucleus/nucleus2.gif\r\n <%blogsetting(name)%>\r\n <%blogsetting(url)%>\r\n \r\n <%blog(feeds/rss20,10)%>\r\n \r\n'),(5,'archive','<%parsedinclude(head.inc)%>\n\n\n<%parsedinclude(header.inc)%>\n\n\n
\n
\n
\n

Archives

\n
\nYou are currently viewing archive for <%archivedate%>\n
\n
\n<%archive(default/index)%>\n
\n
\n\n\n

Sidebar

\n
\n<%parsedinclude(sidebar.inc)%>\n
\n\n\n<%parsedinclude(footer.inc)%>'),(5,'archivelist','<%parsedinclude(head.inc)%>\n\n\n<%parsedinclude(header.inc)%>\n\n\n
\n
\n
\n

Archives

\n
\n
\n
Monthly Archives
\n<%archivelist(default/index)%>\n
\n
\n
\n\n\n

Sidebar

\n
\n<%parsedinclude(sidebar.inc)%>\n
\n\n\n<%parsedinclude(footer.inc)%>'),(5,'error','<%parsedinclude(head.inc)%>\n\n\n<%parsedinclude(header.inc)%>\n\n\n
\n
\n
\n

Error!

\n
\n<%errormessage%>

\nGo back\n
\n
\n\n\n

Sidebar

\n
\n<%parsedinclude(sidebar.inc)%>\n
\n\n\n<%parsedinclude(footer.inc)%>'),(5,'imagepopup','\n\n\n\n<%imagetext%>\n\n\n\n\n\n<%image%>\n\n\n'),(5,'index','<%parsedinclude(head.inc)%>\n\n\n<%parsedinclude(header.inc)%>\n\n\n
\n
\n<%blog(default/index,10)%>\n
\n
\n\n\n

Sidebar

\n
\n<%parsedinclude(sidebar.inc)%>\n
\n\n\n<%parsedinclude(footer.inc)%>'),(5,'item','<%parsedinclude(head.inc)%>\n\n\n<%parsedinclude(header.inc)%>\n\n\n
\n
\n<%item(default/item)%>\n
\n
\n
\n

Comments

\n
\n\n<%comments(default/item)%>\n
\n
\n
\n

Add Comment

\n
\n<%commentform%>\n
\n
\n\n\n

Sidebar

\n
\n<%parsedinclude(sidebar.inc)%>\n
\n\n\n<%parsedinclude(footer.inc)%>'),(5,'member','<%parsedinclude(head.inc)%>\n\n\n<%parsedinclude(header.inc)%>\n\n\n
\n
\n
\n

Info about <%member(name)%>

\n
\nReal name: <%member(realname)%>\n

\nWebsite: \"><%member(url)%>\n
\n
\n
\n

Send message

\n
\n<%membermailform%>\n
\n
\n\n\n

Sidebar

\n
\n<%parsedinclude(sidebar.inc)%>\n
\n\n\n<%parsedinclude(footer.inc)%>'),(5,'search','<%parsedinclude(head.inc)%>\n\n\n<%parsedinclude(header.inc)%>\n\n\n
\n
\n
\n

Search Results

\n
\n<%searchform%>\n
\n
\n<%searchresults(default/index)%>\n
\n
\n\n\n

Sidebar

\n
\n<%parsedinclude(sidebar.inc)%>\n
\n\n\n<%parsedinclude(footer.inc)%>'); /*!40000 ALTER TABLE `mam_nucleus_skin` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `mam_nucleus_skin_desc` -- DROP TABLE IF EXISTS `mam_nucleus_skin_desc`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `mam_nucleus_skin_desc` ( `sdnumber` int(11) NOT NULL AUTO_INCREMENT, `sdname` varchar(20) NOT NULL DEFAULT '', `sddesc` varchar(200) DEFAULT NULL, `sdtype` varchar(40) NOT NULL DEFAULT 'text/html', `sdincmode` varchar(10) NOT NULL DEFAULT 'normal', `sdincpref` varchar(50) NOT NULL DEFAULT '', PRIMARY KEY (`sdnumber`), UNIQUE KEY `sdname` (`sdname`), UNIQUE KEY `sdnumber` (`sdnumber`) ) ENGINE=MyISAM AUTO_INCREMENT=6 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `mam_nucleus_skin_desc` -- LOCK TABLES `mam_nucleus_skin_desc` WRITE; /*!40000 ALTER TABLE `mam_nucleus_skin_desc` DISABLE KEYS */; INSERT INTO `mam_nucleus_skin_desc` VALUES (2,'feeds/atom','Atom 0.3 weblog syndication','application/atom+xml','normal',''),(3,'feeds/rss20','RSS 2.0 syndication of weblogs','text/xml','normal',''),(4,'xml/rsd','RSD (Really Simple Discovery) information for weblog clients','text/xml','normal',''),(5,'default','Nucleus CMS default skin','text/html','skindir','default/'); /*!40000 ALTER TABLE `mam_nucleus_skin_desc` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `mam_nucleus_team` -- DROP TABLE IF EXISTS `mam_nucleus_team`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `mam_nucleus_team` ( `tmember` int(11) NOT NULL DEFAULT '0', `tblog` int(11) NOT NULL DEFAULT '0', `tadmin` tinyint(2) NOT NULL DEFAULT '0', PRIMARY KEY (`tmember`,`tblog`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `mam_nucleus_team` -- LOCK TABLES `mam_nucleus_team` WRITE; /*!40000 ALTER TABLE `mam_nucleus_team` DISABLE KEYS */; INSERT INTO `mam_nucleus_team` VALUES (1,1,1); /*!40000 ALTER TABLE `mam_nucleus_team` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `mam_nucleus_template` -- DROP TABLE IF EXISTS `mam_nucleus_template`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `mam_nucleus_template` ( `tdesc` int(11) NOT NULL DEFAULT '0', `tpartname` varchar(20) NOT NULL DEFAULT '', `tcontent` text NOT NULL, PRIMARY KEY (`tdesc`,`tpartname`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `mam_nucleus_template` -- LOCK TABLES `mam_nucleus_template` WRITE; /*!40000 ALTER TABLE `mam_nucleus_template` DISABLE KEYS */; INSERT INTO `mam_nucleus_template` VALUES (3,'ITEM','\r\n <%title(xml)%>\r\n <%blogurl%>index.php?itemid=<%itemid%>\r\n<%more%>]]>\r\n <%category%>\r\n<%blogurl%>index.php?itemid=<%itemid%>\r\n <%date(rfc822)%>\r\n'),(3,'EDITLINK','\" onclick=\"<%editpopupcode%>\">edit'),(3,'FORMAT_DATE','%x'),(3,'FORMAT_TIME','%X'),(4,'ITEM','<%date(utc)%>'),(5,'ITEM','\r\n <![CDATA[<%title%>]]>\r\n index.php?itemid=<%itemid%>\" />\r\n \r\n <%author%>\r\n \r\n <%date(utc)%>\r\n <%date(iso8601)%>\r\n <%more%>]]>\r\n <%blogurl%>:<%blogid%>:<%itemid%>\r\n'),(5,'POPUP_CODE','<%image%>'),(5,'MEDIA_CODE','<%media%>'),(5,'IMAGE_CODE','<%media%>'),(3,'POPUP_CODE','<%image%>'),(3,'MEDIA_CODE','<%media%>'),(3,'IMAGE_CODE','<%media%>'),(8,'ARCHIVELIST_LISTITEM','
\n\" title=\"Archive for %B, %Y\">%B, %Y\n
'),(8,'CATLIST_HEADER','
\n\" title=\"All categories\">All\n
'),(8,'CATLIST_LISTITEM','
\n\" title=\"Category: <%catname%>\"><%catname%>\n
'),(8,'COMMENTS_MANY','Comments'),(8,'COMMENTS_NONE',''),(8,'COMMENTS_ONE','Comment'),(8,'COMMENTS_TOOMUCH',''),(8,'EDITLINK',''),(8,'FORMAT_DATE','%d/%m'),(8,'FORMAT_TIME','%X'),(8,'IMAGE_CODE','<%image%>'),(8,'ITEM','\n
\n\n\n<%comments%>\n<%edit%>\n
\n
\n<%body%>\n<%morelink%>\n
'),(8,'LOCALE','en'),(8,'MEDIA_CODE','<%media%>'),(8,'MORELINK','

»\n#more\" title=\"Read more on '<%title(attribute)%>'\">Read More\n

'),(8,'POPUP_CODE','<%popuplink%>'),(8,'SEARCH_HIGHLIGHT','\\0'),(8,'SEARCH_NOTHINGFOUND','No search results found for <%query%>'),(9,'COMMENTS_BODY',''),(9,'COMMENTS_MANY','comments'),(9,'COMMENTS_NONE','
No comments yet
'),(9,'COMMENTS_ONE','comment'),(9,'EDITLINK',''),(9,'FORMAT_DATE','%d/%m'),(9,'FORMAT_TIME','%X'),(9,'IMAGE_CODE','<%image%>'),(9,'ITEM','
\n

<%date%>: <%title(raw)%>

\n
\n\n
\n<%body%>

\n<%more%>\n
'),(9,'LOCALE','en'),(9,'MEDIA_CODE','<%media%>'),(9,'POPUP_CODE','<%popuplink%>'),(9,'SEARCH_HIGHLIGHT','\\0'); /*!40000 ALTER TABLE `mam_nucleus_template` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `mam_nucleus_template_desc` -- DROP TABLE IF EXISTS `mam_nucleus_template_desc`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `mam_nucleus_template_desc` ( `tdnumber` int(11) NOT NULL AUTO_INCREMENT, `tdname` varchar(20) NOT NULL DEFAULT '', `tddesc` varchar(200) DEFAULT NULL, PRIMARY KEY (`tdnumber`), UNIQUE KEY `tdnumber` (`tdnumber`), UNIQUE KEY `tdname` (`tdname`) ) ENGINE=MyISAM AUTO_INCREMENT=10 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `mam_nucleus_template_desc` -- LOCK TABLES `mam_nucleus_template_desc` WRITE; /*!40000 ALTER TABLE `mam_nucleus_template_desc` DISABLE KEYS */; INSERT INTO `mam_nucleus_template_desc` VALUES (4,'feeds/atom/modified','Atom feeds: Inserts last modification date'),(5,'feeds/atom/entries','Atom feeds: Feed items'),(3,'feeds/rss20','Used for RSS 2.0 syndication of your blog'),(8,'default/index','Nucleus CMS default index template'),(9,'default/item','Nucleus CMS default item template'); /*!40000 ALTER TABLE `mam_nucleus_template_desc` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `mam_nucleus_tickets` -- DROP TABLE IF EXISTS `mam_nucleus_tickets`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `mam_nucleus_tickets` ( `ticket` varchar(40) NOT NULL DEFAULT '', `ctime` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `member` int(11) NOT NULL DEFAULT '0', PRIMARY KEY (`ticket`,`member`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `mam_nucleus_tickets` -- LOCK TABLES `mam_nucleus_tickets` WRITE; /*!40000 ALTER TABLE `mam_nucleus_tickets` DISABLE KEYS */; INSERT INTO `mam_nucleus_tickets` VALUES ('ce7d455077dd052c7a8b1f9ab27085a6','2006-10-29 10:43:29',1),('9f6301c33b471ad4642ce76c04da13e4','2006-10-29 10:43:48',1); /*!40000 ALTER TABLE `mam_nucleus_tickets` ENABLE KEYS */; UNLOCK TABLES; -- -- Current Database: `philer` -- CREATE DATABASE /*!32312 IF NOT EXISTS*/ `philer` /*!40100 DEFAULT CHARACTER SET latin1 */; USE `philer`; -- -- Table structure for table `f_file_rel` -- DROP TABLE IF EXISTS `f_file_rel`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `f_file_rel` ( `id_file` int(6) NOT NULL DEFAULT '0', `id_group` int(6) NOT NULL DEFAULT '0', KEY `id_file` (`id_file`), KEY `id_group` (`id_group`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `f_file_rel` -- LOCK TABLES `f_file_rel` WRITE; /*!40000 ALTER TABLE `f_file_rel` DISABLE KEYS */; /*!40000 ALTER TABLE `f_file_rel` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `f_files` -- DROP TABLE IF EXISTS `f_files`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `f_files` ( `id` int(6) NOT NULL AUTO_INCREMENT, `filename` varchar(64) NOT NULL DEFAULT '', `type` varchar(64) NOT NULL DEFAULT '', `cdate` date NOT NULL DEFAULT '0000-00-00', `dl` int(64) NOT NULL DEFAULT '0', `size` int(24) NOT NULL DEFAULT '0', `note` text, `parent` int(4) NOT NULL DEFAULT '0', PRIMARY KEY (`id`), UNIQUE KEY `id` (`id`), KEY `filename` (`filename`) ) ENGINE=MyISAM AUTO_INCREMENT=23 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `f_files` -- LOCK TABLES `f_files` WRITE; /*!40000 ALTER TABLE `f_files` DISABLE KEYS */; INSERT INTO `f_files` VALUES (22,'heimam','d','2007-02-28',0,0,'Directory heimam',0); /*!40000 ALTER TABLE `f_files` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `f_groups` -- DROP TABLE IF EXISTS `f_groups`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `f_groups` ( `id` int(6) NOT NULL AUTO_INCREMENT, `groupname` varchar(64) NOT NULL DEFAULT '', `cdate` date NOT NULL DEFAULT '0000-00-00', `note` text, `valid` int(1) NOT NULL DEFAULT '0', PRIMARY KEY (`id`), UNIQUE KEY `groupname` (`groupname`), UNIQUE KEY `id` (`id`), KEY `groups` (`groupname`) ) ENGINE=MyISAM AUTO_INCREMENT=4 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `f_groups` -- LOCK TABLES `f_groups` WRITE; /*!40000 ALTER TABLE `f_groups` DISABLE KEYS */; INSERT INTO `f_groups` VALUES (3,'heiMAM','2007-02-28','',1); /*!40000 ALTER TABLE `f_groups` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `f_user_rel` -- DROP TABLE IF EXISTS `f_user_rel`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `f_user_rel` ( `id_user` int(6) NOT NULL DEFAULT '0', `id_group` int(6) NOT NULL DEFAULT '0', UNIQUE KEY `id_user` (`id_user`,`id_group`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `f_user_rel` -- LOCK TABLES `f_user_rel` WRITE; /*!40000 ALTER TABLE `f_user_rel` DISABLE KEYS */; INSERT INTO `f_user_rel` VALUES (8,3); /*!40000 ALTER TABLE `f_user_rel` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `f_users` -- DROP TABLE IF EXISTS `f_users`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `f_users` ( `id` int(6) NOT NULL AUTO_INCREMENT, `username` varchar(64) NOT NULL DEFAULT '', `password` varchar(64) NOT NULL DEFAULT '', `email` varchar(64) NOT NULL DEFAULT '', `cdate` date NOT NULL DEFAULT '0000-00-00', `notes` text, `valid` int(1) NOT NULL DEFAULT '0', PRIMARY KEY (`id`), UNIQUE KEY `id` (`id`), KEY `username` (`username`) ) ENGINE=MyISAM AUTO_INCREMENT=9 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `f_users` -- LOCK TABLES `f_users` WRITE; /*!40000 ALTER TABLE `f_users` DISABLE KEYS */; INSERT INTO `f_users` VALUES (8,'mam','mscmks','mam@heimam.at','2007-02-28','',1); /*!40000 ALTER TABLE `f_users` ENABLE KEYS */; UNLOCK TABLES; -- -- Current Database: `serendipity_mamblog` -- CREATE DATABASE /*!32312 IF NOT EXISTS*/ `serendipity_mamblog` /*!40100 DEFAULT CHARACTER SET latin1 */; USE `serendipity_mamblog`; -- -- Table structure for table `mamblog_access` -- DROP TABLE IF EXISTS `mamblog_access`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `mamblog_access` ( `groupid` int(10) unsigned NOT NULL DEFAULT '0', `artifact_id` int(10) unsigned NOT NULL DEFAULT '0', `artifact_type` varchar(64) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', `artifact_mode` varchar(64) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', `artifact_index` varchar(64) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', KEY `accessgroup_idx` (`groupid`), KEY `accessgroupT_idx` (`artifact_id`,`artifact_type`,`artifact_mode`), KEY `accessforeign_idx` (`artifact_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `mamblog_access` -- LOCK TABLES `mamblog_access` WRITE; /*!40000 ALTER TABLE `mamblog_access` DISABLE KEYS */; /*!40000 ALTER TABLE `mamblog_access` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `mamblog_authorgroups` -- DROP TABLE IF EXISTS `mamblog_authorgroups`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `mamblog_authorgroups` ( `groupid` int(10) unsigned NOT NULL DEFAULT '0', `authorid` int(10) unsigned NOT NULL DEFAULT '0', KEY `authorgroup_idxA` (`groupid`), KEY `authorgroup_idxB` (`authorid`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `mamblog_authorgroups` -- LOCK TABLES `mamblog_authorgroups` WRITE; /*!40000 ALTER TABLE `mamblog_authorgroups` DISABLE KEYS */; INSERT INTO `mamblog_authorgroups` VALUES (3,1); /*!40000 ALTER TABLE `mamblog_authorgroups` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `mamblog_authors` -- DROP TABLE IF EXISTS `mamblog_authors`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `mamblog_authors` ( `realname` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', `username` varchar(20) COLLATE utf8_unicode_ci DEFAULT NULL, `password` varchar(32) COLLATE utf8_unicode_ci DEFAULT NULL, `authorid` int(11) NOT NULL AUTO_INCREMENT, `mail_comments` int(1) DEFAULT '1', `mail_trackbacks` int(1) DEFAULT '1', `email` varchar(128) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', `userlevel` int(4) unsigned NOT NULL DEFAULT '0', `right_publish` int(1) DEFAULT '1', PRIMARY KEY (`authorid`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `mamblog_authors` -- LOCK TABLES `mamblog_authors` WRITE; /*!40000 ALTER TABLE `mamblog_authors` DISABLE KEYS */; INSERT INTO `mamblog_authors` VALUES ('Markus A. Mascelli','admin','5a9361b28ee51795f1e82d9054919034',1,1,1,'mam@heimam.at',255,1); /*!40000 ALTER TABLE `mamblog_authors` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `mamblog_category` -- DROP TABLE IF EXISTS `mamblog_category`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `mamblog_category` ( `categoryid` int(11) NOT NULL AUTO_INCREMENT, `category_name` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, `category_icon` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, `category_description` text COLLATE utf8_unicode_ci, `authorid` int(11) DEFAULT NULL, `category_left` int(11) DEFAULT '0', `category_right` int(11) DEFAULT '0', `parentid` int(11) NOT NULL DEFAULT '0', PRIMARY KEY (`categoryid`), KEY `categorya_idx` (`authorid`), KEY `categoryp_idx` (`parentid`), KEY `categorylr_idx` (`category_left`,`category_right`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `mamblog_category` -- LOCK TABLES `mamblog_category` WRITE; /*!40000 ALTER TABLE `mamblog_category` DISABLE KEYS */; /*!40000 ALTER TABLE `mamblog_category` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `mamblog_comments` -- DROP TABLE IF EXISTS `mamblog_comments`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `mamblog_comments` ( `id` int(11) NOT NULL AUTO_INCREMENT, `entry_id` int(10) unsigned NOT NULL DEFAULT '0', `parent_id` int(10) unsigned NOT NULL DEFAULT '0', `timestamp` int(10) unsigned DEFAULT NULL, `title` varchar(150) COLLATE utf8_unicode_ci DEFAULT NULL, `author` varchar(80) COLLATE utf8_unicode_ci DEFAULT NULL, `email` varchar(200) COLLATE utf8_unicode_ci DEFAULT NULL, `url` varchar(200) COLLATE utf8_unicode_ci DEFAULT NULL, `ip` varchar(15) COLLATE utf8_unicode_ci DEFAULT NULL, `body` text COLLATE utf8_unicode_ci, `type` varchar(100) COLLATE utf8_unicode_ci DEFAULT 'regular', `subscribed` enum('true','false') COLLATE utf8_unicode_ci NOT NULL DEFAULT 'true', `status` varchar(50) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', `referer` varchar(200) COLLATE utf8_unicode_ci DEFAULT NULL, PRIMARY KEY (`id`), KEY `commentry_idx` (`entry_id`), KEY `commpentry_idx` (`parent_id`), KEY `commtype_idx` (`type`), KEY `commstat_idx` (`status`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `mamblog_comments` -- LOCK TABLES `mamblog_comments` WRITE; /*!40000 ALTER TABLE `mamblog_comments` DISABLE KEYS */; /*!40000 ALTER TABLE `mamblog_comments` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `mamblog_config` -- DROP TABLE IF EXISTS `mamblog_config`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `mamblog_config` ( `name` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', `value` text COLLATE utf8_unicode_ci NOT NULL, `authorid` int(11) DEFAULT '0', KEY `configauthorid_idx` (`authorid`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `mamblog_config` -- LOCK TABLES `mamblog_config` WRITE; /*!40000 ALTER TABLE `mamblog_config` DISABLE KEYS */; INSERT INTO `mamblog_config` VALUES ('template','default',0),('serendipityPath','C:/Program Files (x86)/Apache Software Foundation/Apache2.2/htdocs/mamBLOG/',0),('uploadPath','uploads/',0),('serendipityHTTPPath','/',0),('templatePath','templates/',0),('uploadHTTPPath','uploads/',0),('baseURL','http://mamblog.mamweb.at/',0),('autodetect_baseURL','false',0),('indexFile','index.php',0),('permalinkStructure','archives/%id%-%title%.html',0),('permalinkAuthorStructure','authors/%id%-%realname%',0),('permalinkCategoryStructure','categories/%id%-%name%',0),('permalinkFeedCategoryStructure','feeds/categories/%id%-%name%.rss',0),('permalinkFeedAuthorStructure','feeds/authors/%id%-%realname%.rss',0),('permalinkArchivesPath','archives',0),('permalinkArchivePath','archive',0),('permalinkCategoriesPath','categories',0),('permalinkAuthorsPath','authors',0),('permalinkUnsubscribePath','unsubscribe',0),('permalinkDeletePath','delete',0),('permalinkApprovePath','approve',0),('permalinkFeedsPath','feeds',0),('permalinkPluginPath','plugin',0),('permalinkAdminPath','admin',0),('permalinkSearchPath','search',0),('allowSubscriptions','true',0),('blogTitle','mamBLOG',0),('blogDescription','blog as blog can',0),('blogMail','',0),('lang','de',0),('charset','UTF-8/',0),('calendar','gregorian',0),('lang_content_negotiation','false',0),('fetchLimit','15',0),('useGzip','false',0),('wysiwyg','',0),('XHTML11','false',0),('enablePopup','false',0),('embed','false',0),('top_as_links','false',0),('blockReferer',';',0),('rewrite','none',0),('serverOffsetHours','0',0),('showFutureEntries','false',0),('enableACL','true',0),('magick','false',0),('convert','C:\\\\WINDOWS\\\\system32/convert.exe',0),('thumbSuffix','serendipityThumb',0),('thumbSize','110',0); /*!40000 ALTER TABLE `mamblog_config` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `mamblog_entries` -- DROP TABLE IF EXISTS `mamblog_entries`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `mamblog_entries` ( `id` int(11) NOT NULL AUTO_INCREMENT, `title` varchar(200) COLLATE utf8_unicode_ci DEFAULT NULL, `timestamp` int(10) unsigned DEFAULT NULL, `body` text COLLATE utf8_unicode_ci, `comments` int(4) unsigned DEFAULT '0', `trackbacks` int(4) unsigned DEFAULT '0', `extended` text COLLATE utf8_unicode_ci, `exflag` int(1) DEFAULT NULL, `author` varchar(20) COLLATE utf8_unicode_ci DEFAULT NULL, `authorid` int(11) DEFAULT NULL, `isdraft` enum('true','false') COLLATE utf8_unicode_ci NOT NULL DEFAULT 'true', `allow_comments` enum('true','false') COLLATE utf8_unicode_ci NOT NULL DEFAULT 'true', `last_modified` int(10) unsigned DEFAULT NULL, `moderate_comments` enum('true','false') COLLATE utf8_unicode_ci NOT NULL DEFAULT 'true', PRIMARY KEY (`id`), KEY `date_idx` (`timestamp`), KEY `mod_idx` (`last_modified`), KEY `edraft_idx` (`isdraft`), KEY `eauthor_idx` (`authorid`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `mamblog_entries` -- LOCK TABLES `mamblog_entries` WRITE; /*!40000 ALTER TABLE `mamblog_entries` DISABLE KEYS */; /*!40000 ALTER TABLE `mamblog_entries` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `mamblog_entrycat` -- DROP TABLE IF EXISTS `mamblog_entrycat`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `mamblog_entrycat` ( `entryid` int(11) NOT NULL DEFAULT '0', `categoryid` int(11) NOT NULL DEFAULT '0', UNIQUE KEY `entryid_idx` (`entryid`,`categoryid`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `mamblog_entrycat` -- LOCK TABLES `mamblog_entrycat` WRITE; /*!40000 ALTER TABLE `mamblog_entrycat` DISABLE KEYS */; /*!40000 ALTER TABLE `mamblog_entrycat` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `mamblog_entryproperties` -- DROP TABLE IF EXISTS `mamblog_entryproperties`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `mamblog_entryproperties` ( `entryid` int(11) NOT NULL DEFAULT '0', `property` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', `value` text COLLATE utf8_unicode_ci, UNIQUE KEY `prop_idx` (`entryid`,`property`), KEY `entrypropid_idx` (`entryid`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `mamblog_entryproperties` -- LOCK TABLES `mamblog_entryproperties` WRITE; /*!40000 ALTER TABLE `mamblog_entryproperties` DISABLE KEYS */; /*!40000 ALTER TABLE `mamblog_entryproperties` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `mamblog_exits` -- DROP TABLE IF EXISTS `mamblog_exits`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `mamblog_exits` ( `entry_id` int(11) NOT NULL DEFAULT '0', `day` date NOT NULL DEFAULT '0000-00-00', `count` int(11) NOT NULL DEFAULT '0', `scheme` varchar(5) COLLATE utf8_unicode_ci DEFAULT NULL, `host` varchar(128) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', `port` varchar(5) COLLATE utf8_unicode_ci DEFAULT NULL, `path` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, `query` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, PRIMARY KEY (`host`,`day`,`entry_id`), KEY `exits_idx` (`entry_id`,`day`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `mamblog_exits` -- LOCK TABLES `mamblog_exits` WRITE; /*!40000 ALTER TABLE `mamblog_exits` DISABLE KEYS */; /*!40000 ALTER TABLE `mamblog_exits` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `mamblog_groupconfig` -- DROP TABLE IF EXISTS `mamblog_groupconfig`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `mamblog_groupconfig` ( `id` int(10) unsigned NOT NULL DEFAULT '0', `property` varchar(64) COLLATE utf8_unicode_ci DEFAULT NULL, `value` varchar(128) COLLATE utf8_unicode_ci DEFAULT NULL, KEY `groupid_idx` (`id`), KEY `groupprop_idx` (`id`,`property`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `mamblog_groupconfig` -- LOCK TABLES `mamblog_groupconfig` WRITE; /*!40000 ALTER TABLE `mamblog_groupconfig` DISABLE KEYS */; INSERT INTO `mamblog_groupconfig` VALUES (1,'userlevel','0'),(1,'personalConfiguration','true'),(1,'personalConfigurationUserlevel','false'),(1,'personalConfigurationNoCreate','false'),(1,'personalConfigurationRightPublish','false'),(1,'siteConfiguration','false'),(1,'blogConfiguration','false'),(1,'adminEntries','true'),(1,'adminEntriesMaintainOthers','false'),(1,'adminImport','false'),(1,'adminCategories','true'),(1,'adminCategoriesMaintainOthers','false'),(1,'adminCategoriesDelete','false'),(1,'adminUsers','false'),(1,'adminUsersDelete','false'),(1,'adminUsersEditUserlevel','false'),(1,'adminUsersMaintainSame','false'),(1,'adminUsersMaintainOthers','false'),(1,'adminUsersCreateNew','false'),(1,'adminUsersGroups','false'),(1,'adminPlugins','false'),(1,'adminPluginsMaintainOthers','false'),(1,'adminImages','true'),(1,'adminImagesDirectories','false'),(1,'adminImagesAdd','true'),(1,'adminImagesDelete','true'),(1,'adminImagesMaintainOthers','false'),(1,'adminImagesViewOthers','true'),(1,'adminImagesView','true'),(1,'adminImagesSync','false'),(1,'adminComments','false'),(1,'adminTemplates','false'),(2,'userlevel','1'),(2,'personalConfiguration','true'),(2,'personalConfigurationUserlevel','true'),(2,'personalConfigurationNoCreate','true'),(2,'personalConfigurationRightPublish','true'),(2,'siteConfiguration','false'),(2,'blogConfiguration','true'),(2,'adminEntries','true'),(2,'adminEntriesMaintainOthers','true'),(2,'adminImport','true'),(2,'adminCategories','true'),(2,'adminCategoriesMaintainOthers','true'),(2,'adminCategoriesDelete','true'),(2,'adminUsers','true'),(2,'adminUsersDelete','true'),(2,'adminUsersEditUserlevel','true'),(2,'adminUsersMaintainSame','true'),(2,'adminUsersMaintainOthers','false'),(2,'adminUsersCreateNew','true'),(2,'adminUsersGroups','true'),(2,'adminPlugins','true'),(2,'adminPluginsMaintainOthers','false'),(2,'adminImages','true'),(2,'adminImagesDirectories','true'),(2,'adminImagesAdd','true'),(2,'adminImagesDelete','true'),(2,'adminImagesMaintainOthers','true'),(2,'adminImagesViewOthers','true'),(2,'adminImagesView','true'),(2,'adminImagesSync','true'),(2,'adminComments','true'),(2,'adminTemplates','true'),(3,'userlevel','255'),(3,'personalConfiguration','true'),(3,'personalConfigurationUserlevel','true'),(3,'personalConfigurationNoCreate','true'),(3,'personalConfigurationRightPublish','true'),(3,'siteConfiguration','true'),(3,'blogConfiguration','true'),(3,'adminEntries','true'),(3,'adminEntriesMaintainOthers','true'),(3,'adminImport','true'),(3,'adminCategories','true'),(3,'adminCategoriesMaintainOthers','true'),(3,'adminCategoriesDelete','true'),(3,'adminUsers','true'),(3,'adminUsersDelete','true'),(3,'adminUsersEditUserlevel','true'),(3,'adminUsersMaintainSame','true'),(3,'adminUsersMaintainOthers','true'),(3,'adminUsersCreateNew','true'),(3,'adminUsersGroups','true'),(3,'adminPlugins','true'),(3,'adminPluginsMaintainOthers','true'),(3,'adminImages','true'),(3,'adminImagesDirectories','true'),(3,'adminImagesAdd','true'),(3,'adminImagesDelete','true'),(3,'adminImagesMaintainOthers','true'),(3,'adminImagesViewOthers','true'),(3,'adminImagesView','true'),(3,'adminImagesSync','true'),(3,'adminComments','true'),(3,'adminTemplates','true'); /*!40000 ALTER TABLE `mamblog_groupconfig` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `mamblog_groups` -- DROP TABLE IF EXISTS `mamblog_groups`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `mamblog_groups` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(64) COLLATE utf8_unicode_ci DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `mamblog_groups` -- LOCK TABLES `mamblog_groups` WRITE; /*!40000 ALTER TABLE `mamblog_groups` DISABLE KEYS */; INSERT INTO `mamblog_groups` VALUES (1,'USERLEVEL_EDITOR_DESC'),(2,'USERLEVEL_CHIEF_DESC'),(3,'USERLEVEL_ADMIN_DESC'); /*!40000 ALTER TABLE `mamblog_groups` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `mamblog_images` -- DROP TABLE IF EXISTS `mamblog_images`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `mamblog_images` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', `extension` varchar(5) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', `mime` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', `size` int(11) NOT NULL DEFAULT '0', `dimensions_width` int(11) NOT NULL DEFAULT '0', `dimensions_height` int(11) NOT NULL DEFAULT '0', `date` int(11) NOT NULL DEFAULT '0', `thumbnail_name` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', `authorid` int(11) DEFAULT '0', `path` text COLLATE utf8_unicode_ci, `hotlink` int(1) DEFAULT NULL, PRIMARY KEY (`id`), KEY `imagesauthorid_idx` (`authorid`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `mamblog_images` -- LOCK TABLES `mamblog_images` WRITE; /*!40000 ALTER TABLE `mamblog_images` DISABLE KEYS */; /*!40000 ALTER TABLE `mamblog_images` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `mamblog_permalinks` -- DROP TABLE IF EXISTS `mamblog_permalinks`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `mamblog_permalinks` ( `permalink` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', `entry_id` int(10) unsigned NOT NULL DEFAULT '0', `type` varchar(200) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', `data` text COLLATE utf8_unicode_ci, KEY `pl_idx` (`permalink`), KEY `ple_idx` (`entry_id`), KEY `plt_idx` (`type`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `mamblog_permalinks` -- LOCK TABLES `mamblog_permalinks` WRITE; /*!40000 ALTER TABLE `mamblog_permalinks` DISABLE KEYS */; INSERT INTO `mamblog_permalinks` VALUES ('authors/1-Markus-A.-Mascelli',1,'author',NULL); /*!40000 ALTER TABLE `mamblog_permalinks` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `mamblog_plugincategories` -- DROP TABLE IF EXISTS `mamblog_plugincategories`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `mamblog_plugincategories` ( `class_name` varchar(250) COLLATE utf8_unicode_ci DEFAULT NULL, `category` varchar(250) COLLATE utf8_unicode_ci DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `mamblog_plugincategories` -- LOCK TABLES `mamblog_plugincategories` WRITE; /*!40000 ALTER TABLE `mamblog_plugincategories` DISABLE KEYS */; /*!40000 ALTER TABLE `mamblog_plugincategories` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `mamblog_pluginlist` -- DROP TABLE IF EXISTS `mamblog_pluginlist`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `mamblog_pluginlist` ( `plugin_file` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', `class_name` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', `plugin_class` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', `pluginPath` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', `name` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', `description` text COLLATE utf8_unicode_ci NOT NULL, `version` varchar(12) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', `upgrade_version` varchar(12) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', `plugintype` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', `pluginlocation` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', `stackable` int(1) NOT NULL DEFAULT '0', `author` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', `requirements` text COLLATE utf8_unicode_ci NOT NULL, `website` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', `last_modified` int(11) NOT NULL DEFAULT '0', KEY `pluginlist_f_idx` (`plugin_file`), KEY `pluginlist_cn_idx` (`class_name`), KEY `pluginlist_pt_idx` (`plugintype`), KEY `pluginlist_pl_idx` (`pluginlocation`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `mamblog_pluginlist` -- LOCK TABLES `mamblog_pluginlist` WRITE; /*!40000 ALTER TABLE `mamblog_pluginlist` DISABLE KEYS */; /*!40000 ALTER TABLE `mamblog_pluginlist` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `mamblog_plugins` -- DROP TABLE IF EXISTS `mamblog_plugins`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `mamblog_plugins` ( `name` varchar(128) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', `placement` varchar(6) COLLATE utf8_unicode_ci NOT NULL DEFAULT 'right', `sort_order` int(4) NOT NULL DEFAULT '0', `authorid` int(11) DEFAULT '0', `path` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, PRIMARY KEY (`name`), KEY `pluginauthorid_idx` (`authorid`), KEY `pluginplace_idx` (`placement`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `mamblog_plugins` -- LOCK TABLES `mamblog_plugins` WRITE; /*!40000 ALTER TABLE `mamblog_plugins` DISABLE KEYS */; INSERT INTO `mamblog_plugins` VALUES ('@serendipity_archives_plugin:07aeab31227f5445fd9632c338573477','right',3,0,''),('@serendipity_calendar_plugin:1c661b8bf75618917249327bf9cb0d2f','right',1,0,''),('@serendipity_categories_plugin:bc070b3fefa6febc8a02a2e126f775d9','right',4,0,''),('@serendipity_plug_plugin:efab4961c19dde9d4e9ec5825524570d','right',7,0,''),('@serendipity_quicksearch_plugin:5208c3b43db2b45e4a9c0d1c29376959','right',2,0,''),('@serendipity_superuser_plugin:d28f55f0d5d992ff3ee988ef4c8f2ce2','right',6,0,''),('@serendipity_syndication_plugin:07bf83f9770999071669834599d882a4','right',5,0,''),('serendipity_event_browsercompatibility:3489ebd55c7eaf550b836562d0ec5ed1','event',4,0,''),('serendipity_event_emoticate:ddc264a1da49fad68471e2fd639c19dc','event',2,0,''),('serendipity_event_nl2br:d1b93e8253766b17329dd5402db6c635','event',3,0,''),('serendipity_event_s9ymarkup:1c156f243d04437ca868374e2b0dd858','event',1,0,''),('serendipity_event_spamblock:b5501d1ac6366435c8ff8654941257ec','event',5,0,''); /*!40000 ALTER TABLE `mamblog_plugins` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `mamblog_references` -- DROP TABLE IF EXISTS `mamblog_references`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `mamblog_references` ( `id` int(11) NOT NULL AUTO_INCREMENT, `entry_id` int(10) unsigned NOT NULL DEFAULT '0', `link` text COLLATE utf8_unicode_ci, `name` text COLLATE utf8_unicode_ci, PRIMARY KEY (`id`), KEY `refentry_idx` (`entry_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `mamblog_references` -- LOCK TABLES `mamblog_references` WRITE; /*!40000 ALTER TABLE `mamblog_references` DISABLE KEYS */; /*!40000 ALTER TABLE `mamblog_references` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `mamblog_referrers` -- DROP TABLE IF EXISTS `mamblog_referrers`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `mamblog_referrers` ( `entry_id` int(11) NOT NULL DEFAULT '0', `day` date NOT NULL DEFAULT '0000-00-00', `count` int(11) NOT NULL DEFAULT '0', `scheme` varchar(5) COLLATE utf8_unicode_ci DEFAULT NULL, `host` varchar(128) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', `port` varchar(5) COLLATE utf8_unicode_ci DEFAULT NULL, `path` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, `query` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, PRIMARY KEY (`host`,`day`,`entry_id`), KEY `referrers_idx` (`entry_id`,`day`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `mamblog_referrers` -- LOCK TABLES `mamblog_referrers` WRITE; /*!40000 ALTER TABLE `mamblog_referrers` DISABLE KEYS */; INSERT INTO `mamblog_referrers` VALUES (0,'2011-06-21',3,'http','mamweb.at','','/index_top.html',''),(0,'2011-06-22',2,'http','mamweb.at','','/index_top.html',''),(0,'2011-10-09',6,'http','www.domaincrawler.com','','/mamweb.at',''),(0,'2007-09-29',2,'http','www.google.de','','/search','hl=de&q=mamblog&btnG=Suche&meta=lr%3Dlang_de'),(0,'2007-03-15',1,'http','www.mamweb.at','','/index_top.html',''),(0,'2007-08-01',1,'http','www.mamweb.at','','/index_top.html',''),(0,'2007-08-14',1,'http','www.mamweb.at','','/index_top.html',''),(0,'2008-04-30',1,'http','www.mamweb.at','','/index_top.html',''),(0,'2009-10-18',1,'http','www.mamweb.at','','/index_top.html',''),(0,'2010-04-06',2,'http','www.mamweb.at','','/index_top.html',''),(0,'2011-03-14',1,'http','www.mamweb.at','','/index_top.html',''); /*!40000 ALTER TABLE `mamblog_referrers` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `mamblog_suppress` -- DROP TABLE IF EXISTS `mamblog_suppress`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `mamblog_suppress` ( `ip` varchar(15) COLLATE utf8_unicode_ci DEFAULT NULL, `scheme` varchar(5) COLLATE utf8_unicode_ci DEFAULT NULL, `host` varchar(128) COLLATE utf8_unicode_ci DEFAULT NULL, `port` varchar(5) COLLATE utf8_unicode_ci DEFAULT NULL, `path` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, `query` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, `last` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, KEY `url_idx` (`host`,`ip`), KEY `urllast_idx` (`last`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `mamblog_suppress` -- LOCK TABLES `mamblog_suppress` WRITE; /*!40000 ALTER TABLE `mamblog_suppress` DISABLE KEYS */; INSERT INTO `mamblog_suppress` VALUES ('193.170.112.203','http','www.mamweb.at','','/index_top.html','','2011-08-26 01:47:40'),('95.72.13.104','http','yandex.ru','','/yandsearch','text=mamblog&clid=50368&lr=213','2011-10-03 11:57:00'),('176.74.192.83','http','www.domaincrawler.com','','/mamweb.at','','2011-10-09 08:15:25'),('91.198.45.5','http','www.mamweb.at','','/index_top.html','','2011-10-19 13:52:03'),('88.75.136.120','http','www.mamweb.at','','/index_top.html','','2011-10-20 15:59:55'),('84.18.138.210','http','mamweb.at','','/index_top.html','','2011-10-22 06:33:40'),('193.170.112.204','http','www.mamweb.at','','/index_top.html','','2011-12-13 11:31:06'),('109.86.47.244','http','yandex.ua','','/yandsearch','p=1&text=mamblog+blog&clid=46510&lr=187&tld=ua','2011-12-21 23:09:12'),('77.121.191.236','http','yandex.ua','','/yandsearch','p=1&text=mamblog+blog&clid=9403&lr=961&tld=ua','2011-12-30 21:33:46'),('178.219.95.74','http','yandex.ua','','/yandsearch','text=mamblog+bloger&clid=48648&tld=ua&lr=20537','2012-01-08 13:31:16'),('89.218.52.234','http','yandex.kz','','/yandsearch','text=Mamblog+blogger&lr=163&rdrnd=889225','2012-01-08 20:49:06'),('93.82.16.231','http','www.google.at','','/url','sa=t&rct=j&q=mamblog%20blog&source=web&cd=10&ved=0CHIQFjAJ&url=http%3A%2F%2Fmamblog.mamweb.at%2F&ei=440NT7eRLuv74QSc1o2IBg&usg=AFQjCNGbXC_MWkyqFALF2mLTN0yqPN9OGg','2012-01-11 13:30:27'),('94.198.108.19','http','yandex.ru','','/yandsearch','clid=9582&text=mamblog&lr=213','2012-02-12 19:17:15'),('193.80.57.6','http','www.mamweb.at','','/index_top.html','','2012-02-20 14:56:46'),('195.254.246.66','http','www.mamweb.at','','/index_top.html','','2012-02-21 16:52:36'),('195.234.101.154','http','www.mamweb.at','','/index_top.html','','2012-04-17 09:21:38'),('2.61.58.4','http','yandex.ru','','/yandsearch','p=2&text=mamblog&lr=1095','2012-04-23 15:23:13'),('80.108.111.112','http','www.mamweb.at','','/index_top.html','','2012-05-05 16:54:02'),('188.21.228.42','http','www.google.at','','/url','sa=t&rct=j&q=&esrc=s&source=web&cd=9&sqi=2&ved=0CH8QFjAI&url=http%3A%2F%2Fmamblog.mamweb.at%2F&ei=pNLoT-KzEurj4QTWqKCxAQ&usg=AFQjCNGbXC_MWkyqFALF2mLTN0yqPN9OGg&sig2=1sZ6TrG_AXHIMWdcSfvsIg','2012-06-25 21:07:50'),('80.108.9.245','http','www.mamweb.at','','/index_top.html','','2012-07-08 21:39:22'),('80.108.9.245','http','www.mamweb.at','','/index_top.html','','2012-08-07 06:20:23'),('80.108.9.245','http','www.mamweb.at','','/universe/','','2012-08-07 06:21:27'),('195.234.101.154','http','www.mamweb.at','','/index_top.html','','2012-09-27 14:05:04'),('89.250.8.49','http','yandex.ru','','/yandsearch','text=Mamblog+Blog&clid=9403&lr=213&oprnd=3150159255','2012-10-29 15:23:12'),('80.109.238.104','http','www.mamweb.at','','/index_top.html','','2012-12-06 19:14:22'),('213.111.116.104','http','yandex.ua','','/yandsearch','text=%D1%81%D0%BA%D0%B0%D1%87%D0%B0%D1%82%D1%8C+Mamblog+Blog&lr=143','2013-01-12 17:09:49'),('148.198.43.5','http','www.mamweb.at','','/index_top.html','','2013-01-24 20:11:53'),('193.170.112.109','http','www.mamweb.at','','/index_top.html','','2013-03-04 10:50:29'),('62.219.8.227','http','www.mamweb.at','','/index_noframes.html','','2013-03-29 18:13:33'),('62.219.8.229','http','www.mamweb.at','','/index_noframes.html','','2013-05-03 05:09:27'),('62.219.8.238','http','www.mamweb.at','','/index_noframes.html','','2013-06-07 02:03:04'),('192.114.71.13','http','www.mamweb.at','','/index_top.html','','2013-06-07 03:32:51'),('62.219.8.236','http','www.mamweb.at','','/index_top.html','','2013-07-25 02:53:03'),('192.114.71.13','http','www.mamweb.at','','/index_noframes.html','','2013-07-25 03:36:55'),('194.208.136.165','http','www.mamweb.at','','/index_top.html','','2013-07-29 17:34:06'),('193.170.112.165','http','www.mamweb.at','','/index_top.html','','2013-08-03 13:01:27'),('62.219.8.236','http','www.mamweb.at','','/index_noframes.html','','2013-09-17 09:51:55'),('192.114.71.13','http','www.mamweb.at','','/index_noframes.html','','2013-09-17 10:35:16'),('89.144.192.85','http','www.mamweb.at','','/index_top.html','','2013-10-05 18:26:45'),('178.191.54.120','http','www.mamweb.at','','/index_top.html','','2013-11-05 06:18:58'),('85.31.13.2','http','www.mamweb.at','','/index_top.html','','2013-11-05 09:40:50'),('2.93.125.128','http','yandex.ru','','/clck/jsredir','from=yandex.ru%3Byandsearch%3Bweb%3B%3B%2Fweb%2Fitem%2Ftitle%2Cpos%2Cp11%2Csource%2Cforeign&text=mamblog%20blog&uuid=&state=AiuY0DBWFJ4ePaEse6rgeAjgs2pI3DW99KUdgowt9XtQJtK767Hkdu1z_nyo6AwuARoJTHcQRaSo0ki6pqkCVI0RuuubPW2YjW5hVSUiuyOohd-1RBXPdk2byVZozvATdUZ','2014-04-29 12:29:03'),('195.234.101.154','http','www.mamweb.at','','/index_top.html','','2014-05-27 13:33:43'),('139.18.2.68','http','www.mamweb.at','','/index_top.html','','2014-09-12 00:14:29'),('80.108.9.245','http','www.mamweb.at','','/index_top.html','','2014-09-20 08:13:49'),('93.80.95.106','http','yandex.ru','','/yandsearch','text=mamblog&lr=213','2014-10-14 20:33:27'),('93.80.98.113','http','yandex.ru','','/yandsearch','text=mamblog&lr=213','2014-10-15 19:17:32'),('89.178.187.111','http','yandex.ru','','/yandsearch','text=mamblog&lr=213','2014-10-17 17:58:21'),('128.68.75.187','http','yandex.ru','','/yandsearch','text=mamblog&lr=213','2014-11-03 07:58:46'),('128.72.128.74','http','yandex.ru','','/yandsearch','text=mamblog+blog&lr=213','2014-11-16 21:17:51'),('46.73.201.58','http','yandex.ru','','/yandsearch','text=mamblog+blog&lr=213','2014-11-23 13:20:21'),('176.193.145.43','http','yandex.ru','','/yandsearch','text=mamblog+blog&lr=213','2014-11-23 13:20:21'),('37.204.95.139','http','yandex.ru','','/yandsearch','text=mamblog+blog&lr=213','2014-11-23 23:10:23'),('95.220.133.181','http','yandex.ru','','/yandsearch','text=mamblog+blog&lr=213','2014-11-23 23:10:37'),('95.28.189.248','http','yandex.ru','','/yandsearch','text=mamblog&lr=213','2015-01-25 16:37:50'),('84.51.91.197','http','yandex.ru','','/yandsearch','text=mamblog&lr=213','2015-01-27 05:36:11'),('2.92.132.143','http','yandex.ru','','/yandsearch','text=mamblog&lr=213','2015-01-29 14:25:42'),('176.195.151.62','http','yandex.ru','','/yandsearch','text=mimblog&lr=213','2015-03-11 18:03:49'),('95.25.138.17','http','yandex.ru','','/yandsearch','text=mimblog&lr=213','2015-03-12 02:25:16'),('95.221.27.58','http','yandex.ru','','/clck/jsredir','from=yandex.ru%3Byandsearch%3Bweb%3B%3B&text=&etext=647.Ja27ZU9KB0eZ1xG733TPHZY77FBfbQ3xA7y_Maf0DfQ.bc7123df02727a5a4061e1de2811661cf4931a1b&uuid=&state=AiuY0DBWFJ4ePaEse6rgeAjgs2pI3DW9J0KiE5XNXd0dp0ZMwFHoviUoYa6nzP7MFsomsouu4qd1CdWSCuj654BUTN6sJlQ022ngFy','2015-04-03 20:21:45'),('193.170.112.165','http','www.mamweb.at','','/index_top.html','','2015-04-29 08:44:28'),('87.228.66.245','http','yandex.ru','','/clck/jsredir','from=yandex.ru%3Bsearch%3Bweb%3B%3B&text=&etext=702.a6e9cYhoekf2P1w3uYQ0efVe62hq6kDrHFeeLUlUbJ8.dedd21fcbbbedc45eb1cbe275ee578a35de44f24&uuid=&state=AiuY0DBWFJ4ePaEse6rgeAjgs2pI3DW9J0KiE5XNXd0dp0ZMwFHoviUoYa6nzP7MFsomsouu4qdjzi4RJbh0JSTCe5vYdMCMZ1u2VrHKZC','2015-05-28 17:42:05'),('128.68.60.202','http','yandex.ru','','/clck/jsredir','from=yandex.ru%3Bsearch%3Bweb%3B%3B&text=&etext=703.xt6XUkrHc8jy6SLtJ8XhswMaVVwVK9N99K0Mr1-pXRM.9e22b6959dd0abec0222d03d26f92469b54378ef&uuid=&state=AiuY0DBWFJ4ePaEse6rgeAjgs2pI3DW9J0KiE5XNXd0dp0ZMwFHoviUoYa6nzP7MSi3gOS8hVmJiuN5udv6ToEE0LJTQPB9PhfLimKpoxa','2015-05-29 05:24:03'),('87.228.66.245','http','yandex.ru','','/clck/jsredir','from=yandex.ru%3Bsearch%3Bweb%3B%3B&text=&etext=703.vqyXrWeP87LVSomB073xzTs1pXvGF-YSOVDcg_vmS1Y.9059231b86c26c214eca1d9201389bbb011fddb6&uuid=&state=AiuY0DBWFJ4ePaEse6rgeAjgs2pI3DW9J0KiE5XNXd0dp0ZMwFHoviUoYa6nzP7MFsomsouu4qe92Y-JWNVZf-CGj4EnaW-7Mj_HC9uP5Z','2015-05-29 06:40:24'),('193.170.112.163','http','www.mamweb.at','','/index_top.html','','2015-10-28 12:45:53'),('46.188.48.235','http','yandex.ru','','/clck/jsredir','from=yandex.ru%3Bsearch%3Bweb%3B%3B&text=&etext=874.eg50oAJoQUadzAWWuskhHguy2Ir4WZkkRXmW4zuyRPY.69221088de86ee5789127a8b40b6ec19bdfcc89d&uuid=&state=AiuY0DBWFJ4ePaEse6rgeAjgs2pI3DW9J0KiE5XNXd0dp0ZMwFHoviUoYa6nzP7MFsomsouu4qfAp3-g7lOq2wn1zrMfeXVSP4VVDRftth','2015-11-16 13:19:16'),('37.145.72.22','http','yandex.ru','','/clck/jsredir','from=yandex.ru%3Bsearch%3Bweb%3B%3B&text=&etext=875.5TFabV3D8o_TANt9XAAZNPqlHF3Aopesh6aF2DSs5z4.978c26c49b71a0fb540be199f4631661e8c7c0b7&uuid=&state=AiuY0DBWFJ4ePaEse6rgeAjgs2pI3DW9J0KiE5XNXd0dp0ZMwFHoviUoYa6nzP7MSi3gOS8hVmL6VcnxUC1ab9QWT1ACGfaWyQ_2i0K-jF','2015-11-17 20:20:24'),('93.80.3.156','http','yandex.ru','','/clck/jsredir','from=yandex.ru%3Bsearch%3Bweb%3B%3B&text=&etext=877.alXR3lvwewxGDd_yEYIrc6qNZaaLewy5Th2nrWKQnEs.033cfa8bf37a639c24cb3cd2d64fedc0e20edcdb&uuid=&state=AiuY0DBWFJ4ePaEse6rgeAjgs2pI3DW9J0KiE5XNXd0dp0ZMwFHoviUoYa6nzP7MSi3gOS8hVmKVF2_FepZljsaIIIWfCBo6A-997ZOnjn','2015-11-20 00:08:15'),('5.35.95.238','http','yandex.ru','','/clck/jsredir','from=yandex.ru%3Bsearch%3Bweb%3B%3B&text=&etext=880.OMCYztiVG1fr4RlK3bHLWRHThH1kHsRCauZ1SunD_qA.26901021dc2145cdf5a8acd51be0a3e4db2dad8c&uuid=&state=AiuY0DBWFJ4ePaEse6rgeAjgs2pI3DW9J0KiE5XNXd0dp0ZMwFHoviUoYa6nzP7MFsomsouu4qfad0pAj0k5-X2qtqtecM3OnFpvdklLJX','2015-11-22 22:16:50'),('176.195.99.50','http','yandex.ru','','/clck/jsredir','from=yandex.ru%3Bsearch%3Bweb%3B%3B&text=&etext=882.JJMZpxFqmKiNHcRZw5aC1O7q-UewiRXYy_oSx7HN0Ew.ac5dc8ee12ac74209cc1f0f1dc2818cdfa05ebe1&uuid=&state=AiuY0DBWFJ4ePaEse6rgeAjgs2pI3DW9J0KiE5XNXd0dp0ZMwFHoviUoYa6nzP7MFsomsouu4qcWQ_S6aniCVn2j1IW_p3u1VyWDOSwwag','2015-11-25 00:19:55'),('176.193.184.2','http','yandex.ru','','/clck/jsredir','from=yandex.ru%3Bsearch%3Bweb%3B%3B&text=&etext=885.LXhSYhHcVl3mQD4R-3h9WDQtVi7WuzLRNwoa5ewzjq8.633a33b038b077b72c1faf81b75167430e746eef&uuid=&state=AiuY0DBWFJ4ePaEse6rgeAjgs2pI3DW9J0KiE5XNXd0dp0ZMwFHoviUoYa6nzP7MSi3gOS8hVmKXXe8oohwkkbWf0H7KtNYjuFj4zlMW4P','2015-11-27 03:48:57'),('46.42.165.40','http','yandex.ru','','/clck/jsredir','from=yandex.ru%3Bsearch%3Bweb%3B%3B&text=&etext=896.Xt1_GgWmvczIXpCKsdhvYN-vNX8DQsB59A7pc89DD1n5lYpSn42NFHzfJOpai6ELfoqQIZZLEnXrhnVo0CcHFSt7qFdT8V4Yn3R6iJ1R1WXJxrNlr8PER8AsGB7AvOvN.0094d45bbfcc2df38f938cc9c68a30e1522d4477&uuid=&state=AiuY0DBWFJ4ePaEse6rge','2015-12-08 20:30:19'),('46.42.175.186','http','yandex.ru','','/clck/jsredir','from=yandex.ru%3Bsearch%3Bweb%3B%3B&text=&etext=897.fZ4v2DYalBHXPbuA4w365enz69WkG7gxyM0eZCzRaOBOIrxNa3Dj_e6acw6cbz3h7Dw6rNschdHcVUSUIhwaIvbeWPLOd9s2eX9vEDwfBIbE9j1YvbXilEOICRn4B4Cb.889d9cf5090da4f66b7059b3c3593aad0c60151b&uuid=&state=AiuY0DBWFJ4ePaEse6rge','2015-12-09 08:33:29'),('213.185.164.212','http','mamweb.at','','/index_top.html','','2016-02-16 16:35:29'),('46.242.73.5','http','yandex.ru','','/clck/jsredir','from=yandex.ru%3Bsearch%3Bweb%3B%3B&text=&etext=980.oR5DUSD6E11ibinMjT8-Jm1ykju_shY3Rm2Sxc_stn8.0fb861989b5c8d8fada6d1b3964d4b2f3d4253cd&uuid=&state=AiuY0DBWFJ4ePaEse6rgeAjgs2pI3DW9J0KiE5XNXd0dp0ZMwFHoviUoYa6nzP7MFsomsouu4qdpe912Y12qG6NC7-CSe-BBpENsekErNc','2016-03-01 12:15:27'),('46.242.79.221','http','yandex.ru','','/clck/jsredir','from=yandex.ru%3Bsearch%3Bweb%3B%3B&text=&etext=981.TPoH9pGoWw9y64sneZIEA9lwj88-Qa8wvBSMz33g6dY.dfb8c7bb75c014afe8688081530375c7203e0a80&uuid=&state=AiuY0DBWFJ4ePaEse6rgeAjgs2pI3DW9J0KiE5XNXd0dp0ZMwFHoviUoYa6nzP7MSi3gOS8hVmJNbJ6dDcrGVwvAvAzuodkH1cs2rtK6ka','2016-03-02 10:44:58'),('62.210.247.162','http','mamweb.at','','/index_noframes.html','','2016-04-04 20:26:15'),('37.110.152.103','http','yandex.ru','','/clck/jsredir','from=yandex.ru%3Bsearch%3Bweb%3B%3B&text=&etext=1070.KySS8voDWfQXnoF5HPKgtdxkwMIEKTNE0P_dJhHjC_zivcGtYTS5oHBR50pHVo3D.d0059c45ae06430da790f08f1876cb601d26ccab&uuid=&state=_BLhILn4SxNIvvL0W45KSic66uCIg23qh8iRG98qeIXmeppkgUc0YGftRg9cP1erjBfVTUcXDXk&data=UlN','2016-05-30 23:49:34'),('78.106.171.74','http','yandex.ru','','/clck/jsredir','from=yandex.ru%3Bsearch%3Bweb%3B%3B&text=&etext=1101.bYdmuzSU57DqmZRpFSxmHb6Yi8RFYQ1M58ClFP643kwP4bIKXierf1qUYd5T22Qi.3ab9ae8190e17dd6440e6a20049df4d9820a807e&uuid=&state=_BLhILn4SxNIvvL0W45KSic66uCIg23qh8iRG98qeIXmeppkgUc0YLeQVNu7TCjFWhspMNrg36Y&data=UlN','2016-06-30 22:36:47'),('176.77.28.135','http','yandex.ru','','/clck/jsredir','from=yandex.ru%3Bsearch%3Bweb%3B%3B&text=&etext=1102.Eeqv-lrWOViTw1rV287pp_KymAWc8mR8WgWNOofBBfgaaEpmJVN1MvkOwqpqC-4s.2cdc20e0acf11c78e87617fde0558b4f97c5d111&uuid=&state=_BLhILn4SxNIvvL0W45KSic66uCIg23qh8iRG98qeIXmeppkgUc0YM1sNxN_KHOPADPyHdOKa1Y&data=UlN','2016-07-01 09:05:33'),('128.74.245.244','http','yandex.ru','','/clck/jsredir','from=yandex.ru%3Bsearch%3Bweb%3B%3B&text=&etext=1102.p9AQypjXUF2JaUYaJBdyCkP5SefqEWR8KeuWUmz0f_hFD_JHcNorUNU-7wgXtD6E.03b8530b8b5d6a4bcb57c718d1aa97257c4ba42b&uuid=&state=_BLhILn4SxNIvvL0W45KSic66uCIg23qh8iRG98qeIXmeppkgUc0YD4hgzqAYr5iuWBiLZQy-rY&data=UlN','2016-07-01 12:41:28'),('176.77.123.141','http','yandex.ru','','/clck/jsredir','from=yandex.ru%3Bsearch%3Bweb%3B%3B&text=&etext=1102.cSGYeg1WkKVe5BJ84aU4DzKvzFPsj7_182p2E8ZAKme-yNwRSt8yXcOckbG8ApM2.f14fbf7a79a1097b8a80d0671906a7ada45b2044&uuid=&state=_BLhILn4SxNIvvL0W45KSic66uCIg23qh8iRG98qeIXmeppkgUc0YL_nDC5hqtEQ6WayFoZKRZE&data=UlN','2016-07-01 21:04:16'),('95.24.51.55','http','yandex.ru','','/clck/jsredir','from=yandex.ru%3Bsearch%3Bweb%3B%3B&text=&etext=1104.cXrFrjznAPaD_K5mDybggCN-XD9biYDx4OBYsuhgaKn9X1Vufojo-dxtsydbOXc-.19d2ad5b01b71cafbbb18695e03657b9c09bd405&uuid=&state=_BLhILn4SxNIvvL0W45KSic66uCIg23qh8iRG98qeIXmeppkgUc0YFUVNhHyyhJgRFg5yeLMIWU&data=UlN','2016-07-02 20:28:46'),('95.24.51.55','http','yandex.ru','','/clck/jsredir','from=yandex.ru%3Bsearch%3Bweb%3B%3B&text=&etext=1104.gwnU2HdNWfnmGDrTtk2TArfFRXAyuraImKGzLwmPj9sisIlJCufIiaYUxMR75MNj.cfcf03ab5b5f8e850a8bb9af3d74dab91670fbc5&uuid=&state=_BLhILn4SxNIvvL0W45KSic66uCIg23qh8iRG98qeIXmeppkgUc0YD4hgzqAYr5iuWBiLZQy-rY&data=UlN','2016-07-02 20:38:41'),('109.173.49.215','http','yandex.ru','','/clck/jsredir','from=yandex.ru%3Bsearch%3Bweb%3B%3B&text=&etext=1105.-D15rNqd3n7fDbMKUj3_4b5Xry0IlkhEOjuTMlbJi7m-DTaknD6W4Pg3f8PmJhwi.6fe715cafbeed8119e8831a650d166ad296157ef&uuid=&state=_BLhILn4SxNIvvL0W45KSic66uCIg23qh8iRG98qeIXmeppkgUc0YL_nDC5hqtEQ6WayFoZKRZE&data=UlN','2016-07-03 19:34:40'),('176.15.250.63','http','yandex.ru','','/clck/jsredir','from=yandex.ru%3Bsearch%3Bweb%3B%3B&text=&etext=1114.CAfsPQ9f5I1xm6vWLjtub9Mj2D9Vg2a7CII-2XNoDGLKw5gFHNb_QTtfVlbSl0wo.f580f8dad79e3ee8ad14379a1cf8508eb5c27653&uuid=&state=_BLhILn4SxNIvvL0W45KSic66uCIg23qh8iRG98qeIXmeppkgUc0YKCJkrjchpDstTwxTkjwGrA&data=UlN','2016-07-12 20:28:50'),('128.75.49.139','http','yandex.ru','','/clck/jsredir','from=yandex.ru%3Bsearch%3Bweb%3B%3B&text=&etext=1115.85NfaEZ-zVYs6126fjgYDrhjNpnOOBlQwzO54hbsAk1cLo6XmM9Yz6rWo_Bc0aNh.03c471da217e88fc9ba7a7723b75a4ce73ffe39e&uuid=&state=_BLhILn4SxNIvvL0W45KSic66uCIg23qh8iRG98qeIXmeppkgUc0YM1sNxN_KHOPADPyHdOKa1Y&data=UlN','2016-07-13 04:06:19'),('93.81.91.47','http','yandex.ru','','/clck/jsredir','from=yandex.ru%3Bsearch%3Bweb%3B%3B&text=&etext=1115.JgEfXHiGNraPsSiKIxryyuqPnPOcOgqXwtRwHfT7daDwltScZ1pwsFedxk3Qih0j.d18d9d8cdbc6672417eb742f770aae78382f1850&uuid=&state=_BLhILn4SxNIvvL0W45KSic66uCIg23qh8iRG98qeIXmeppkgUc0YL_nDC5hqtEQ6WayFoZKRZE&data=UlN','2016-07-13 04:45:04'),('95.221.243.112','http','yandex.ru','','/clck/jsredir','from=yandex.ru%3Bsearch%3Bweb%3B%3B&text=&etext=1115.WpENCowK9BYaym4xbaYlDKv9UYNDttxDe3-sevVmRWyUnf3ma2VibrvVtNJjt79d.4da5d6c1b0a0357d4a553b98191915f49b1c0ae6&uuid=&state=_BLhILn4SxNIvvL0W45KSic66uCIg23qh8iRG98qeIXmeppkgUc0YCYBcIrWNUha-mUlBiA3OhY&data=UlN','2016-07-13 08:06:25'),('93.81.91.47','http','yandex.ru','','/clck/jsredir','from=yandex.ru%3Bsearch%3Bweb%3B%3B&text=&etext=1115.kPraazSZIoFnDuQsqFcDV6OyukZU5nhKoR6n0HROMwh4119xSJBXBjf0wkngBdPg.57d84e3b8e8ac07714589805266b7a2700a412f1&uuid=&state=_BLhILn4SxNIvvL0W45KSic66uCIg23qh8iRG98qeIXmeppkgUc0YD4hgzqAYr5iuWBiLZQy-rY&data=UlN','2016-07-13 12:23:05'),('128.75.49.139','http','yandex.ru','','/clck/jsredir','from=yandex.ru%3Bsearch%3Bweb%3B%3B&text=&etext=1115.NySO6jn7riscYrukaGO560TP_bhM2Lk2AUPxz9koWOxSbZXUqZvrRxvAz8GKC2vU.71a85edf460d999386e3e5588c857460d9a0db71&uuid=&state=_BLhILn4SxNIvvL0W45KSic66uCIg23qh8iRG98qeIXmeppkgUc0YHRNgn3KsbHJbmUkku86_mY&data=UlN','2016-07-13 16:33:13'),('2.94.80.121','http','yandex.ru','','/clck/jsredir','from=yandex.ru%3Bsearch%3Bweb%3B%3B&text=&etext=1120.SAYcJHcSsdseZXVAdPwbA8EczXWfbupuAGP0uqjvlJo57oLxzZ_AYUsjLo3noMAS.f98a29f329578ba8e8e90c4738d7ea6f8f8d01dc&uuid=&state=_BLhILn4SxNIvvL0W45KSic66uCIg23qh8iRG98qeIXmeppkgUc0YG-XUIUpxKrkaoPisARVvB8&data=UlN','2016-07-18 23:40:57'),('128.72.184.118','http','yandex.ru','','/clck/jsredir','from=yandex.ru%3Bsearch%3Bweb%3B%3B&text=&etext=1120.ohwbN3QjewzJXYycK63wxx3G_YQpOEEsDke0r-KsoLVVQSjICMrdLLkemHOIF7OY.bfb938883fec78cd267f3c717202c33463e6c2d8&uuid=&state=_BLhILn4SxNIvvL0W45KSic66uCIg23qh8iRG98qeIXmeppkgUc0YG-XUIUpxKrkaoPisARVvB8&data=UlN','2016-07-19 00:22:03'),('2.94.75.142','http','yandex.ru','','/clck/jsredir','from=yandex.ru%3Bsearch%3Bweb%3B%3B&text=&etext=1121.00eA4eRFUbW3FEajQ3uUq039Sf5-bEzdMSANJkPTLwQwWcbTFM-4yAm8u57Avc3v.718f6ec8b314f9a93a2b34263bc9c88524f8a0f2&uuid=&state=_BLhILn4SxNIvvL0W45KSic66uCIg23qh8iRG98qeIXmeppkgUc0YHRNgn3KsbHJbmUkku86_mY&data=UlN','2016-07-19 09:16:49'),('188.32.139.54','http','yandex.ru','','/clck/jsredir','from=yandex.ru%3Bsearch%3Bweb%3B%3B&text=&etext=1121.56jeDr06x0G7jQjMbcmfR0SwGbnKy5meejenUNr4g2gzV9L-UGo3AopLsQXRNqzs.d15accd4bf3788947a8072dd2ea974dbbe9818d2&uuid=&state=_BLhILn4SxNIvvL0W45KSic66uCIg23qh8iRG98qeIXmeppkgUc0YOm24rr5dkiDnIjpu2TfUVc&data=UlN','2016-07-19 09:26:21'),('176.77.101.77','http','yandex.ru','','/clck/jsredir','from=yandex.ru%3Bsearch%3Bweb%3B%3B&text=&etext=1121.L52keJldZMeMBfsDxITIFI0wYCxFVEn11Aup8cXNaSCvtjPIu8RdIuBXOGqx0iLS.99505ab9d783788dab3be27a4c4a11bf9d8853a9&uuid=&state=_BLhILn4SxNIvvL0W45KSic66uCIg23qh8iRG98qeIXmeppkgUc0YM1sNxN_KHOPADPyHdOKa1Y&data=UlN','2016-07-19 22:45:11'),('178.140.184.31','http','yandex.ru','','/clck/jsredir','from=yandex.ru%3Bsearch%3Bweb%3B%3B&text=&etext=1122.jXveJJ9rqg7HLQSVYYZ1xR5OejnWbx1M65n3vmYjHEQ33MUvwIT-qJO6dhXUCuVG.d81daa262ffcd49ecdafb5f98edb062e13aa4fe8&uuid=&state=_BLhILn4SxNIvvL0W45KSic66uCIg23qh8iRG98qeIXmeppkgUc0YL_nDC5hqtEQ6WayFoZKRZE&data=UlN','2016-07-20 09:33:45'),('185.51.9.22','http','mamweb.at','','/index_top.html','','2016-12-17 19:00:10'),('207.241.231.148','http','mamweb.at','','/index_top.html','','2017-03-31 22:00:35'),('178.175.131.194','http','www.mamweb.at','','/index_top.html','','2017-04-27 14:56:50'),('51.254.23.203','http','www.mamweb.at','','/index_top.html','','2017-04-27 14:57:18'),('195.234.101.154','http','www.mamweb.at','','/index_top.html','','2017-06-14 13:14:01'),('37.147.116.71','http','yandex.ru','','/clck/jsredir','from=yandex.ru%3Bsearch%3Bweb%3B%3B&text=&etext=1455.--qCwNq-E8BPSX99wR5egbTH9J8R6Mz89vzLIlxEHkZBNutUxBg1dr2J84quKaR9.67fb0eaea1ab1838a6efad6c8a91872c8268f6a3&uuid=&state=_BLhILn4SxNIvvL0W45KSic66uCIg23qh8iRG98qeIXmeppkgUc0YGftRg9cP1erjBfVTUcXDXk&data=UlN','2017-06-17 15:14:47'),('5.228.35.80','http','yandex.ru','','/clck/jsredir','from=yandex.ru%3Bsearch%3Bweb%3B%3B&text=&etext=1462.x6pn8F1G15FPmnGaJqVbkpr2ZiiVEaMv1oU-Qn_zD5ILpAGhTgIqphxyX8_D0Vog.3e6dbd0d37be2967eacce5443cdc04ec2de8eed9&uuid=&state=_BLhILn4SxNIvvL0W45KSic66uCIg23qh8iRG98qeIXmeppkgUc0YCYBcIrWNUha-mUlBiA3OhY&data=UlN','2017-06-24 07:54:34'),('193.170.112.161','http','www.mamweb.at','','/index_top.html','','2017-09-01 12:02:47'),('62.210.139.25','http','mamweb.at','','/index_noframes.html','','2017-09-17 21:52:21'); /*!40000 ALTER TABLE `mamblog_suppress` ENABLE KEYS */; UNLOCK TABLES; -- -- Current Database: `serverstatus` -- CREATE DATABASE /*!32312 IF NOT EXISTS*/ `serverstatus` /*!40100 DEFAULT CHARACTER SET latin1 */; USE `serverstatus`; -- -- Table structure for table `announcements` -- DROP TABLE IF EXISTS `announcements`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `announcements` ( `id` smallint(5) unsigned NOT NULL AUTO_INCREMENT, `announcement` tinytext NOT NULL, `atime` datetime NOT NULL DEFAULT '2002-08-08 01:00:00', PRIMARY KEY (`id`), UNIQUE KEY `id` (`id`), KEY `id_2` (`id`) ) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=latin1 COMMENT='Service Announcements'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `announcements` -- LOCK TABLES `announcements` WRITE; /*!40000 ALTER TABLE `announcements` DISABLE KEYS */; /*!40000 ALTER TABLE `announcements` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `groups` -- DROP TABLE IF EXISTS `groups`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `groups` ( `groupid` tinyint(3) unsigned NOT NULL AUTO_INCREMENT, `groupname` varchar(50) NOT NULL DEFAULT '0', `ports` varchar(50) NOT NULL DEFAULT '0', PRIMARY KEY (`groupid`), UNIQUE KEY `groupid` (`groupid`), KEY `groupid_2` (`groupid`) ) ENGINE=MyISAM AUTO_INCREMENT=7 DEFAULT CHARSET=latin1 COMMENT='Server groups'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `groups` -- LOCK TABLES `groups` WRITE; /*!40000 ALTER TABLE `groups` DISABLE KEYS */; INSERT INTO `groups` VALUES (1,'Web Servers','80,443'),(3,'FTP Servers','21'),(4,'Web RDP Servers','4711'); /*!40000 ALTER TABLE `groups` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `ports` -- DROP TABLE IF EXISTS `ports`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `ports` ( `portid` smallint(3) unsigned NOT NULL DEFAULT '0', `portname` varchar(10) NOT NULL DEFAULT '0', PRIMARY KEY (`portid`), UNIQUE KEY `portid` (`portid`), KEY `portid_2` (`portid`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1 COMMENT='Port numbers'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `ports` -- LOCK TABLES `ports` WRITE; /*!40000 ALTER TABLE `ports` DISABLE KEYS */; INSERT INTO `ports` VALUES (80,'HTTP'),(443,'HTTPS'),(21,'FTP'),(4711,'TSWEB'); /*!40000 ALTER TABLE `ports` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `servers` -- DROP TABLE IF EXISTS `servers`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `servers` ( `id` tinyint(3) unsigned NOT NULL AUTO_INCREMENT, `friendlyname` varchar(50) NOT NULL DEFAULT '0', `ip` varchar(16) NOT NULL DEFAULT '0', `hostname` varchar(100) NOT NULL DEFAULT '0', `groupid` tinyint(3) unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`id`), UNIQUE KEY `id` (`id`), KEY `id_2` (`id`) ) ENGINE=MyISAM AUTO_INCREMENT=37 DEFAULT CHARSET=latin1 COMMENT='Servers to be monitored'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `servers` -- LOCK TABLES `servers` WRITE; /*!40000 ALTER TABLE `servers` DISABLE KEYS */; INSERT INTO `servers` VALUES (8,'funpic','0','heimam.funpic.de',1),(5,'mamweb','0','www.mamweb.at',1),(6,'coolfreepage','0','heimam.coolfreepage.com',1),(7,'byethost','0','heimam.byethost4.com',1),(9,'at.vu','0','heimam.at.vu',1),(10,'net.ms','0','mam.net.ms',1),(11,'de.vu','0','paperweb.de.vu',1),(12,'unet/~a9003211','0','unet.univie.ac.at',1),(13,'freewebs/heimam','0','freewebs.com',1),(14,'homebase-it','0','homebase-it.byethost22.com',1),(16,'eqo','0','heimam.eqo.de',1),(17,'roma','0','roma.byethost33.com',1),(18,'roma.at.vu','0','roma.at.vu',1),(19,'mamweb','0','www.mamweb.at',3),(20,'funpic','0','heimam.he.funpic.de',3),(21,'coolfreepage','0','heimam.coolfreepage.com',3),(22,'byethost','0','heimam.byethost4.com',3),(23,'unet','0','unet.univie.ac.at',3),(25,'eqo','0','www.eqo.de',3),(26,'homebase-it','0','homebase-it.byethost22.com',3),(27,'roma','0','roma.byethost22.com',3),(34,'mamweb','0','www.mamweb.at',4); /*!40000 ALTER TABLE `servers` ENABLE KEYS */; UNLOCK TABLES; -- -- Current Database: `sitebuilder5` -- CREATE DATABASE /*!32312 IF NOT EXISTS*/ `sitebuilder5` /*!40100 DEFAULT CHARACTER SET latin1 */; USE `sitebuilder5`; -- -- Table structure for table `action` -- DROP TABLE IF EXISTS `action`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `action` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(255) NOT NULL DEFAULT '', PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `action` -- LOCK TABLES `action` WRITE; /*!40000 ALTER TABLE `action` DISABLE KEYS */; /*!40000 ALTER TABLE `action` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `config_param` -- DROP TABLE IF EXISTS `config_param`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `config_param` ( `id` int(11) NOT NULL AUTO_INCREMENT, `config_section_id` int(11) NOT NULL DEFAULT '0', `name` varchar(255) NOT NULL DEFAULT '', `value` varchar(255) NOT NULL DEFAULT '', `in_backup` int(11) NOT NULL DEFAULT '0', PRIMARY KEY (`id`) ) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `config_param` -- LOCK TABLES `config_param` WRITE; /*!40000 ALTER TABLE `config_param` DISABLE KEYS */; INSERT INTO `config_param` VALUES (1,1,'version','5.1.0',0),(2,1,'build','',0); /*!40000 ALTER TABLE `config_param` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `config_section` -- DROP TABLE IF EXISTS `config_section`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `config_section` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(255) NOT NULL DEFAULT '', PRIMARY KEY (`id`), UNIQUE KEY `name` (`name`) ) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `config_section` -- LOCK TABLES `config_section` WRITE; /*!40000 ALTER TABLE `config_section` DISABLE KEYS */; INSERT INTO `config_section` VALUES (1,'general'); /*!40000 ALTER TABLE `config_section` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `header` -- DROP TABLE IF EXISTS `header`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `header` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(255) NOT NULL DEFAULT '', `logo_is_black` int(11) NOT NULL DEFAULT '1', `title_color` varchar(7) NOT NULL DEFAULT '#000000', PRIMARY KEY (`id`), UNIQUE KEY `name` (`name`) ) ENGINE=MyISAM AUTO_INCREMENT=147 DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `header` -- LOCK TABLES `header` WRITE; /*!40000 ALTER TABLE `header` DISABLE KEYS */; INSERT INTO `header` VALUES (1,'accounting-and-financial_01',1,'#000000'),(2,'accounting-and-financial_02',1,'#000000'),(3,'artist-designer_01',1,'#000000'),(4,'artist-designer_02',0,'#FFFFFF'),(5,'artist-website-exhibit_01',0,'#FFFFFF'),(6,'artist-website-exhibit_02',0,'#FFFFFF'),(7,'association-foundation-league_01',1,'#000000'),(8,'association-foundation-league_02',0,'#FFFFFF'),(9,'author-writer-website_01',0,'#FFFFFF'),(10,'author-writer-website_02',0,'#FFFFFF'),(11,'band-website_01',0,'#FFFFFF'),(12,'band-website_02',0,'#FFFFFF'),(13,'birth-engagement-wedding-announcement_01',1,'#000000'),(14,'bricklayer-and-tiler_01',0,'#FFFFFF'),(15,'bricklayer-and-tiler_02',0,'#FFFFFF'),(16,'business-company-website_01',1,'#000000'),(17,'business-company-website_02',1,'#000000'),(18,'car-rental_01',0,'#FFFFFF'),(19,'car-rental_02',1,'#000000'),(20,'car-repair-service_01',1,'#000000'),(21,'car-repair-service_02',1,'#000000'),(22,'cargo-delivery-services_01',1,'#000000'),(23,'cargo-delivery-services_02',1,'#000000'),(24,'carpenter_01',0,'#FFFFFF'),(25,'carpenter_02',1,'#000000'),(26,'charity-philanthropic-organization_01',0,'#FFFFFF'),(27,'charity-philanthropic-organization_02',0,'#FFFFFF'),(28,'church-religious-organization_01',1,'#000000'),(29,'church-religious-organization_02',0,'#FFFFFF'),(30,'coffee-shop_01',0,'#FFFFFF'),(31,'coffee-shop_02',0,'#FFFFFF'),(32,'community-college-internet-radio_01',0,'#FFFFFF'),(33,'community-college-internet-radio_02',1,'#000000'),(34,'construction-company_01',1,'#000000'),(35,'construction-company_02',1,'#000000'),(36,'consulting-services_01',1,'#000000'),(37,'consulting-services_02',1,'#000000'),(38,'dance-studio_01',0,'#FFFFFF'),(39,'dance-studio_02',1,'#000000'),(40,'dance-studio_03',0,'#FFFFFF'),(41,'decorator_01',0,'#FFFFFF'),(42,'decorator_02',1,'#000000'),(43,'design-studio_01',1,'#000000'),(44,'design-studio_02',1,'#000000'),(45,'design-studio_03',1,'#000000'),(46,'driving-school_01',1,'#000000'),(47,'driving-school_02',1,'#000000'),(48,'electrician_01',1,'#000000'),(49,'electrician_02',1,'#000000'),(50,'engagement-wedding_01',0,'#FFFFFF'),(51,'engagement-wedding_02',1,'#000000'),(52,'engagement-wedding_03',1,'#000000'),(53,'environmental-organization_01',0,'#FFFFFF'),(54,'environmental-organization_02',1,'#000000'),(55,'fallback',1,'#000000'),(56,'fashion-clothing-store_01',0,'#FFFFFF'),(57,'fashion-clothing-store_02',1,'#000000'),(58,'fitness-studio_01',0,'#FFFFFF'),(59,'fitness-studio_02',0,'#FFFFFF'),(60,'general-residential-contractors_01',1,'#000000'),(61,'general-residential-contractors_02',1,'#000000'),(62,'generic-shop_01',1,'#000000'),(63,'generic-shop_02',1,'#000000'),(64,'glass_01',1,'#000000'),(65,'glass_02',1,'#000000'),(66,'health-care-provider_01',1,'#000000'),(67,'health-care-provider_02',1,'#000000'),(68,'hotel_01',1,'#000000'),(69,'hotel_02',1,'#000000'),(70,'house-painter_01',1,'#000000'),(71,'house-painter_02',1,'#000000'),(72,'hvac-services_01',0,'#FFFFFF'),(73,'hvac-services_02',1,'#000000'),(74,'insurance-agency_01',1,'#000000'),(75,'insurance-agency_02',1,'#000000'),(76,'language-school_01',1,'#000000'),(77,'language-school_02',1,'#000000'),(78,'language-trip_01',1,'#000000'),(79,'language-trip_02',1,'#000000'),(80,'lawyer-service_01',0,'#FFFFFF'),(81,'lawyer-service_02',1,'#000000'),(82,'library_01',1,'#000000'),(83,'library_02',0,'#FFFFFF'),(84,'movie-blog_01',0,'#FFFFFF'),(85,'movie-blog_02',0,'#FFFFFF'),(86,'movie-blog_03',0,'#FFFFFF'),(87,'movie-fan-website_01',0,'#FFFFFF'),(88,'movie-fan-website_02',0,'#FFFFFF'),(89,'museum-gallery-exhibition_01',1,'#000000'),(90,'museum-gallery-exhibition_02',1,'#000000'),(91,'music-blog_01',1,'#000000'),(92,'music-blog_02',1,'#000000'),(93,'musician-fan-website_01',1,'#000000'),(94,'musician-fan-website_02',0,'#FFFFFF'),(95,'musician-performer-website_01',0,'#FFFFFF'),(96,'musician-performer-website_02',1,'#000000'),(97,'night-club_01',0,'#FFFFFF'),(98,'night-club_02',0,'#FFFFFF'),(99,'night-club_03',0,'#FFFFFF'),(100,'non-profit-organization_01',0,'#FFFFFF'),(101,'non-profit-organization_02',1,'#000000'),(102,'personal-collection_01',1,'#000000'),(103,'personal-collection_02',1,'#000000'),(104,'personal-family-website_01',0,'#FFFFFF'),(105,'personal-family-website_02',0,'#FFFFFF'),(106,'pet-shop_01',1,'#000000'),(107,'pet-shop_02',1,'#000000'),(108,'pharmacy_01',1,'#000000'),(109,'pharmacy_02',0,'#FFFFFF'),(110,'photographer-website-exhibit_01',1,'#000000'),(111,'photographer-website-exhibit_02',0,'#FFFFFF'),(112,'photography-portrait-studio_01',1,'#000000'),(113,'photography-portrait-studio_02',0,'#FFFFFF'),(114,'plumber_01',1,'#000000'),(115,'plumber_02',1,'#000000'),(116,'political-party-organization_01',0,'#FFFFFF'),(117,'political-party-organization_02',0,'#FFFFFF'),(118,'political-party-organization_03',0,'#FFFFFF'),(119,'pub-bar-cafe_01',1,'#000000'),(120,'pub-bar-cafe_02',0,'#FFFFFF'),(121,'pub-bar-cafe_03',1,'#000000'),(122,'pub-bar-cafe_04',0,'#FFFFFF'),(123,'pub-bar-cafe_05',0,'#FFFFFF'),(124,'restaurant_01',0,'#FFFFFF'),(125,'restaurant_02',0,'#FFFFFF'),(126,'restaurant_03',0,'#FFFFFF'),(127,'resume-work-profile-cv_01',1,'#000000'),(128,'resume-work-profile-cv_02',1,'#000000'),(129,'roofer_01',1,'#000000'),(130,'roofer_02',1,'#000000'),(131,'school-website_01',0,'#FFFFFF'),(132,'school-website_02',1,'#000000'),(133,'school-website_03',0,'#FFFFFF'),(134,'seminar-convention-trade-show_01',1,'#000000'),(135,'seminar-convention-trade-show_02',0,'#FFFFFF'),(136,'sports-team-fan-website_01',0,'#FFFFFF'),(137,'sports-team-fan-website_02',0,'#FFFFFF'),(138,'theater-blog_01',0,'#FFFFFF'),(139,'theater-blog_02',0,'#FFFFFF'),(140,'theater-blog_03',0,'#FFFFFF'),(141,'theater-cinema-performance_01',0,'#FFFFFF'),(142,'theater-cinema-performance_02',1,'#000000'),(143,'travel-agency_01',0,'#FFFFFF'),(144,'travel-agency_02',1,'#000000'),(145,'travel-blog_01',0,'#FFFFFF'),(146,'travel-blog_02',1,'#000000'); /*!40000 ALTER TABLE `header` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `host` -- DROP TABLE IF EXISTS `host`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `host` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(255) NOT NULL DEFAULT '', `is_active` int(11) NOT NULL DEFAULT '1', `uuid` varchar(100) NOT NULL DEFAULT '0', PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `host` -- LOCK TABLES `host` WRITE; /*!40000 ALTER TABLE `host` DISABLE KEYS */; /*!40000 ALTER TABLE `host` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `locale` -- DROP TABLE IF EXISTS `locale`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `locale` ( `id` int(11) NOT NULL AUTO_INCREMENT, `code` varchar(255) NOT NULL DEFAULT '', `name` varchar(255) NOT NULL DEFAULT '', `english_name` varchar(255) NOT NULL DEFAULT '', `decimal_point` varchar(3) NOT NULL DEFAULT '.', `monetary_unit_code` varchar(3) NOT NULL DEFAULT 'USD', `currency_symbol_left` varchar(20) NOT NULL DEFAULT '$', `currency_symbol_right` varchar(20) NOT NULL DEFAULT '', `date_format` varchar(10) NOT NULL DEFAULT 'Y/m/d', `time_format` varchar(10) NOT NULL DEFAULT 'H:i:s', `week_begin` int(11) NOT NULL DEFAULT '1', `is_active` int(11) NOT NULL DEFAULT '1', `uuid` varchar(100) NOT NULL DEFAULT '0', PRIMARY KEY (`id`) ) ENGINE=MyISAM AUTO_INCREMENT=12 DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `locale` -- LOCK TABLES `locale` WRITE; /*!40000 ALTER TABLE `locale` DISABLE KEYS */; INSERT INTO `locale` VALUES (1,'en_US','English, United States','English, United States','.','USD','$','','n/j/Y','g:i:s A',1,1,'98c3b0f3-46f9-658b-14f5-e48ac00b9a31'),(2,'de_DE','Deutsch, Deutschland','German, Germany',',','EUR','','€','d.m.Y','H:i:s',1,1,'e6ba9170-4c7c-8498-bc94-cccba5045ea3'),(3,'en_GB','English, Great Britain','English, Great Britain','.','GBP','£','','n/j/Y','g:i:s A',1,1,'ccfd82dd-1225-f5ab-5b75-0e21c7c1e9e3'),(4,'es_ES','Español, España','Spanish, Spain',',','EUR','','€','d/m/Y','G:i:s',1,1,'339df815-d7ce-6529-f683-203f88c795cd'),(5,'fr_FR','Français, France','French, France',',','EUR','','€','d/m/Y','H:i:s',1,1,'30f72019-3faa-7b4f-8dbf-e256088c11db'),(6,'it_IT','Italiano, Italia','Italian, Italy','.','EUR','','€','Y/m/d','H:i:s',1,1,'f7839cd5-2ce5-d65b-60b6-4dcc2fda6ebb'),(7,'ja_JP','日本語, 日本','Japanese, Japan','.','JPY','¥','','Y/m/d','H:i:s',1,1,'d2a7315a-27c4-aca7-b6cc-ca21855b037a'),(8,'nl_NL','Dutch, Netherlands','Dutch, Netherlands','.','EUR','','€','Y/m/d','H:i:s',1,1,'5cdf5935-faea-8782-d772-90b84b6870e4'),(9,'ru_RU','Русский, Россия','Russian, Russia',',','RUB','','р.','d.m.Y','H:i:s',1,1,'e206a1c5-7416-09a1-6cc8-273025c497d6'),(10,'zh_CN','简体中文,中国','Simplified Chinese, China','.','CNY','元','','Y/m/d','H:i:s',1,1,'4bf152c6-2ccf-c809-8d7f-ec631ca380bd'),(11,'zh_TW','繁體中文,臺灣','Traditional Chinese, Taiwan','.','TWD','元','','Y/m/d','H:i:s',1,1,'1d23b5bd-26a7-60c2-bb8f-811cd4fe6252'); /*!40000 ALTER TABLE `locale` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `placeholder_value` -- DROP TABLE IF EXISTS `placeholder_value`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `placeholder_value` ( `id` int(11) NOT NULL AUTO_INCREMENT, `site_id` int(11) DEFAULT NULL, `name` varchar(255) NOT NULL DEFAULT '', `value` text NOT NULL, PRIMARY KEY (`id`), UNIQUE KEY `key_site_id_name` (`site_id`,`name`), KEY `key_site_id` (`site_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `placeholder_value` -- LOCK TABLES `placeholder_value` WRITE; /*!40000 ALTER TABLE `placeholder_value` DISABLE KEYS */; /*!40000 ALTER TABLE `placeholder_value` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `plan` -- DROP TABLE IF EXISTS `plan`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `plan` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(255) DEFAULT NULL, `description` varchar(255) DEFAULT NULL, `creation_date` varchar(25) NOT NULL DEFAULT '', `update_date` varchar(25) NOT NULL DEFAULT '', `max_pages` int(11) NOT NULL DEFAULT '0', `is_active` int(11) NOT NULL DEFAULT '1', `is_default` int(11) NOT NULL DEFAULT '0', `is_publication_settings_management_allowed` int(11) NOT NULL DEFAULT '0', `trial_life_time` int(11) NOT NULL DEFAULT '0', `trial_life_type_id` int(11) NOT NULL DEFAULT '0', `uuid` varchar(100) NOT NULL DEFAULT '0', `is_additional_site_content_allowed` int(11) NOT NULL DEFAULT '0', `additional_site_content` text NOT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `plan` -- LOCK TABLES `plan` WRITE; /*!40000 ALTER TABLE `plan` DISABLE KEYS */; INSERT INTO `plan` VALUES (1,'Root','','2011-03-15T18:08:02+01:00','2011-03-15T18:08:02+01:00',-1,0,0,1,30,1,'0874861b-0cfe-fa29-da3f-4ac8d07226b5',1,''),(2,'Default plan','','2011-03-15T18:08:02+01:00','2011-03-15T18:08:02+01:00',-1,1,1,1,30,1,'7913fbed-04d2-0b14-2fcb-c8387581be52',1,''); /*!40000 ALTER TABLE `plan` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `plan_host` -- DROP TABLE IF EXISTS `plan_host`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `plan_host` ( `id` int(11) NOT NULL AUTO_INCREMENT, `plan_id` int(11) NOT NULL DEFAULT '0', `host_id` int(11) NOT NULL DEFAULT '0', PRIMARY KEY (`id`), UNIQUE KEY `host_id_plan_id` (`host_id`,`plan_id`), KEY `plan_id` (`plan_id`), KEY `host_id` (`host_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `plan_host` -- LOCK TABLES `plan_host` WRITE; /*!40000 ALTER TABLE `plan_host` DISABLE KEYS */; /*!40000 ALTER TABLE `plan_host` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `plan_publish_mode` -- DROP TABLE IF EXISTS `plan_publish_mode`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `plan_publish_mode` ( `id` int(11) NOT NULL AUTO_INCREMENT, `plan_id` int(11) NOT NULL DEFAULT '0', `publish_mode_id` int(11) NOT NULL DEFAULT '0', PRIMARY KEY (`id`), UNIQUE KEY `mode_id_plan_id` (`publish_mode_id`,`plan_id`), KEY `plan_id` (`plan_id`), KEY `mode_id` (`publish_mode_id`) ) ENGINE=MyISAM AUTO_INCREMENT=5 DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `plan_publish_mode` -- LOCK TABLES `plan_publish_mode` WRITE; /*!40000 ALTER TABLE `plan_publish_mode` DISABLE KEYS */; INSERT INTO `plan_publish_mode` VALUES (1,1,1),(2,1,3),(3,2,1),(4,2,3); /*!40000 ALTER TABLE `plan_publish_mode` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `plan_template` -- DROP TABLE IF EXISTS `plan_template`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `plan_template` ( `id` int(11) NOT NULL AUTO_INCREMENT, `plan_id` int(11) NOT NULL DEFAULT '0', `template_id` int(11) NOT NULL DEFAULT '0', `is_trial` int(11) NOT NULL DEFAULT '0', PRIMARY KEY (`id`), UNIQUE KEY `template_id_plan_id` (`template_id`,`plan_id`), KEY `plan_id` (`plan_id`), KEY `template_id` (`template_id`) ) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `plan_template` -- LOCK TABLES `plan_template` WRITE; /*!40000 ALTER TABLE `plan_template` DISABLE KEYS */; INSERT INTO `plan_template` VALUES (1,1,1,0); /*!40000 ALTER TABLE `plan_template` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `publish_mode` -- DROP TABLE IF EXISTS `publish_mode`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `publish_mode` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(255) NOT NULL DEFAULT '', PRIMARY KEY (`id`) ) ENGINE=MyISAM AUTO_INCREMENT=4 DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `publish_mode` -- LOCK TABLES `publish_mode` WRITE; /*!40000 ALTER TABLE `publish_mode` DISABLE KEYS */; INSERT INTO `publish_mode` VALUES (1,'FTP'),(3,'XCopy'); /*!40000 ALTER TABLE `publish_mode` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `session` -- DROP TABLE IF EXISTS `session`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `session` ( `id` varchar(32) NOT NULL DEFAULT '', `modified` int(11) NOT NULL DEFAULT '0', `lifetime` int(11) NOT NULL DEFAULT '0', `data` longtext NOT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `session` -- LOCK TABLES `session` WRITE; /*!40000 ALTER TABLE `session` DISABLE KEYS */; /*!40000 ALTER TABLE `session` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `site` -- DROP TABLE IF EXISTS `site`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `site` ( `id` int(11) NOT NULL AUTO_INCREMENT, `dir_name` varchar(32) NOT NULL DEFAULT '', `site_id` varchar(32) NOT NULL DEFAULT '', `uuid` varchar(100) NOT NULL DEFAULT '0', `alias` varchar(255) NOT NULL DEFAULT '', `password` varchar(32) NOT NULL DEFAULT '', `creation_date` varchar(25) NOT NULL DEFAULT '', `template_id` int(11) DEFAULT NULL, `site_publish_settings_id` int(11) DEFAULT NULL, `is_active` int(11) NOT NULL DEFAULT '1', `logo` varchar(255) DEFAULT NULL, `color_scheme` varchar(255) DEFAULT NULL, `header` varchar(255) DEFAULT NULL, `button` varchar(255) DEFAULT NULL, `copyright` varchar(255) DEFAULT NULL, `company_name` varchar(255) DEFAULT NULL, `company_slogan` varchar(255) DEFAULT NULL, `pages_use_name` int(11) NOT NULL DEFAULT '1', `description` text, `keywords` text, `custom_head` text, `google_analytics_code` text, `locale_id` int(11) NOT NULL DEFAULT '0', `is_changed_since_last_publication` int(11) DEFAULT NULL, `site_page_id` int(11) DEFAULT NULL, `is_trial` int(11) NOT NULL DEFAULT '0', `plan_id` int(11) NOT NULL DEFAULT '0', `initial_site_template_id` int(11) DEFAULT '0', `site_owner_id` int(11) DEFAULT NULL, PRIMARY KEY (`id`), UNIQUE KEY `site_id` (`site_id`), UNIQUE KEY `uuid` (`uuid`), UNIQUE KEY `site_publish_setting_id` (`site_publish_settings_id`), KEY `template_id` (`template_id`), KEY `site_page_id` (`site_page_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `site` -- LOCK TABLES `site` WRITE; /*!40000 ALTER TABLE `site` DISABLE KEYS */; /*!40000 ALTER TABLE `site` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `site_design` -- DROP TABLE IF EXISTS `site_design`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `site_design` ( `id` int(11) NOT NULL AUTO_INCREMENT, `site_id` int(11) NOT NULL DEFAULT '0', `property_id` int(11) NOT NULL DEFAULT '0', `value` varchar(255) NOT NULL DEFAULT '', PRIMARY KEY (`id`), UNIQUE KEY `site_id_property` (`site_id`,`property_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `site_design` -- LOCK TABLES `site_design` WRITE; /*!40000 ALTER TABLE `site_design` DISABLE KEYS */; /*!40000 ALTER TABLE `site_design` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `site_owner` -- DROP TABLE IF EXISTS `site_owner`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `site_owner` ( `id` int(11) NOT NULL AUTO_INCREMENT, `personal_name` varchar(255) NOT NULL DEFAULT '', `company_name` varchar(255) NOT NULL DEFAULT '', `phone` varchar(255) NOT NULL DEFAULT '', `email` varchar(255) NOT NULL DEFAULT '', `address` varchar(255) NOT NULL DEFAULT '', `city` varchar(255) NOT NULL DEFAULT '', `country` varchar(255) NOT NULL DEFAULT '', PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `site_owner` -- LOCK TABLES `site_owner` WRITE; /*!40000 ALTER TABLE `site_owner` DISABLE KEYS */; /*!40000 ALTER TABLE `site_owner` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `site_page` -- DROP TABLE IF EXISTS `site_page`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `site_page` ( `id` int(11) NOT NULL AUTO_INCREMENT, `order_id` int(11) NOT NULL DEFAULT '0', `parent_id` int(11) NOT NULL DEFAULT '0', `site_page_type_id` int(11) NOT NULL DEFAULT '0', `title` varchar(255) NOT NULL DEFAULT '', `browser_title` varchar(255) NOT NULL DEFAULT '', `is_visible` int(11) NOT NULL DEFAULT '1', `keywords` text NOT NULL, `description` text NOT NULL, `file_name` varchar(255) DEFAULT '', `identity` varchar(255) DEFAULT '', `widget_id` int(11) DEFAULT '0', `login` varchar(255) DEFAULT NULL, `password` varchar(255) DEFAULT NULL, PRIMARY KEY (`id`), KEY `order_id` (`order_id`), KEY `parent_id` (`parent_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `site_page` -- LOCK TABLES `site_page` WRITE; /*!40000 ALTER TABLE `site_page` DISABLE KEYS */; /*!40000 ALTER TABLE `site_page` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `site_publication` -- DROP TABLE IF EXISTS `site_publication`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `site_publication` ( `id` int(11) NOT NULL AUTO_INCREMENT, `site_publish_settings_id` int(11) DEFAULT NULL, `site_id` int(11) NOT NULL DEFAULT '0', `version` varchar(15) NOT NULL DEFAULT '', `publication_time` int(11) NOT NULL DEFAULT '0', `uuid` varchar(100) DEFAULT '', PRIMARY KEY (`id`), KEY `site_id` (`site_id`), KEY `publication_time` (`publication_time`), KEY `site_publish_settings_id` (`site_publish_settings_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `site_publication` -- LOCK TABLES `site_publication` WRITE; /*!40000 ALTER TABLE `site_publication` DISABLE KEYS */; /*!40000 ALTER TABLE `site_publication` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `site_publish_settings` -- DROP TABLE IF EXISTS `site_publish_settings`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `site_publish_settings` ( `id` int(11) NOT NULL AUTO_INCREMENT, `host_id` int(11) DEFAULT '0', `uuid` varchar(100) NOT NULL DEFAULT '0', `target_url` text, `fallback_ip` varchar(255) DEFAULT NULL, `url` varchar(255) DEFAULT '', `is_mysql_used` int(11) NOT NULL DEFAULT '0', `mysql_host` varchar(255) DEFAULT '', `mysql_port` varchar(6) DEFAULT '', `mysql_user` varchar(255) DEFAULT '', `mysql_password` varchar(255) DEFAULT '', `mysql_database` varchar(255) DEFAULT '', `http_user` varchar(255) DEFAULT '', `http_password` varchar(255) DEFAULT '', `ftp_mode` varchar(7) DEFAULT '', PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `site_publish_settings` -- LOCK TABLES `site_publish_settings` WRITE; /*!40000 ALTER TABLE `site_publish_settings` DISABLE KEYS */; /*!40000 ALTER TABLE `site_publish_settings` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `site_template` -- DROP TABLE IF EXISTS `site_template`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `site_template` ( `id` int(11) NOT NULL AUTO_INCREMENT, `code` varchar(32) NOT NULL DEFAULT '', `site_template_category_id` int(11) NOT NULL DEFAULT '0', `version` varchar(16) NOT NULL DEFAULT '', PRIMARY KEY (`id`), UNIQUE KEY `code` (`code`) ) ENGINE=MyISAM AUTO_INCREMENT=66 DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `site_template` -- LOCK TABLES `site_template` WRITE; /*!40000 ALTER TABLE `site_template` DISABLE KEYS */; INSERT INTO `site_template` VALUES (1,'accounting_service',1,'1.0.0'),(2,'announcement',10,'1.0.0'),(3,'artist',6,'1.0.0'),(4,'association',4,'1.0.0'),(5,'band',6,'1.0.0'),(6,'band_fan',9,'1.0.0'),(7,'bricklayer',2,'1.0.0'),(8,'business_master',1,'1.0.0'),(9,'cafe',5,'1.0.0'),(10,'car_rental',1,'1.0.0'),(11,'car_repair',1,'1.0.0'),(12,'cargo_delivery',1,'1.0.0'),(13,'carpenter',2,'1.0.0'),(14,'charity_organization',4,'1.0.0'),(15,'clothes_store',3,'1.0.0'),(16,'coffee_shop',3,'1.0.0'),(17,'collection',9,'1.0.0'),(18,'construction_company',2,'1.0.0'),(19,'consulting_services',1,'1.0.0'),(20,'dance_studio',6,'1.0.0'),(21,'decorator',2,'1.0.0'),(22,'design_studio',6,'1.0.0'),(23,'designer',6,'1.0.0'),(24,'driving_school',8,'1.0.0'),(25,'electrician',2,'1.0.0'),(26,'environmental_organization',4,'1.0.0'),(27,'family',10,'1.0.0'),(28,'fitness_studio',7,'1.0.0'),(29,'generic',11,'1.0.0'),(30,'generic_shop',3,'1.0.0'),(31,'glazier',2,'1.0.0'),(32,'healthcare_center',7,'1.0.0'),(33,'hotel',5,'1.0.0'),(34,'house_painter',2,'1.0.0'),(35,'hvac',2,'1.0.0'),(36,'insurance_agency',1,'1.0.0'),(37,'language_school',8,'1.0.0'),(38,'language_travel',8,'1.0.0'),(39,'lawyer',1,'1.0.0'),(40,'library',4,'1.0.0'),(41,'movie_blog',9,'1.0.0'),(42,'movie_fan',9,'1.0.0'),(43,'museum',6,'1.0.0'),(44,'music_blog',9,'1.0.0'),(45,'musician',6,'1.0.0'),(46,'non_profit_organization',4,'1.0.0'),(47,'pet_shop',3,'1.0.0'),(48,'pharmacy',7,'1.0.0'),(49,'photographer',6,'1.0.0'),(50,'plumber',2,'1.0.0'),(51,'political_blog',9,'1.0.0'),(52,'political_party',4,'1.0.0'),(53,'portrait_studio',6,'1.0.0'),(54,'radio',4,'1.0.0'),(55,'religious_organization',4,'1.0.0'),(56,'residential_contractor',2,'1.0.0'),(57,'resume',10,'1.0.0'),(58,'roofer',2,'1.0.0'),(59,'seminar',4,'1.0.0'),(60,'sports_fan',9,'1.0.0'),(61,'theater',6,'1.0.0'),(62,'travel_agency',5,'1.0.0'),(63,'travel_blog',10,'1.0.0'),(64,'wedding',10,'1.0.0'),(65,'writer',6,'1.0.0'); /*!40000 ALTER TABLE `site_template` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `site_template_category` -- DROP TABLE IF EXISTS `site_template_category`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `site_template_category` ( `id` int(11) NOT NULL AUTO_INCREMENT, `code` varchar(255) NOT NULL DEFAULT '', PRIMARY KEY (`id`), UNIQUE KEY `code` (`code`) ) ENGINE=MyISAM AUTO_INCREMENT=12 DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `site_template_category` -- LOCK TABLES `site_template_category` WRITE; /*!40000 ALTER TABLE `site_template_category` DISABLE KEYS */; INSERT INTO `site_template_category` VALUES (1,'Services'),(2,'ConstructionHousing'),(3,'Retail'),(4,'Organization'),(5,'Entertainmentleisure'),(6,'ArtsDesign'),(7,'HealthSport'),(8,'Education'),(9,'FanHobby'),(10,'Personal'),(11,'Other'); /*!40000 ALTER TABLE `site_template_category` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `site_version` -- DROP TABLE IF EXISTS `site_version`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `site_version` ( `id` int(11) NOT NULL AUTO_INCREMENT, `site_id` int(11) NOT NULL DEFAULT '0', `version` int(11) NOT NULL DEFAULT '0', `chunk_version` varchar(8) DEFAULT NULL, `chunk` int(11) DEFAULT NULL, `finish_date` datetime DEFAULT NULL, PRIMARY KEY (`id`), UNIQUE KEY `key_site_id` (`site_id`), KEY `key_site_id_version` (`site_id`,`version`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `site_version` -- LOCK TABLES `site_version` WRITE; /*!40000 ALTER TABLE `site_version` DISABLE KEYS */; /*!40000 ALTER TABLE `site_version` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `template` -- DROP TABLE IF EXISTS `template`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `template` ( `id` int(11) NOT NULL AUTO_INCREMENT, `code` varchar(32) NOT NULL DEFAULT '', `name` varchar(32) NOT NULL DEFAULT '', `is_active` int(11) NOT NULL DEFAULT '1', `template_category_id` int(11) NOT NULL DEFAULT '0', `version` varchar(16) NOT NULL DEFAULT '', `defaults` varchar(128) NOT NULL DEFAULT '', `header_upload_support` int(11) DEFAULT NULL, `keywords` text, PRIMARY KEY (`id`), UNIQUE KEY `code` (`code`) ) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `template` -- LOCK TABLES `template` WRITE; /*!40000 ALTER TABLE `template` DISABLE KEYS */; INSERT INTO `template` VALUES (1,'generic','Generic',1,1,'5.0.0','logo.gif|headers1|buttons1',NULL,NULL); /*!40000 ALTER TABLE `template` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `template_category` -- DROP TABLE IF EXISTS `template_category`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `template_category` ( `id` int(11) NOT NULL AUTO_INCREMENT, `code` varchar(255) NOT NULL DEFAULT '', `name` varchar(255) NOT NULL DEFAULT '', PRIMARY KEY (`id`), UNIQUE KEY `code` (`code`) ) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `template_category` -- LOCK TABLES `template_category` WRITE; /*!40000 ALTER TABLE `template_category` DISABLE KEYS */; INSERT INTO `template_category` VALUES (1,'Generic','Generic'); /*!40000 ALTER TABLE `template_category` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `template_property` -- DROP TABLE IF EXISTS `template_property`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `template_property` ( `id` int(11) NOT NULL AUTO_INCREMENT, `template_id` int(11) NOT NULL DEFAULT '0', `property` varchar(255) NOT NULL DEFAULT '', `default_value` varchar(255) NOT NULL DEFAULT '', `category` int(11) NOT NULL DEFAULT '0', PRIMARY KEY (`id`), UNIQUE KEY `template_id_property` (`template_id`,`property`) ) ENGINE=MyISAM AUTO_INCREMENT=81 DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `template_property` -- LOCK TABLES `template_property` WRITE; /*!40000 ALTER TABLE `template_property` DISABLE KEYS */; INSERT INTO `template_property` VALUES (1,1,'color1','#aee3e0',1),(2,1,'color2','#edeed8',1),(3,1,'color3','#f38228',1),(4,1,'color4','#65cee3',1),(5,1,'type','fixed',2),(6,1,'width','780',2),(7,1,'sidebarFirst','0',2),(8,1,'sidebarFirstWidth','200',2),(9,1,'sidebarFirstPosition','left',2),(10,1,'sidebarSecond','0',2),(11,1,'sidebarSecondWidth','200',2),(12,1,'sidebarSecondPosition','right',2),(13,1,'verticalMargin','0',2),(14,1,'horizontalMargin','0',2),(15,1,'sidebarFirstMinHeight','200',2),(16,1,'sidebarSecondMinHeight','200',2),(17,1,'contentMinHeight','200',2),(18,1,'siteBackground','background-none',3),(19,1,'watermarkBackground','background-none',3),(20,1,'headerBackground','background-none',3),(21,1,'column1Background','background-none',3),(22,1,'column2Background','background-none',3),(23,1,'contentBackground','background-none',3),(24,1,'footerBackground','background-none',3),(25,1,'siteColor','',4),(26,1,'watermarkColor','',4),(27,1,'headerColor','',4),(28,1,'footerColor','',4),(29,1,'column1Color','',4),(30,1,'column2Color','',4),(31,1,'contentColor','',4),(32,1,'watermarkBorder','border1-black',5),(33,1,'headerBorder','border1-black',5),(34,1,'column1Border','border1-black',5),(35,1,'column2Border','border1-black',5),(36,1,'contentBorder','border1-black',5),(37,1,'footerBorder','border1-black',5),(38,1,'watermarkExternalBorder','external-border-none',6),(39,1,'textFont','Tahoma',7),(40,1,'textFontSize','13',7),(41,1,'textFontBold','0',7),(42,1,'textFontItalic','0',7),(43,1,'textFontUnderline','0',7),(44,1,'linkFontBold','0',7),(45,1,'linkFontItalic','0',7),(46,1,'linkFontUnderline','1',7),(47,1,'h1Font','Arial',7),(48,1,'h1FontSize','32',7),(49,1,'h1FontBold','1',7),(50,1,'h1FontItalic','0',7),(51,1,'h1FontUnderline','0',7),(52,1,'h2Font','Arial',7),(53,1,'h2FontSize','16',7),(54,1,'h2FontBold','1',7),(55,1,'h2FontItalic','0',7),(56,1,'h2FontUnderline','0',7),(57,1,'contentTextColor','',8),(58,1,'contentLinkColor','',8),(59,1,'contentH1Color','',8),(60,1,'contentH2Color','',8),(61,1,'headerTextColor','',8),(62,1,'headerLinkColor','',8),(63,1,'headerH1Color','',8),(64,1,'headerH2Color','',8),(65,1,'footerTextColor','',8),(66,1,'footerLinkColor','',8),(67,1,'footerH1Color','',8),(68,1,'footerH2Color','',8),(69,1,'column1TextColor','',8),(70,1,'column1LinkColor','',8),(71,1,'column1H1Color','',8),(72,1,'column1H2Color','',8),(73,1,'column2TextColor','',8),(74,1,'column2LinkColor','',8),(75,1,'column2H1Color','',8),(76,1,'column2H2Color','',8),(77,1,'logo','logo.gif',9),(78,1,'banner','headers1',9),(79,1,'customBanner','',9),(80,1,'button','buttons1',9); /*!40000 ALTER TABLE `template_property` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `template_property_category` -- DROP TABLE IF EXISTS `template_property_category`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `template_property_category` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(32) NOT NULL DEFAULT '', PRIMARY KEY (`id`) ) ENGINE=MyISAM AUTO_INCREMENT=10 DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `template_property_category` -- LOCK TABLES `template_property_category` WRITE; /*!40000 ALTER TABLE `template_property_category` DISABLE KEYS */; INSERT INTO `template_property_category` VALUES (1,'colorScheme'),(2,'layout'),(3,'background'),(4,'backgroundColor'),(5,'border'),(6,'external-border'),(7,'font'),(8,'fontColor'),(9,'custom'); /*!40000 ALTER TABLE `template_property_category` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `token_access` -- DROP TABLE IF EXISTS `token_access`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `token_access` ( `id` int(11) NOT NULL AUTO_INCREMENT, `token_id` varchar(32) DEFAULT '', `site_id` int(11) NOT NULL DEFAULT '0', `is_authorized` int(11) NOT NULL DEFAULT '0', `creation_date` varchar(25) DEFAULT '', `locale_id` int(11) NOT NULL DEFAULT '0', `skin_code` varchar(255) DEFAULT '', `session_id` varchar(32) DEFAULT '', `session_life_time` int(11) NOT NULL DEFAULT '0', `is_permanent` int(11) DEFAULT '0', PRIMARY KEY (`id`), UNIQUE KEY `session_id` (`session_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `token_access` -- LOCK TABLES `token_access` WRITE; /*!40000 ALTER TABLE `token_access` DISABLE KEYS */; /*!40000 ALTER TABLE `token_access` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `trial_life_type` -- DROP TABLE IF EXISTS `trial_life_type`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `trial_life_type` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(255) NOT NULL DEFAULT '', PRIMARY KEY (`id`) ) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `trial_life_type` -- LOCK TABLES `trial_life_type` WRITE; /*!40000 ALTER TABLE `trial_life_type` DISABLE KEYS */; INSERT INTO `trial_life_type` VALUES (1,'Day'),(2,'Hour'); /*!40000 ALTER TABLE `trial_life_type` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `upgrade` -- DROP TABLE IF EXISTS `upgrade`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `upgrade` ( `id` int(11) NOT NULL AUTO_INCREMENT, `version` varchar(8) NOT NULL DEFAULT '', `chunk` int(11) NOT NULL, `status` varchar(4) DEFAULT NULL, `finish_date` datetime DEFAULT NULL, PRIMARY KEY (`id`), UNIQUE KEY `key_upgrade_version_chunk` (`version`,`chunk`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `upgrade` -- LOCK TABLES `upgrade` WRITE; /*!40000 ALTER TABLE `upgrade` DISABLE KEYS */; /*!40000 ALTER TABLE `upgrade` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `view` -- DROP TABLE IF EXISTS `view`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `view` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(255) NOT NULL DEFAULT '', PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `view` -- LOCK TABLES `view` WRITE; /*!40000 ALTER TABLE `view` DISABLE KEYS */; /*!40000 ALTER TABLE `view` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `widget` -- DROP TABLE IF EXISTS `widget`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `widget` ( `id` int(11) NOT NULL AUTO_INCREMENT, `uuid` varchar(100) NOT NULL DEFAULT '0', `type_id` int(11) NOT NULL, PRIMARY KEY (`id`), UNIQUE KEY `key_uuid` (`uuid`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `widget` -- LOCK TABLES `widget` WRITE; /*!40000 ALTER TABLE `widget` DISABLE KEYS */; /*!40000 ALTER TABLE `widget` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `widget_contact_fields` -- DROP TABLE IF EXISTS `widget_contact_fields`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `widget_contact_fields` ( `id` int(11) NOT NULL AUTO_INCREMENT, `widget_id` int(11) NOT NULL DEFAULT '0', `name` varchar(100) NOT NULL DEFAULT '', `type` varchar(100) NOT NULL DEFAULT '', `title` varchar(255) NOT NULL DEFAULT '', `required` int(11) NOT NULL DEFAULT '1', `weight` int(11) NOT NULL DEFAULT '0', PRIMARY KEY (`id`), UNIQUE KEY `key_widget_id_name` (`widget_id`,`name`), KEY `key_widget_id` (`widget_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `widget_contact_fields` -- LOCK TABLES `widget_contact_fields` WRITE; /*!40000 ALTER TABLE `widget_contact_fields` DISABLE KEYS */; /*!40000 ALTER TABLE `widget_contact_fields` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `widget_container` -- DROP TABLE IF EXISTS `widget_container`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `widget_container` ( `id` int(11) NOT NULL AUTO_INCREMENT, `container_id` int(11) NOT NULL DEFAULT '0', `widget_id` int(11) NOT NULL DEFAULT '0', `position` int(11) NOT NULL DEFAULT '0', PRIMARY KEY (`id`), UNIQUE KEY `key_container_id_widget_id_position` (`container_id`,`widget_id`,`position`), KEY `key_container_id_position` (`container_id`,`position`), KEY `key_widget_id` (`widget_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `widget_container` -- LOCK TABLES `widget_container` WRITE; /*!40000 ALTER TABLE `widget_container` DISABLE KEYS */; /*!40000 ALTER TABLE `widget_container` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `widget_property` -- DROP TABLE IF EXISTS `widget_property`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `widget_property` ( `id` int(11) NOT NULL AUTO_INCREMENT, `widget_id` int(11) NOT NULL DEFAULT '0', `name` varchar(50) NOT NULL DEFAULT '', `value` text NOT NULL, PRIMARY KEY (`id`), UNIQUE KEY `key_widget_id_name` (`widget_id`,`name`), KEY `key_widget_id` (`widget_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `widget_property` -- LOCK TABLES `widget_property` WRITE; /*!40000 ALTER TABLE `widget_property` DISABLE KEYS */; /*!40000 ALTER TABLE `widget_property` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `widget_type` -- DROP TABLE IF EXISTS `widget_type`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `widget_type` ( `id` int(11) NOT NULL AUTO_INCREMENT, `code` varchar(20) DEFAULT '', `uuid` varchar(36) DEFAULT '', PRIMARY KEY (`id`), UNIQUE KEY `key_code` (`code`) ) ENGINE=MyISAM AUTO_INCREMENT=14 DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `widget_type` -- LOCK TABLES `widget_type` WRITE; /*!40000 ALTER TABLE `widget_type` DISABLE KEYS */; INSERT INTO `widget_type` VALUES (1,'container_fixed',''),(2,'container_vertical',''),(3,'text',''),(4,'header',''),(5,'navigation',''),(6,'contact',''),(7,'blog',''),(8,'shared_text',''),(9,'script',''),(10,'advertisement',''),(11,'search',''),(13,'breadcrumbs',''); /*!40000 ALTER TABLE `widget_type` ENABLE KEYS */; UNLOCK TABLES; -- -- Current Database: `tcpro` -- CREATE DATABASE /*!32312 IF NOT EXISTS*/ `tcpro` /*!40100 DEFAULT CHARACTER SET latin1 */; USE `tcpro`; -- -- Table structure for table `tcp_tc_absence` -- DROP TABLE IF EXISTS `tcp_tc_absence`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `tcp_tc_absence` ( `cfgsym` char(1) NOT NULL DEFAULT '', `cfgname` varchar(40) DEFAULT NULL, `dspsym` char(1) DEFAULT NULL, `dspname` varchar(40) DEFAULT NULL, `dspcolor` varchar(6) DEFAULT NULL, `dspbgcolor` varchar(6) DEFAULT NULL, `allowance` smallint(6) DEFAULT '0', `factor` float NOT NULL DEFAULT '1', `options` smallint(6) DEFAULT '0', `iconfile` varchar(100) DEFAULT NULL, PRIMARY KEY (`cfgsym`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tcp_tc_absence` -- LOCK TABLES `tcp_tc_absence` WRITE; /*!40000 ALTER TABLE `tcp_tc_absence` DISABLE KEYS */; INSERT INTO `tcp_tc_absence` VALUES ('.','present','','present','000000','FFFFFF',0,1,0,''),('U','a7105','U','Urlaub SM','UB','FF0000',0,0,6,''),('Z','a9620','Z','Zeitausgleich SM','ZA','FF9900',0,0,6,''),('K','a1993','K','Krankheit MO','KM','996600',0,0,4,''),('H','a7013','H','Heimarbeit SM','HM','009900',0,0,8,''); /*!40000 ALTER TABLE `tcp_tc_absence` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tcp_tc_absence_group` -- DROP TABLE IF EXISTS `tcp_tc_absence_group`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `tcp_tc_absence_group` ( `id` int(11) NOT NULL AUTO_INCREMENT, `absence` char(1) DEFAULT NULL, `group` varchar(40) DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM AUTO_INCREMENT=11 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tcp_tc_absence_group` -- LOCK TABLES `tcp_tc_absence_group` WRITE; /*!40000 ALTER TABLE `tcp_tc_absence_group` DISABLE KEYS */; INSERT INTO `tcp_tc_absence_group` VALUES (1,'.','DSSWien'),(2,'.','DSSLinz'),(3,'U','DSSLinz'),(4,'U','DSSWien'),(5,'Z','DSSLinz'),(6,'Z','DSSWien'),(7,'K','DSSLinz'),(8,'K','DSSWien'),(9,'H','DSSLinz'),(10,'H','DSSWien'); /*!40000 ALTER TABLE `tcp_tc_absence_group` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tcp_tc_allowance` -- DROP TABLE IF EXISTS `tcp_tc_allowance`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `tcp_tc_allowance` ( `id` int(11) NOT NULL AUTO_INCREMENT, `username` varchar(40) DEFAULT NULL, `abssym` char(1) DEFAULT NULL, `lastyear` smallint(6) DEFAULT '0', `curryear` smallint(6) DEFAULT '0', PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tcp_tc_allowance` -- LOCK TABLES `tcp_tc_allowance` WRITE; /*!40000 ALTER TABLE `tcp_tc_allowance` DISABLE KEYS */; /*!40000 ALTER TABLE `tcp_tc_allowance` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tcp_tc_announcements` -- DROP TABLE IF EXISTS `tcp_tc_announcements`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `tcp_tc_announcements` ( `id` int(11) NOT NULL AUTO_INCREMENT, `timestamp` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `text` text NOT NULL, `popup` tinyint(1) DEFAULT '0', `silent` tinyint(1) DEFAULT '1', PRIMARY KEY (`id`) ) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tcp_tc_announcements` -- LOCK TABLES `tcp_tc_announcements` WRITE; /*!40000 ALTER TABLE `tcp_tc_announcements` DISABLE KEYS */; INSERT INTO `tcp_tc_announcements` VALUES (1,'2010-06-24 05:35:39','Security Warning

You seem to have installed TeamCal Pro already. However, the installation.php file still exists. For security reasons you should delete it as soon as possible.

[TeamCal Pro Installation]
',1,0); /*!40000 ALTER TABLE `tcp_tc_announcements` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tcp_tc_config` -- DROP TABLE IF EXISTS `tcp_tc_config`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `tcp_tc_config` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(40) NOT NULL DEFAULT '', `value` varchar(160) NOT NULL DEFAULT '', PRIMARY KEY (`id`), KEY `name` (`name`) ) ENGINE=MyISAM AUTO_INCREMENT=55 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tcp_tc_config` -- LOCK TABLES `tcp_tc_config` WRITE; /*!40000 ALTER TABLE `tcp_tc_config` DISABLE KEYS */; INSERT INTO `tcp_tc_config` VALUES (1,'defgroupfilter','All'),(2,'defregion','default'),(3,'appSubTitle','Version 3.3.001'),(4,'appFooterCpy','Copyright &copy; 2010 by <a href="http://www.lewe.com" class="copyright" target="_blank">Lewe.com</a>.'),(5,'repeatHeaderCount','10'),(6,'todayBorderColor','FFCC00'),(7,'todayBorderSize','2'),(8,'pastDayColor',''),(9,'avatarWidth','100'),(10,'avatarHeight','140'),(11,'cookieLifetime','80000'),(12,'pwdLength','6'),(13,'badLogins','0'),(14,'gracePeriod','30'),(15,'mailFrom','TeamCal Pro 3.3'),(16,'mailReply','tcpro@myserver.com'),(17,'userCustom1','Custom 1'),(18,'userCustom2','Custom 2'),(19,'userCustom3','Custom 3'),(20,'userCustom4','Custom 4'),(21,'userCustom5','Custom 5'),(22,'repeatHeadersAfter','6'),(23,'repeatUsernamesAfter','5'),(24,'showMonths','1'),(25,'firstDayOfWeek','1'),(26,'showLanguage','1'),(27,'showGroup','1'),(28,'showRegion','1'),(29,'showToday','1'),(30,'showStart','1'),(31,'showWeekNumbers','1'),(32,'includeRemainder','1'),(33,'includeRemainderTotal','1'),(34,'includeTotals','1'),(35,'showRemainder','0'),(36,'includeSummary','1'),(37,'showSummary','0'),(38,'showUserIcons','1'),(39,'showAvatars','1'),(40,'debugHide','1'),(41,'publicMode','view'),(42,'registeredMode','view'),(43,'pwdStrength','1'),(44,'allowRegistration','1'),(45,'emailConfirmation','1'),(46,'adminApproval','1'),(47,'timeZone','America/Montreal'),(48,'emailNotifications','1'),(49,'theme','tcpro'),(50,'allowUserTheme','1'),(51,'hideManagers','0'),(52,'hideDaynotes','1'),(53,'defperiodfrom','2010-01-01'),(54,'defperiodto','2010-12-31'); /*!40000 ALTER TABLE `tcp_tc_config` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tcp_tc_daynotes` -- DROP TABLE IF EXISTS `tcp_tc_daynotes`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `tcp_tc_daynotes` ( `id` int(11) NOT NULL AUTO_INCREMENT, `yyyymmdd` varchar(8) DEFAULT NULL, `daynote` text, `username` varchar(40) NOT NULL DEFAULT 'all', `region` varchar(40) NOT NULL DEFAULT 'default', PRIMARY KEY (`id`), KEY `yyyymmdd` (`yyyymmdd`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tcp_tc_daynotes` -- LOCK TABLES `tcp_tc_daynotes` WRITE; /*!40000 ALTER TABLE `tcp_tc_daynotes` DISABLE KEYS */; /*!40000 ALTER TABLE `tcp_tc_daynotes` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tcp_tc_groups` -- DROP TABLE IF EXISTS `tcp_tc_groups`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `tcp_tc_groups` ( `groupname` varchar(40) NOT NULL DEFAULT '', `description` varchar(100) DEFAULT NULL, `options` smallint(6) DEFAULT '0', `min_present` smallint(6) NOT NULL DEFAULT '1', `max_absent` smallint(6) NOT NULL DEFAULT '1', PRIMARY KEY (`groupname`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tcp_tc_groups` -- LOCK TABLES `tcp_tc_groups` WRITE; /*!40000 ALTER TABLE `tcp_tc_groups` DISABLE KEYS */; INSERT INTO `tcp_tc_groups` VALUES ('DSSWien','Desktop & Server Solutions Wien',0,1,1),('DSSLinz','Desktop & Server Solutions Linz',0,1,1); /*!40000 ALTER TABLE `tcp_tc_groups` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tcp_tc_holidays` -- DROP TABLE IF EXISTS `tcp_tc_holidays`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `tcp_tc_holidays` ( `cfgsym` char(1) NOT NULL DEFAULT '', `cfgname` varchar(40) DEFAULT NULL, `dspsym` char(1) DEFAULT NULL, `dspname` varchar(40) DEFAULT NULL, `dspcolor` varchar(6) DEFAULT NULL, `dspbgcolor` varchar(6) DEFAULT NULL, `options` smallint(6) NOT NULL DEFAULT '0', PRIMARY KEY (`cfgsym`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tcp_tc_holidays` -- LOCK TABLES `tcp_tc_holidays` WRITE; /*!40000 ALTER TABLE `tcp_tc_holidays` DISABLE KEYS */; INSERT INTO `tcp_tc_holidays` VALUES ('1','wend','1','Wochenendtag','000000','FFFFCC',0),('0','busi','0','Arbeitstag','000000','FFFFFF',1); /*!40000 ALTER TABLE `tcp_tc_holidays` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tcp_tc_log` -- DROP TABLE IF EXISTS `tcp_tc_log`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `tcp_tc_log` ( `id` int(11) NOT NULL AUTO_INCREMENT, `type` varchar(40) DEFAULT NULL, `timestamp` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `user` varchar(40) DEFAULT NULL, `event` text, PRIMARY KEY (`id`), KEY `idx_occured` (`timestamp`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tcp_tc_log` -- LOCK TABLES `tcp_tc_log` WRITE; /*!40000 ALTER TABLE `tcp_tc_log` DISABLE KEYS */; /*!40000 ALTER TABLE `tcp_tc_log` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tcp_tc_months` -- DROP TABLE IF EXISTS `tcp_tc_months`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `tcp_tc_months` ( `yearmonth` varchar(6) NOT NULL DEFAULT '', `template` varchar(31) DEFAULT NULL, `region` varchar(40) NOT NULL DEFAULT 'default', PRIMARY KEY (`yearmonth`,`region`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tcp_tc_months` -- LOCK TABLES `tcp_tc_months` WRITE; /*!40000 ALTER TABLE `tcp_tc_months` DISABLE KEYS */; INSERT INTO `tcp_tc_months` VALUES ('201006','000011000001100000110000011000','default'),('201001','0110000011000001100000110000011','default'),('201002','0000011000001100000110000011','default'),('201003','0000011000001100000110000011000','default'),('201004','001100000110000011000001100000','default'),('201005','1100000110000011000001100000110','default'),('201007','0011000001100000110000011000001','default'),('201008','1000001100000110000011000001100','default'),('201009','000110000011000001100000110000','default'),('201010','0110000011000001100000110000011','default'),('201011','000001100000110000011000001100','default'),('201012','0001100000110000011000001100000','default'),('201109','001100000110000011000001100000','default'),('201110','1100000110000011000001100000110','default'),('201111','000011000001100000110000011000','default'),('201112','0011000001100000110000011000001','default'),('201201','1000001100000110000011000001100','default'),('201202','00011000001100000110000011000','default'),('201203','0011000001100000110000011000001','default'),('201204','100000110000011000001100000110','default'),('201205','0000110000011000001100000110000','default'),('201206','011000001100000110000011000001','default'),('201207','1000001100000110000011000001100','default'),('201208','0001100000110000011000001100000','default'),('201101','1100000110000011000001100000110','default'),('201102','0000110000011000001100000110','default'),('201103','0000110000011000001100000110000','default'),('201104','011000001100000110000011000001','default'),('201105','1000001100000110000011000001100','default'),('201106','000110000011000001100000110000','default'),('201107','0110000011000001100000110000011','default'),('201108','0000011000001100000110000011000','default'); /*!40000 ALTER TABLE `tcp_tc_months` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tcp_tc_regions` -- DROP TABLE IF EXISTS `tcp_tc_regions`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `tcp_tc_regions` ( `regionname` varchar(40) NOT NULL DEFAULT '', `description` varchar(100) DEFAULT NULL, `options` smallint(6) DEFAULT '0', PRIMARY KEY (`regionname`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tcp_tc_regions` -- LOCK TABLES `tcp_tc_regions` WRITE; /*!40000 ALTER TABLE `tcp_tc_regions` DISABLE KEYS */; INSERT INTO `tcp_tc_regions` VALUES ('default','Default Region',0),('Wien','SM Wien',0),('Linz','SM Linz',0); /*!40000 ALTER TABLE `tcp_tc_regions` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tcp_tc_templates` -- DROP TABLE IF EXISTS `tcp_tc_templates`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `tcp_tc_templates` ( `id` int(11) NOT NULL AUTO_INCREMENT, `username` varchar(40) DEFAULT NULL, `year` varchar(4) DEFAULT NULL, `month` char(2) DEFAULT NULL, `template` varchar(31) DEFAULT NULL, PRIMARY KEY (`id`), KEY `username` (`username`) ) ENGINE=MyISAM AUTO_INCREMENT=65 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tcp_tc_templates` -- LOCK TABLES `tcp_tc_templates` WRITE; /*!40000 ALTER TABLE `tcp_tc_templates` DISABLE KEYS */; INSERT INTO `tcp_tc_templates` VALUES (1,'AT01235','2010','06','.................U..UUUUU..UUU'),(2,'AT01337','2010','06','..............................'),(3,'AT01235','2010','01','...............................'),(4,'AT01337','2010','01','...............................'),(5,'AT01235','2010','02','............................'),(6,'AT01337','2010','02','............................'),(7,'AT01235','2010','03','...............................'),(8,'AT01337','2010','03','...............................'),(9,'AT01235','2010','04','..............................'),(10,'AT01337','2010','04','..............................'),(11,'AT01235','2010','05','...............................'),(12,'AT01337','2010','05','...............................'),(13,'AT01235','2010','07','...............................'),(14,'AT01337','2010','07','...............................'),(15,'AT01235','2010','08','...............................'),(16,'AT01337','2010','08','...............................'),(17,'AT01235','2010','09','..............................'),(18,'AT01337','2010','09','..............................'),(19,'AT01235','2010','10','...............................'),(20,'AT01337','2010','10','...............................'),(21,'AT01235','2010','11','..............................'),(22,'AT01337','2010','11','..............................'),(23,'AT01235','2010','12','...............................'),(24,'AT01337','2010','12','...............................'),(25,'AT01235','2011','09','..............................'),(26,'AT01337','2011','09','..............................'),(27,'AT01235','2011','10','...............................'),(28,'AT01337','2011','10','...............................'),(29,'AT01235','2011','11','..............................'),(30,'AT01337','2011','11','..............................'),(31,'AT01235','2011','12','...............................'),(32,'AT01337','2011','12','...............................'),(33,'AT01235','2012','01','...............................'),(34,'AT01337','2012','01','...............................'),(35,'AT01235','2012','02','.............................'),(36,'AT01337','2012','02','.............................'),(37,'AT01235','2012','03','...............................'),(38,'AT01337','2012','03','...............................'),(39,'AT01235','2012','04','..............................'),(40,'AT01337','2012','04','..............................'),(41,'AT01235','2012','05','...............................'),(42,'AT01337','2012','05','...............................'),(43,'AT01235','2012','06','..............................'),(44,'AT01337','2012','06','..............................'),(45,'AT01235','2012','07','...............................'),(46,'AT01337','2012','07','...............................'),(47,'AT01235','2012','08','...............................'),(48,'AT01337','2012','08','...............................'),(49,'AT01235','2011','01','...............................'),(50,'AT01337','2011','01','...............................'),(51,'AT01235','2011','02','............................'),(52,'AT01337','2011','02','............................'),(53,'AT01235','2011','03','...............................'),(54,'AT01337','2011','03','...............................'),(55,'AT01235','2011','04','..............................'),(56,'AT01337','2011','04','..............................'),(57,'AT01235','2011','05','...............................'),(58,'AT01337','2011','05','...............................'),(59,'AT01235','2011','06','..............................'),(60,'AT01337','2011','06','..............................'),(61,'AT01235','2011','07','...............................'),(62,'AT01337','2011','07','...............................'),(63,'AT01235','2011','08','...............................'),(64,'AT01337','2011','08','...............................'); /*!40000 ALTER TABLE `tcp_tc_templates` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tcp_tc_user_announcement` -- DROP TABLE IF EXISTS `tcp_tc_user_announcement`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `tcp_tc_user_announcement` ( `id` int(11) NOT NULL AUTO_INCREMENT, `username` varchar(40) DEFAULT NULL, `ats` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', PRIMARY KEY (`id`) ) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tcp_tc_user_announcement` -- LOCK TABLES `tcp_tc_user_announcement` WRITE; /*!40000 ALTER TABLE `tcp_tc_user_announcement` DISABLE KEYS */; /*!40000 ALTER TABLE `tcp_tc_user_announcement` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tcp_tc_user_group` -- DROP TABLE IF EXISTS `tcp_tc_user_group`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `tcp_tc_user_group` ( `id` int(11) NOT NULL AUTO_INCREMENT, `username` varchar(40) DEFAULT NULL, `groupname` varchar(40) DEFAULT NULL, `type` tinytext, PRIMARY KEY (`id`) ) ENGINE=MyISAM AUTO_INCREMENT=9 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tcp_tc_user_group` -- LOCK TABLES `tcp_tc_user_group` WRITE; /*!40000 ALTER TABLE `tcp_tc_user_group` DISABLE KEYS */; INSERT INTO `tcp_tc_user_group` VALUES (7,'AT01337','DSSWien','member'),(8,'AT01235','DSSWien','manager'); /*!40000 ALTER TABLE `tcp_tc_user_group` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tcp_tc_user_options` -- DROP TABLE IF EXISTS `tcp_tc_user_options`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `tcp_tc_user_options` ( `id` int(11) NOT NULL AUTO_INCREMENT, `username` varchar(40) DEFAULT NULL, `option` varchar(40) DEFAULT NULL, `value` text, PRIMARY KEY (`id`) ) ENGINE=MyISAM AUTO_INCREMENT=25 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tcp_tc_user_options` -- LOCK TABLES `tcp_tc_user_options` WRITE; /*!40000 ALTER TABLE `tcp_tc_user_options` DISABLE KEYS */; INSERT INTO `tcp_tc_user_options` VALUES (1,'admin','owngroupsonly','no'),(2,'admin','showbirthday','yes'),(3,'admin','ignoreage','no'),(4,'admin','language','deutsch'),(5,'admin','defgroup','default'),(6,'admin','notifybirthday','yes'),(7,'admin','deftheme','tcpro'),(8,'admin','defregion','default'),(9,'AT01337','owngroupsonly','no'),(10,'AT01337','showbirthday','yes'),(11,'AT01337','ignoreage','no'),(12,'AT01337','notifybirthday','yes'),(13,'AT01337','language','deutsch'),(14,'AT01337','defgroup','DSSWien'),(15,'AT01235','owngroupsonly','no'),(16,'AT01235','showbirthday','yes'),(17,'AT01235','ignoreage','no'),(18,'AT01235','notifybirthday','yes'),(19,'AT01235','language','deutsch'),(20,'AT01235','defgroup','DSSWien'),(21,'AT01235','defregion','Wien'),(22,'AT01235','deftheme','default'),(23,'AT01337','defregion','Wien'),(24,'AT01337','deftheme','default'); /*!40000 ALTER TABLE `tcp_tc_user_options` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tcp_tc_users` -- DROP TABLE IF EXISTS `tcp_tc_users`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `tcp_tc_users` ( `username` varchar(40) NOT NULL DEFAULT '', `password` varchar(40) DEFAULT NULL, `firstname` varchar(80) DEFAULT NULL, `lastname` varchar(80) DEFAULT NULL, `title` varchar(80) DEFAULT NULL, `position` varchar(80) DEFAULT NULL, `group` varchar(50) DEFAULT NULL, `phone` varchar(50) DEFAULT NULL, `mobile` varchar(50) DEFAULT NULL, `email` varchar(100) DEFAULT NULL, `notify` tinyint(4) DEFAULT '0', `notify_group` varchar(50) DEFAULT NULL, `status` tinyint(4) DEFAULT '0', `usertype` tinyint(4) DEFAULT '0', `ut_group` varchar(50) DEFAULT NULL, `privileges` tinyint(4) NOT NULL DEFAULT '1', `bad_logins` int(11) DEFAULT '0', `bad_logins_start` varchar(15) DEFAULT NULL, `last_pw_change` datetime DEFAULT NULL, `birthday` date DEFAULT NULL, `idnumber` varchar(40) DEFAULT NULL, `last_login` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `custom1` varchar(80) NOT NULL DEFAULT '', `custom2` varchar(80) NOT NULL DEFAULT '', `custom3` varchar(80) NOT NULL DEFAULT '', `custom4` varchar(80) NOT NULL DEFAULT '', `custom5` varchar(80) NOT NULL DEFAULT '', `customFree` text NOT NULL, `customPopup` text NOT NULL, PRIMARY KEY (`username`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tcp_tc_users` -- LOCK TABLES `tcp_tc_users` WRITE; /*!40000 ALTER TABLE `tcp_tc_users` DISABLE KEYS */; INSERT INTO `tcp_tc_users` VALUES ('admin','s7EsEoondSM46','MAM','Admin','','Administrator','none','','','mam@heimam.at',0,'All',0,12,'',0,0,'','2010-06-24 05:01:15','1971-11-11','4711','2010-06-24 05:35:39','','','','','','',''),('AT01337','s7MuuIoROZfb2','Markus','Mascelli','Mag.','Systems Manager & Technical Consultant','','+43-1-60543-2737','+43-664-6180378','markus.mascelli@atosorigin.com',0,'',0,9,'',0,0,'','0000-00-00 00:00:00','1971-11-11','450168','0000-00-00 00:00:00','','','','','','',''),('AT01235','s7MuuIoROZfb2','Christian','Elmer','Ing.','Teamleader SM','','+43-1-60543-1017','+43-664-6180410','christian.elmer@atosorigin.com',0,'',0,27,'',0,0,'','0000-00-00 00:00:00','1972-05-25','450150','0000-00-00 00:00:00','','','','','','',''); /*!40000 ALTER TABLE `tcp_tc_users` ENABLE KEYS */; UNLOCK TABLES; -- -- Current Database: `thwboard_webboard` -- CREATE DATABASE /*!32312 IF NOT EXISTS*/ `thwboard_webboard` /*!40100 DEFAULT CHARACTER SET latin1 */; USE `thwboard_webboard`; -- -- Table structure for table `webboard_adminlog` -- DROP TABLE IF EXISTS `webboard_adminlog`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `webboard_adminlog` ( `logid` int(10) unsigned NOT NULL AUTO_INCREMENT, `logtype` varchar(12) NOT NULL DEFAULT '', `logtime` int(10) unsigned NOT NULL DEFAULT '0', `loguser` varchar(64) NOT NULL DEFAULT '0', `logip` varchar(16) NOT NULL DEFAULT '', `logscript` varchar(32) NOT NULL DEFAULT '', `logaction` varchar(32) NOT NULL DEFAULT '', `lognotes` varchar(255) NOT NULL DEFAULT '', PRIMARY KEY (`logid`) ) ENGINE=MyISAM AUTO_INCREMENT=218 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `webboard_adminlog` -- LOCK TABLES `webboard_adminlog` WRITE; /*!40000 ALTER TABLE `webboard_adminlog` DISABLE KEYS */; INSERT INTO `webboard_adminlog` VALUES (1,'LOG_ADMIN',1149513206,'admin','','','',''),(2,'LOG_ADMIN',1149513328,'admin','','','EditSettings',''),(3,'LOG_ADMIN',1149513560,'admin','','','WriteSettings',''),(4,'LOG_ADMIN',1149513565,'admin','','','',''),(5,'LOG_ADMIN',1149513588,'admin','','','RenameCategory',''),(6,'LOG_ADMIN',1149513593,'admin','','','SetCategoryName',''),(7,'LOG_ADMIN',1149513596,'admin','','','',''),(8,'LOG_ADMIN',1149513599,'admin','','','edit',''),(9,'LOG_ADMIN',1149513643,'admin','','','edit',''),(10,'LOG_ADMIN',1149513646,'admin','','','',''),(11,'LOG_ADMIN',1149513654,'admin','','','newboard',''),(12,'LOG_ADMIN',1149513658,'admin','','','',''),(13,'LOG_ADMIN',1149513666,'admin','','','addcat',''),(14,'LOG_ADMIN',1149513671,'admin','','','addcat',''),(15,'LOG_ADMIN',1149513676,'admin','','','newboard',''),(16,'LOG_ADMIN',1149513711,'admin','','','newboard',''),(17,'LOG_ADMIN',1149513714,'admin','','','',''),(18,'LOG_ADMIN',1149513735,'admin','','','edit',''),(19,'LOG_ADMIN',1149513737,'admin','','','edit',''),(20,'LOG_ADMIN',1149513739,'admin','','','',''),(21,'LOG_ADMIN',1149513743,'admin','','','grouppermtable',''),(22,'LOG_ADMIN',1149513747,'admin','','','',''),(23,'LOG_ADMIN',1149513749,'admin','','','',''),(24,'LOG_ADMIN',1149513755,'admin','','','ListStyles',''),(25,'LOG_ADMIN',1149513851,'admin','','','ImportStyle',''),(26,'LOG_ADMIN',1149513856,'admin','','','ListStyles',''),(27,'LOG_ADMIN',1149513859,'admin','','','NewStyle',''),(28,'LOG_ADMIN',1149514007,'admin','','','InsertStyle',''),(29,'LOG_ADMIN',1149514014,'admin','','','',''),(30,'LOG_ADMIN',1149514017,'admin','','','edit',''),(31,'LOG_ADMIN',1149514023,'admin','','','edit',''),(32,'LOG_ADMIN',1149514038,'admin','','','NewStyle',''),(33,'LOG_ADMIN',1149514250,'admin','','','InsertStyle',''),(34,'LOG_ADMIN',1149514254,'admin','','','',''),(35,'LOG_ADMIN',1149514256,'admin','','','edit',''),(36,'LOG_ADMIN',1149514260,'admin','','','edit',''),(37,'LOG_ADMIN',1149514353,'admin','','','',''),(38,'LOG_ADMIN',1149514358,'admin','','','ListStyles',''),(39,'LOG_ADMIN',1149514359,'admin','','','EditStyle',''),(40,'LOG_ADMIN',1149514370,'admin','','','UpdateStyle',''),(41,'LOG_ADMIN',1149514375,'admin','','','ListStyles',''),(42,'LOG_ADMIN',1149514617,'admin','','','EditStyle',''),(43,'LOG_ADMIN',1149514621,'admin','','','',''),(44,'LOG_ADMIN',1149514623,'admin','','','RenameCategory',''),(45,'LOG_ADMIN',1149514625,'admin','','','',''),(46,'LOG_ADMIN',1149514627,'admin','','','edit',''),(47,'LOG_ADMIN',1149514634,'admin','','','edit',''),(48,'LOG_ADMIN',1149514636,'admin','','','',''),(49,'LOG_ADMIN',1149514637,'admin','','','edit',''),(50,'LOG_ADMIN',1149514641,'admin','','','edit',''),(51,'LOG_ADMIN',1149514645,'admin','','','',''),(52,'LOG_ADMIN',1149514648,'admin','','','edit',''),(53,'LOG_ADMIN',1149514651,'admin','','','edit',''),(54,'LOG_ADMIN',1185947981,'admin','62.178.39.180','index.php','',''),(55,'LOG_ADMIN',1185947999,'admin','62.178.39.180','boards.php','',''),(56,'LOG_MOD',1185948018,'admin','62.178.39.180','threadops.php','deleted','thread id: 5'),(57,'LOG_MOD',1185948027,'admin','62.178.39.180','threadops.php','deleted','thread id: 4'),(58,'LOG_MOD',1185948035,'admin','62.178.39.180','threadops.php','deleted','thread id: 3'),(59,'LOG_MOD',1185948041,'admin','62.178.39.180','threadops.php','deleted','thread id: 2'),(60,'LOG_MOD',1185948047,'admin','62.178.39.180','threadops.php','deleted','thread id: 1'),(61,'LOG_ADMIN',1187588127,'admin','62.178.39.180','index.php','',''),(62,'LOG_ADMIN',1187588160,'admin','62.178.39.180','index.php','',''),(63,'LOG_MOD',1187588173,'admin','62.178.39.180','threadops.php','deleted','thread id: 23'),(64,'LOG_MOD',1187588180,'admin','62.178.39.180','threadops.php','deleted','thread id: 22'),(65,'LOG_MOD',1187588188,'admin','62.178.39.180','threadops.php','deleted','thread id: 21'),(66,'LOG_MOD',1187588195,'admin','62.178.39.180','threadops.php','deleted','thread id: 6'),(67,'LOG_MOD',1187588202,'admin','62.178.39.180','threadops.php','deleted','thread id: 7'),(68,'LOG_MOD',1187588208,'admin','62.178.39.180','threadops.php','deleted','thread id: 8'),(69,'LOG_MOD',1187588216,'admin','62.178.39.180','threadops.php','deleted','thread id: 9'),(70,'LOG_MOD',1187588222,'admin','62.178.39.180','threadops.php','deleted','thread id: 11'),(71,'LOG_MOD',1187588228,'admin','62.178.39.180','threadops.php','deleted','thread id: 12'),(72,'LOG_MOD',1187588240,'admin','62.178.39.180','threadops.php','deleted','thread id: 13'),(73,'LOG_MOD',1187588246,'admin','62.178.39.180','threadops.php','deleted','thread id: 15'),(74,'LOG_MOD',1187588305,'admin','62.178.39.180','postops.php','reveal ip','post id:'),(75,'LOG_MOD',1187588314,'admin','62.178.39.180','postops.php','reveal ip','post id:'),(76,'LOG_MOD',1187588324,'admin','62.178.39.180','threadops.php','deleted','thread id: 20'),(77,'LOG_MOD',1187588331,'admin','62.178.39.180','threadops.php','deleted','thread id: 19'),(78,'LOG_MOD',1187588340,'admin','62.178.39.180','postops.php','reveal ip','post id:'),(79,'LOG_MOD',1187588345,'admin','62.178.39.180','threadops.php','deleted','thread id: 17'),(80,'LOG_MOD',1187588358,'admin','62.178.39.180','threadops.php','deleted','thread id: 16'),(81,'LOG_MOD',1187588365,'admin','62.178.39.180','threadops.php','deleted','thread id: 14'),(82,'LOG_MOD',1187588372,'admin','62.178.39.180','postops.php','reveal ip','post id:'),(83,'LOG_MOD',1187588442,'admin','62.178.39.180','threadops.php','deleted','thread id: 10'),(84,'LOG_MOD',1187588447,'admin','62.178.39.180','postops.php','reveal ip','post id:'),(85,'LOG_MOD',1187588475,'admin','62.178.39.180','threadops.php','deleted','thread id: 18'),(86,'LOG_ADMIN',1187588537,'admin','62.178.39.180','index.php','',''),(87,'LOG_ADMIN',1187588544,'admin','62.178.39.180','useredit.php','DeleteUser',''),(88,'LOG_ADMIN',1187588551,'admin','62.178.39.180','useredit.php','Filter',''),(89,'LOG_ADMIN',1187588555,'admin','62.178.39.180','useredit.php','ListUsers',''),(90,'LOG_ADMIN',1187588562,'admin','62.178.39.180','useredit.php','DeleteUser',''),(91,'LOG_ADMIN',1187588566,'admin','62.178.39.180','useredit.php','Filter',''),(92,'LOG_ADMIN',1187588567,'admin','62.178.39.180','useredit.php','ListUsers',''),(93,'LOG_ADMIN',1187588631,'admin','62.178.39.180','useredit.php','',''),(94,'LOG_ADMIN',1187588635,'admin','62.178.39.180','useredit.php','Filter',''),(95,'LOG_ADMIN',1187588637,'admin','62.178.39.180','useredit.php','ListUsers',''),(96,'LOG_ADMIN',1187588646,'admin','62.178.39.180','boards.php','',''),(97,'LOG_ADMIN',1187588651,'admin','62.178.39.180','boards.php','RenameCategory',''),(98,'LOG_ADMIN',1187588657,'admin','62.178.39.180','groups.php','grouppermtable',''),(99,'LOG_MOD',1187887246,'admin','193.80.57.6','threadops.php','deleted','thread id: 27'),(100,'LOG_MOD',1187887252,'admin','193.80.57.6','threadops.php','deleted','thread id: 26'),(101,'LOG_MOD',1187887258,'admin','193.80.57.6','threadops.php','deleted','thread id: 25'),(102,'LOG_MOD',1187887262,'admin','193.80.57.6','threadops.php','deleted','thread id: 24'),(103,'LOG_ADMIN',1187887272,'admin','193.80.57.6','index.php','',''),(104,'LOG_ADMIN',1187887283,'admin','193.80.57.6','boards.php','',''),(105,'LOG_ADMIN',1187887290,'admin','193.80.57.6','groups.php','grouppermtable',''),(106,'LOG_ADMIN',1187887294,'admin','193.80.57.6','boards.php','RenameCategory',''),(107,'LOG_ADMIN',1187887297,'admin','193.80.57.6','boards.php','edit',''),(108,'LOG_ADMIN',1187887308,'admin','193.80.57.6','boards.php','edit',''),(109,'LOG_ADMIN',1187887310,'admin','193.80.57.6','boards.php','',''),(110,'LOG_ADMIN',1187887328,'admin','193.80.57.6','boards.php','edit',''),(111,'LOG_ADMIN',1187887332,'admin','193.80.57.6','boards.php','edit',''),(112,'LOG_ADMIN',1187887335,'admin','193.80.57.6','boards.php','',''),(113,'LOG_ADMIN',1187887342,'admin','193.80.57.6','groups.php','grouppermtable',''),(114,'LOG_ADMIN',1187887352,'admin','193.80.57.6','index.php','',''),(115,'LOG_ADMIN',1194070558,'admin','62.178.39.180','index.php','',''),(116,'LOG_ADMIN',1194070714,'admin','62.178.39.180','boards.php','',''),(117,'LOG_ADMIN',1194070719,'admin','62.178.39.180','boards.php','RenameCategory',''),(118,'LOG_ADMIN',1194070725,'admin','62.178.39.180','boards.php','edit',''),(119,'LOG_ADMIN',1194070748,'admin','62.178.39.180','boards.php','',''),(120,'LOG_ADMIN',1194070750,'admin','62.178.39.180','groups.php','grouppermtable',''),(121,'LOG_ADMIN',1194070768,'admin','62.178.39.180','index.php','',''),(122,'LOG_ADMIN',1194070779,'admin','62.178.39.180','useredit.php','Filter',''),(123,'LOG_ADMIN',1194070787,'admin','62.178.39.180','users.php','bans',''),(124,'LOG_ADMIN',1194070796,'admin','62.178.39.180','useredit.php','DeleteUser',''),(125,'LOG_ADMIN',1194070800,'admin','62.178.39.180','boards.php','',''),(126,'LOG_ADMIN',1194070808,'admin','62.178.39.180','boards.php','RenameCategory',''),(127,'LOG_ADMIN',1194070818,'admin','62.178.39.180','boards.php','edit',''),(128,'LOG_ADMIN',1194070824,'admin','62.178.39.180','groups.php','grouppermtable',''),(129,'LOG_ADMIN',1194070854,'admin','62.178.39.180','groups.php','editgroupboard',''),(130,'LOG_ADMIN',1194070879,'admin','62.178.39.180','index.php','EditSettings',''),(131,'LOG_ADMIN',1194070948,'admin','62.178.39.180','index.php','WriteSettings',''),(132,'LOG_ADMIN',1194070956,'admin','62.178.39.180','index.php','',''),(133,'LOG_MOD',1194070971,'admin','62.178.39.180','postops.php','reveal ip','post id:'),(134,'LOG_MOD',1194070979,'admin','62.178.39.180','postops.php','reveal ip','post id:'),(135,'LOG_MOD',1194070986,'admin','62.178.39.180','threadops.php','deleted','thread id: 104'),(136,'LOG_MOD',1194070992,'admin','62.178.39.180','threadops.php','deleted','thread id: 103'),(137,'LOG_MOD',1194071004,'admin','62.178.39.180','threadops.php','deleted','thread id: 102'),(138,'LOG_MOD',1194071008,'admin','62.178.39.180','threadops.php','deleted','thread id: 101'),(139,'LOG_MOD',1194071015,'admin','62.178.39.180','threadops.php','deleted','thread id: 100'),(140,'LOG_MOD',1194071020,'admin','62.178.39.180','threadops.php','deleted','thread id: 99'),(141,'LOG_MOD',1194071039,'admin','62.178.39.180','threadops.php','deleted','thread id: 98'),(142,'LOG_MOD',1194071046,'admin','62.178.39.180','threadops.php','deleted','thread id: 97'),(143,'LOG_MOD',1194071052,'admin','62.178.39.180','threadops.php','deleted','thread id: 96'),(144,'LOG_MOD',1194071058,'admin','62.178.39.180','threadops.php','deleted','thread id: 95'),(145,'LOG_MOD',1194071066,'admin','62.178.39.180','threadops.php','deleted','thread id: 94'),(146,'LOG_MOD',1194071071,'admin','62.178.39.180','threadops.php','deleted','thread id: 93'),(147,'LOG_MOD',1194071081,'admin','62.178.39.180','threadops.php','deleted','thread id: 92'),(148,'LOG_MOD',1194071085,'admin','62.178.39.180','threadops.php','deleted','thread id: 91'),(149,'LOG_MOD',1194071091,'admin','62.178.39.180','threadops.php','deleted','thread id: 90'),(150,'LOG_MOD',1194071095,'admin','62.178.39.180','threadops.php','deleted','thread id: 89'),(151,'LOG_MOD',1194071102,'admin','62.178.39.180','threadops.php','deleted','thread id: 88'),(152,'LOG_MOD',1194071108,'admin','62.178.39.180','threadops.php','deleted','thread id: 87'),(153,'LOG_MOD',1194071113,'admin','62.178.39.180','threadops.php','deleted','thread id: 86'),(154,'LOG_MOD',1194071117,'admin','62.178.39.180','threadops.php','deleted','thread id: 85'),(155,'LOG_MOD',1194071146,'admin','62.178.39.180','threadops.php','deleted','thread id: 84'),(156,'LOG_MOD',1194071170,'admin','62.178.39.180','threadops.php','deleted','thread id: 83'),(157,'LOG_MOD',1194071174,'admin','62.178.39.180','threadops.php','deleted','thread id: 82'),(158,'LOG_MOD',1194071189,'admin','62.178.39.180','threadops.php','deleted','thread id: 81'),(159,'LOG_MOD',1194071192,'admin','62.178.39.180','threadops.php','deleted','thread id: 80'),(160,'LOG_MOD',1194071198,'admin','62.178.39.180','threadops.php','deleted','thread id: 79'),(161,'LOG_MOD',1194071203,'admin','62.178.39.180','threadops.php','deleted','thread id: 78'),(162,'LOG_MOD',1194071227,'admin','62.178.39.180','threadops.php','deleted','thread id: 77'),(163,'LOG_MOD',1194071232,'admin','62.178.39.180','threadops.php','deleted','thread id: 76'),(164,'LOG_MOD',1194071240,'admin','62.178.39.180','threadops.php','deleted','thread id: 75'),(165,'LOG_MOD',1194071248,'admin','62.178.39.180','threadops.php','deleted','thread id: 74'),(166,'LOG_MOD',1194071259,'admin','62.178.39.180','threadops.php','deleted','thread id: 73'),(167,'LOG_MOD',1194071264,'admin','62.178.39.180','threadops.php','deleted','thread id: 72'),(168,'LOG_MOD',1194071268,'admin','62.178.39.180','threadops.php','deleted','thread id: 71'),(169,'LOG_MOD',1194071301,'admin','62.178.39.180','threadops.php','deleted','thread id: 70'),(170,'LOG_MOD',1194071318,'admin','62.178.39.180','threadops.php','deleted','thread id: 69'),(171,'LOG_MOD',1194071344,'admin','62.178.39.180','threadops.php','deleted','thread id: 68'),(172,'LOG_MOD',1194071348,'admin','62.178.39.180','threadops.php','deleted','thread id: 67'),(173,'LOG_MOD',1194071352,'admin','62.178.39.180','threadops.php','deleted','thread id: 66'),(174,'LOG_MOD',1194071357,'admin','62.178.39.180','threadops.php','deleted','thread id: 65'),(175,'LOG_MOD',1194071362,'admin','62.178.39.180','threadops.php','deleted','thread id: 64'),(176,'LOG_MOD',1194071367,'admin','62.178.39.180','threadops.php','deleted','thread id: 63'),(177,'LOG_MOD',1194071372,'admin','62.178.39.180','threadops.php','deleted','thread id: 62'),(178,'LOG_MOD',1194071377,'admin','62.178.39.180','threadops.php','deleted','thread id: 61'),(179,'LOG_MOD',1194071400,'admin','62.178.39.180','threadops.php','deleted','thread id: 60'),(180,'LOG_MOD',1194071403,'admin','62.178.39.180','threadops.php','deleted','thread id: 59'),(181,'LOG_MOD',1194071409,'admin','62.178.39.180','threadops.php','deleted','thread id: 58'),(182,'LOG_MOD',1194071417,'admin','62.178.39.180','threadops.php','deleted','thread id: 57'),(183,'LOG_MOD',1194071420,'admin','62.178.39.180','threadops.php','deleted','thread id: 56'),(184,'LOG_MOD',1194071432,'admin','62.178.39.180','threadops.php','deleted','thread id: 55'),(185,'LOG_MOD',1194071436,'admin','62.178.39.180','threadops.php','deleted','thread id: 54'),(186,'LOG_MOD',1194071465,'admin','62.178.39.180','threadops.php','deleted','thread id: 53'),(187,'LOG_MOD',1194071487,'admin','62.178.39.180','threadops.php','deleted','thread id: 52'),(188,'LOG_MOD',1194071491,'admin','62.178.39.180','threadops.php','deleted','thread id: 51'),(189,'LOG_MOD',1194071514,'admin','62.178.39.180','threadops.php','deleted','thread id: 50'),(190,'LOG_MOD',1194071518,'admin','62.178.39.180','threadops.php','deleted','thread id: 49'),(191,'LOG_MOD',1194071541,'admin','62.178.39.180','threadops.php','deleted','thread id: 48'),(192,'LOG_MOD',1194071546,'admin','62.178.39.180','threadops.php','deleted','thread id: 47'),(193,'LOG_MOD',1194071549,'admin','62.178.39.180','threadops.php','deleted','thread id: 46'),(194,'LOG_MOD',1194071577,'admin','62.178.39.180','threadops.php','deleted','thread id: 45'),(195,'LOG_MOD',1194071582,'admin','62.178.39.180','threadops.php','deleted','thread id: 44'),(196,'LOG_MOD',1194071585,'admin','62.178.39.180','threadops.php','deleted','thread id: 43'),(197,'LOG_MOD',1194071590,'admin','62.178.39.180','threadops.php','deleted','thread id: 42'),(198,'LOG_MOD',1194071595,'admin','62.178.39.180','threadops.php','deleted','thread id: 41'),(199,'LOG_MOD',1194071599,'admin','62.178.39.180','threadops.php','deleted','thread id: 40'),(200,'LOG_MOD',1194071603,'admin','62.178.39.180','threadops.php','deleted','thread id: 39'),(201,'LOG_MOD',1194071606,'admin','62.178.39.180','threadops.php','deleted','thread id: 38'),(202,'LOG_MOD',1194071609,'admin','62.178.39.180','threadops.php','deleted','thread id: 37'),(203,'LOG_MOD',1194071612,'admin','62.178.39.180','threadops.php','deleted','thread id: 36'),(204,'LOG_MOD',1194071616,'admin','62.178.39.180','threadops.php','deleted','thread id: 35'),(205,'LOG_MOD',1194071631,'admin','62.178.39.180','threadops.php','deleted','thread id: 34'),(206,'LOG_MOD',1194071635,'admin','62.178.39.180','threadops.php','deleted','thread id: 33'),(207,'LOG_MOD',1194071638,'admin','62.178.39.180','threadops.php','deleted','thread id: 32'),(208,'LOG_MOD',1194071656,'admin','62.178.39.180','threadops.php','deleted','thread id: 30'),(209,'LOG_MOD',1194071660,'admin','62.178.39.180','threadops.php','deleted','thread id: 29'),(210,'LOG_MOD',1194071664,'admin','62.178.39.180','threadops.php','deleted','thread id: 28'),(211,'LOG_MOD',1194071819,'admin','62.178.39.180','threadops.php','deleted','thread id: 31'),(212,'LOG_ADMIN',1194071852,'admin','62.178.39.180','index.php','',''),(213,'LOG_ADMIN',1194071857,'admin','62.178.39.180','useredit.php','Filter',''),(214,'LOG_ADMIN',1194071859,'admin','62.178.39.180','useredit.php','ListUsers',''),(215,'LOG_ADMIN',1194072051,'admin','62.178.39.180','useredit.php','',''),(216,'LOG_ADMIN',1194072063,'admin','62.178.39.180','useredit.php','Filter',''),(217,'LOG_ADMIN',1194072064,'admin','62.178.39.180','useredit.php','ListUsers',''); /*!40000 ALTER TABLE `webboard_adminlog` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `webboard_avatar` -- DROP TABLE IF EXISTS `webboard_avatar`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `webboard_avatar` ( `avatarid` int(8) unsigned NOT NULL AUTO_INCREMENT, `avatarname` varchar(128) NOT NULL DEFAULT '', `avatarurl` varchar(255) NOT NULL DEFAULT '', PRIMARY KEY (`avatarid`), UNIQUE KEY `avatarname` (`avatarname`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `webboard_avatar` -- LOCK TABLES `webboard_avatar` WRITE; /*!40000 ALTER TABLE `webboard_avatar` DISABLE KEYS */; /*!40000 ALTER TABLE `webboard_avatar` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `webboard_ban` -- DROP TABLE IF EXISTS `webboard_ban`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `webboard_ban` ( `banid` int(10) unsigned NOT NULL AUTO_INCREMENT, `userid` int(10) unsigned NOT NULL DEFAULT '0', `banpubreason` mediumtext NOT NULL, `banreason` mediumtext NOT NULL, `bansetbyid` int(10) unsigned NOT NULL DEFAULT '0', `banexpire` int(10) unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`banid`), KEY `userid` (`userid`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `webboard_ban` -- LOCK TABLES `webboard_ban` WRITE; /*!40000 ALTER TABLE `webboard_ban` DISABLE KEYS */; /*!40000 ALTER TABLE `webboard_ban` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `webboard_bannedwords` -- DROP TABLE IF EXISTS `webboard_bannedwords`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `webboard_bannedwords` ( `wordid` int(11) NOT NULL AUTO_INCREMENT, `banword` varchar(128) NOT NULL DEFAULT '', `modword` varchar(128) NOT NULL DEFAULT '', `ispartofword` tinyint(1) NOT NULL DEFAULT '0', PRIMARY KEY (`wordid`), UNIQUE KEY `banword` (`banword`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `webboard_bannedwords` -- LOCK TABLES `webboard_bannedwords` WRITE; /*!40000 ALTER TABLE `webboard_bannedwords` DISABLE KEYS */; /*!40000 ALTER TABLE `webboard_bannedwords` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `webboard_board` -- DROP TABLE IF EXISTS `webboard_board`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `webboard_board` ( `boardid` int(10) unsigned NOT NULL AUTO_INCREMENT, `boardname` varchar(255) NOT NULL DEFAULT '', `boardlastpost` int(11) unsigned NOT NULL DEFAULT '0', `boardthreads` int(10) unsigned NOT NULL DEFAULT '0', `boardposts` int(10) unsigned NOT NULL DEFAULT '0', `boarddescription` text NOT NULL, `categoryid` int(11) unsigned NOT NULL DEFAULT '0', `boardorder` int(11) unsigned NOT NULL DEFAULT '0', `styleid` int(10) unsigned NOT NULL DEFAULT '0', `boardlastpostby` varchar(64) NOT NULL DEFAULT '', `boardthreadtopic` varchar(255) NOT NULL DEFAULT '', `boardthreadid` int(10) unsigned NOT NULL DEFAULT '0', `boarddisabled` tinyint(1) unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`boardid`), KEY `boardid` (`boardid`) ) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `webboard_board` -- LOCK TABLES `webboard_board` WRITE; /*!40000 ALTER TABLE `webboard_board` DISABLE KEYS */; INSERT INTO `webboard_board` VALUES (1,'ao-colegas',0,0,0,'Atos Origin Colleagues\' Webboard',1,1,0,'','',0,0),(2,'heimam',0,0,0,'heimam\'s Webboard',2,1,3,'','',0,0); /*!40000 ALTER TABLE `webboard_board` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `webboard_calendar` -- DROP TABLE IF EXISTS `webboard_calendar`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `webboard_calendar` ( `eventid` int(11) NOT NULL AUTO_INCREMENT, `eventtime` date DEFAULT NULL, `eventsubject` varchar(255) DEFAULT NULL, `eventtext` text, `eventactive` smallint(1) NOT NULL DEFAULT '1', `userid` int(10) unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`eventid`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `webboard_calendar` -- LOCK TABLES `webboard_calendar` WRITE; /*!40000 ALTER TABLE `webboard_calendar` DISABLE KEYS */; /*!40000 ALTER TABLE `webboard_calendar` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `webboard_category` -- DROP TABLE IF EXISTS `webboard_category`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `webboard_category` ( `categoryid` int(11) unsigned NOT NULL AUTO_INCREMENT, `categoryname` varchar(250) NOT NULL DEFAULT '', `categoryorder` int(11) unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`categoryid`), KEY `categoryid` (`categoryid`) ) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `webboard_category` -- LOCK TABLES `webboard_category` WRITE; /*!40000 ALTER TABLE `webboard_category` DISABLE KEYS */; INSERT INTO `webboard_category` VALUES (1,'public',1),(2,'private',2); /*!40000 ALTER TABLE `webboard_category` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `webboard_group` -- DROP TABLE IF EXISTS `webboard_group`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `webboard_group` ( `groupid` int(10) unsigned NOT NULL AUTO_INCREMENT, `name` varchar(128) NOT NULL DEFAULT '', `accessmask` int(10) unsigned NOT NULL DEFAULT '0', `nodelete` tinyint(1) unsigned NOT NULL DEFAULT '0', `title` varchar(255) NOT NULL DEFAULT '', `titlepriority` int(11) NOT NULL DEFAULT '0', PRIMARY KEY (`groupid`) ) ENGINE=MyISAM AUTO_INCREMENT=5 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `webboard_group` -- LOCK TABLES `webboard_group` WRITE; /*!40000 ALTER TABLE `webboard_group` DISABLE KEYS */; INSERT INTO `webboard_group` VALUES (1,'Default Group',135,1,'',0),(2,'Guest Group',1,1,'',0),(3,'Admin Group',4194303,1,'Administrator',0),(4,'Moderator Group',1806767,1,'Moderator',0); /*!40000 ALTER TABLE `webboard_group` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `webboard_groupboard` -- DROP TABLE IF EXISTS `webboard_groupboard`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `webboard_groupboard` ( `boardid` int(10) unsigned NOT NULL DEFAULT '0', `groupid` int(10) unsigned NOT NULL DEFAULT '0', `accessmask` int(10) unsigned NOT NULL DEFAULT '0', KEY `boardid` (`boardid`,`groupid`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `webboard_groupboard` -- LOCK TABLES `webboard_groupboard` WRITE; /*!40000 ALTER TABLE `webboard_groupboard` DISABLE KEYS */; /*!40000 ALTER TABLE `webboard_groupboard` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `webboard_lastvisited` -- DROP TABLE IF EXISTS `webboard_lastvisited`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `webboard_lastvisited` ( `boardid` int(10) unsigned NOT NULL DEFAULT '0', `userid` int(10) unsigned NOT NULL DEFAULT '0', `lastvisitedtime` int(10) unsigned NOT NULL DEFAULT '0', KEY `useridboardid` (`userid`,`boardid`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `webboard_lastvisited` -- LOCK TABLES `webboard_lastvisited` WRITE; /*!40000 ALTER TABLE `webboard_lastvisited` DISABLE KEYS */; INSERT INTO `webboard_lastvisited` VALUES (1,1,1194071820); /*!40000 ALTER TABLE `webboard_lastvisited` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `webboard_news` -- DROP TABLE IF EXISTS `webboard_news`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `webboard_news` ( `newsid` int(11) NOT NULL AUTO_INCREMENT, `newstopic` varchar(250) NOT NULL DEFAULT '', `newstext` mediumtext NOT NULL, `newstime` int(11) NOT NULL DEFAULT '0', `boardid` varchar(255) NOT NULL DEFAULT '', PRIMARY KEY (`newsid`), KEY `newsid` (`newsid`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `webboard_news` -- LOCK TABLES `webboard_news` WRITE; /*!40000 ALTER TABLE `webboard_news` DISABLE KEYS */; /*!40000 ALTER TABLE `webboard_news` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `webboard_online` -- DROP TABLE IF EXISTS `webboard_online`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `webboard_online` ( `onlineid` int(10) unsigned NOT NULL AUTO_INCREMENT, `onlineip` varchar(16) NOT NULL DEFAULT '', `onlinetime` int(10) unsigned NOT NULL DEFAULT '0', `userid` int(10) unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`onlineid`), KEY `onlinetime` (`onlinetime`) ) ENGINE=MyISAM AUTO_INCREMENT=1290428 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `webboard_online` -- LOCK TABLES `webboard_online` WRITE; /*!40000 ALTER TABLE `webboard_online` DISABLE KEYS */; INSERT INTO `webboard_online` VALUES (1290425,'164.132.161.95',1517442837,0),(1290426,'66.249.70.27',1517442969,0),(1290427,'66.249.64.66',1517442972,0); /*!40000 ALTER TABLE `webboard_online` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `webboard_pm` -- DROP TABLE IF EXISTS `webboard_pm`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `webboard_pm` ( `pmid` int(10) unsigned NOT NULL AUTO_INCREMENT, `pmfromid` int(10) unsigned NOT NULL DEFAULT '0', `pmtoid` int(10) unsigned NOT NULL DEFAULT '0', `pmtopic` varchar(128) NOT NULL DEFAULT '', `pmtext` mediumtext NOT NULL, `pmtime` int(10) unsigned NOT NULL DEFAULT '0', `pmflags` tinyint(4) NOT NULL DEFAULT '0', `pmfolder` tinyint(1) unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`pmid`), KEY `pmid` (`pmid`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `webboard_pm` -- LOCK TABLES `webboard_pm` WRITE; /*!40000 ALTER TABLE `webboard_pm` DISABLE KEYS */; /*!40000 ALTER TABLE `webboard_pm` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `webboard_post` -- DROP TABLE IF EXISTS `webboard_post`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `webboard_post` ( `postid` int(10) unsigned NOT NULL AUTO_INCREMENT, `posttime` int(11) unsigned DEFAULT NULL, `posttext` text NOT NULL, `userid` int(10) unsigned NOT NULL DEFAULT '0', `postguestname` varchar(64) NOT NULL DEFAULT '', `threadid` int(11) unsigned NOT NULL DEFAULT '0', `postemailnotify` tinyint(1) unsigned NOT NULL DEFAULT '0', `postip` varchar(16) NOT NULL DEFAULT '', `postsmilies` tinyint(1) NOT NULL DEFAULT '0', `postcode` tinyint(1) NOT NULL DEFAULT '0', `postsignature` tinyint(1) NOT NULL DEFAULT '0', `postlasteditby` varchar(64) NOT NULL DEFAULT '', `postlastedittime` int(10) unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`postid`), KEY `postid` (`postid`), KEY `userid` (`userid`), KEY `threadid` (`threadid`,`userid`) ) ENGINE=MyISAM AUTO_INCREMENT=105 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `webboard_post` -- LOCK TABLES `webboard_post` WRITE; /*!40000 ALTER TABLE `webboard_post` DISABLE KEYS */; /*!40000 ALTER TABLE `webboard_post` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `webboard_qlink` -- DROP TABLE IF EXISTS `webboard_qlink`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `webboard_qlink` ( `linkid` int(3) unsigned NOT NULL AUTO_INCREMENT, `linkcaption` varchar(50) NOT NULL DEFAULT '', `linkalt` varchar(255) NOT NULL DEFAULT '', `linkhttp` text NOT NULL, `linkcounter` int(11) unsigned NOT NULL DEFAULT '0', `linkactive` int(1) unsigned NOT NULL DEFAULT '1', PRIMARY KEY (`linkid`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `webboard_qlink` -- LOCK TABLES `webboard_qlink` WRITE; /*!40000 ALTER TABLE `webboard_qlink` DISABLE KEYS */; /*!40000 ALTER TABLE `webboard_qlink` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `webboard_rank` -- DROP TABLE IF EXISTS `webboard_rank`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `webboard_rank` ( `rankid` int(10) unsigned NOT NULL AUTO_INCREMENT, `ranktitle` varchar(255) NOT NULL DEFAULT '', `rankimage` varchar(255) NOT NULL DEFAULT '', `rankposts` int(10) unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`rankid`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `webboard_rank` -- LOCK TABLES `webboard_rank` WRITE; /*!40000 ALTER TABLE `webboard_rank` DISABLE KEYS */; /*!40000 ALTER TABLE `webboard_rank` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `webboard_registry` -- DROP TABLE IF EXISTS `webboard_registry`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `webboard_registry` ( `keyname` varchar(255) NOT NULL DEFAULT '', `keyvalue` mediumtext NOT NULL, `keytype` enum('string','integer','boolean','array') NOT NULL DEFAULT 'string', `keydescription` varchar(32) NOT NULL DEFAULT '', `keydetails` varchar(255) NOT NULL DEFAULT '', `keygroupid` int(10) unsigned NOT NULL DEFAULT '0', `keydisplayorder` int(11) unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`keyname`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `webboard_registry` -- LOCK TABLES `webboard_registry` WRITE; /*!40000 ALTER TABLE `webboard_registry` DISABLE KEYS */; INSERT INTO `webboard_registry` VALUES ('board_name','mam\'s thwboard','string','Board name','',1,0),('board_baseurl','http://webboard.mamweb.at','string','Board URL','Used in eMails',1,1),('board_admin','mam@heimam.at','string','Board Admin/Tech eMail','',1,2),('site_name','mam\'s collection of webboards','string','Board site name','',1,3),('site_url','http://webboard.mamweb.at','string','Board site URL','',1,4),('userrating','0','boolean','Enable userrating','(currently unavailable)',2,0),('privatemessages','1','boolean','Allow private messages?','',2,1),('smilies','1','boolean','Allow smilies?','',2,2),('enable_quicklinks','1','boolean','Enable quicklinks?','',2,3),('enable_ranks','0','boolean','Enable userranks?','',2,4),('debugmode','0','boolean','Enable debug-mode?','Prints debug/development messages for admins',2,5),('forumclosed','0','boolean','Forum closed?','Allows you to close your forums, e.g. for maintenance. Note: Administrators can still view the forums.',5,1),('use_email','0','boolean','Use eMail functions?','If your server does not support sending eMails via php\'s mail() function, disable this.',2,7),('guestprefix','_','string','Guest name prefix','The char put in front of a guest name.',2,9),('showprivateboards','1','boolean','Show private boards?','View boards that are inaccessisble for a user? (The user is still not able to view it)',2,10),('uppercase_prot','1','boolean','Use uppercase topic protection?','Prevents users from using only caps in topics. CAN BE VERY USEFUL',2,11),('allowregister','0','boolean','Allow users to register?','You can disable the register option for users here.',2,12),('vars_t_amount','50','integer','Topics per page','The number of topic rows per board-page.',3,0),('vars_m_amount','25','integer','Message amount','The number of posts within a thread.',3,1),('subject_maxlength','64','integer','Topic maxlength','The maximum length (in chars) allowed in a thread\'s topic.',3,2),('subject_minlength','2','integer','Topic minlength','The minimum length.',3,3),('message_maxlength','10000','integer','Message maxlength','The maximum length in a post\'s text (in chars).',3,4),('message_minlength','2','integer','Message minlength','Minimum post length.',3,5),('showpostslevel','2','integer','Show posts level','Show posts:
0 - Never, don\'t show any post counts.
1 - Show own postcount only.
2 - No restriction',3,6),('imageslevel','1','integer','Image usage level','Allow images:
0 - No restriction
1 - Allow images in posts only
2 - Do not allow any images',3,7),('max_usernamelength','24','integer','Maximum user name length','The maximum length of a username, in chars.',3,8),('min_usernamelength','2','integer','Minimum user name length','The minimum length of a username, in chars.',3,9),('pm_maxlength','8000','integer','Private message maximum length','The maximum length of a private message, in chars.',3,10),('postdelay','30','integer','Post flood protection','Minimum delay between posts, in seconds.',4,0),('editlimit','1800','integer','Edit time limit','Users will be unable to edit posts after posttime + limit. Set to 0 to disable.',4,1),('timeoffset','0','integer','Time offset','Time offset, in hours (can be negative)',5,0),('closedmsg','sorry,\r\n\r\ndas web board ist momentan leider nicht verfügbar!','array','Forum closed message','This message appears if users try to access the closed forum.',5,2),('bannednames','','array','Nick register protection','Allows you to specify invalid nicks. Users will be unable to register these nicks, one name per line. Example: \"adm\" disallows Admin as well as fooadmbar...',5,4),('bannedemails','','array','Email register protection','Allows you to specify invalid email addresses. Use one eMail per line, eg @aol bans dude@aol.com as well as notme@aol.net',5,3),('version','2.81','string','Version','The internal version, please do not change.',0,0),('sig_maxlen','600','integer','Max. signature length','The maximum length of a signature, in bytes (chars).',6,1),('max_privmsg','50','integer','Max PM count','The maximum amount of private messages per user. Users will be unable to recieve PMs if their box is full.',3,11),('pmalive','0','integer','PM max life','Set the maximum age of private messages, in days. Set to 0 to disable life check.',3,12),('sig_maxlines','5','integer','Max. signature lines','The maximum number of lines allowed in a signature. Note that a line can be wrapped depending on the users browser size. Thus you should set an appropriate max length in chars as well. One average line has about 120 chars at a resolution of 1024*768.',6,2),('sig_restrict','1','boolean','Enable signature restrictions?','Enable this to restrict the signature length using the options below.',6,0),('uselastthreads','1','boolean','Enable last-threads-form?','Enables a select form on the index page to display threads within the last 3/5/7.. days.',2,13),('max_useronline','14|1445759683','string','Do not modify or delete','Do not modify or delete',0,0),('default_groupid','1','integer','Dont modify!','Dont modify!',0,0),('guest_groupid','2','integer','Dont modify!','Dont modify!',0,0),('avatarheight','64','integer','Avatar maximum height','The maximum height of the user-defined Avatars.',7,2),('avatarwidth','64','integer','Avatar maximum width','The maximum width of the user-defined Avatars.',7,1),('useravatar','3','integer','Avatar-Settings','Enable avatars:
0 - Avatars are disabled
1 - Only pre-installed avatars
2 - Only user-defined avatars
3 - Both',7,0),('usebwordprot','3','integer','Badwords protection','Do not modify',0,7),('compression','0','boolean','Enable compression?','Gzip compression can save a lot of traffic, but requires a bit more cpu time',2,14),('slow_search','1','boolean','Case-insensitive (slow) search?','Slower, but more precisely.',2,15); /*!40000 ALTER TABLE `webboard_registry` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `webboard_registrygroup` -- DROP TABLE IF EXISTS `webboard_registrygroup`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `webboard_registrygroup` ( `keygroupid` int(10) unsigned NOT NULL AUTO_INCREMENT, `keygroupname` varchar(64) NOT NULL DEFAULT '', `keygroupdisplayorder` int(10) unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`keygroupid`) ) ENGINE=MyISAM AUTO_INCREMENT=8 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `webboard_registrygroup` -- LOCK TABLES `webboard_registrygroup` WRITE; /*!40000 ALTER TABLE `webboard_registrygroup` DISABLE KEYS */; INSERT INTO `webboard_registrygroup` VALUES (1,'General',0),(2,'Options',1),(3,'General vars',2),(4,'Post options',3),(5,'Misc',6),(6,'Signature control',4),(7,'Avatar settings',5); /*!40000 ALTER TABLE `webboard_registrygroup` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `webboard_session` -- DROP TABLE IF EXISTS `webboard_session`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `webboard_session` ( `sessionid` varchar(32) NOT NULL DEFAULT '', `lastaction` int(10) unsigned NOT NULL DEFAULT '0', `userid` int(10) unsigned NOT NULL DEFAULT '0', `username` varchar(64) NOT NULL DEFAULT '', `ip` varchar(16) NOT NULL DEFAULT '0', PRIMARY KEY (`sessionid`), KEY `sessionid` (`sessionid`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `webboard_session` -- LOCK TABLES `webboard_session` WRITE; /*!40000 ALTER TABLE `webboard_session` DISABLE KEYS */; INSERT INTO `webboard_session` VALUES ('476e0ba430ff986b6d90018c2308d7ce',1194072064,1,'admin','62.178.39.180'); /*!40000 ALTER TABLE `webboard_session` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `webboard_style` -- DROP TABLE IF EXISTS `webboard_style`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `webboard_style` ( `styleid` int(10) unsigned NOT NULL AUTO_INCREMENT, `stylename` varchar(32) NOT NULL DEFAULT '', `colorbg` varchar(8) NOT NULL DEFAULT '', `colorbgfont` varchar(8) NOT NULL DEFAULT '', `color4` varchar(8) NOT NULL DEFAULT '', `col_he_fo_font` varchar(8) NOT NULL DEFAULT '', `color1` varchar(8) NOT NULL DEFAULT '', `CellA` varchar(8) NOT NULL DEFAULT '', `CellB` varchar(8) NOT NULL DEFAULT '', `border_col` varchar(8) NOT NULL DEFAULT '', `color_err` varchar(8) NOT NULL DEFAULT '', `col_link` varchar(8) NOT NULL DEFAULT '', `col_link_v` varchar(8) NOT NULL DEFAULT '', `col_link_hover` varchar(8) NOT NULL DEFAULT '', `stdfont` varchar(128) NOT NULL DEFAULT '', `boardimage` varchar(128) NOT NULL DEFAULT '', `newtopicimage` varchar(128) NOT NULL DEFAULT '', `styleispublic` tinyint(1) unsigned NOT NULL DEFAULT '0', `styleisdefault` tinyint(1) unsigned NOT NULL DEFAULT '0', `styletemplate` varchar(32) NOT NULL DEFAULT 'default', PRIMARY KEY (`styleid`), KEY `styleid` (`styleid`) ) ENGINE=MyISAM AUTO_INCREMENT=4 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `webboard_style` -- LOCK TABLES `webboard_style` WRITE; /*!40000 ALTER TABLE `webboard_style` DISABLE KEYS */; INSERT INTO `webboard_style` VALUES (1,'Default','#FAFAFA','#454545','#1B6ECC','#ECECEC','#323232','#FAFAFA','#F5F5F5','#DEDEDE','#990000','#1B6ECC','#1B6ECC','#69B271','Verdana, Helvetica','./templates/default/images/space.gif','./templates/default/images/newtopic.gif',0,1,'default'),(2,'AO','#FFFFFF','#333333','#FF9900','#FFFFFF','#333333','#FFFFFF','#ECECEC','#000000','#FF0000','#FF6600','#FF6600','#6699CC','Verdana, Helvetica','./templates/default/images/space.gif','',0,0,'default'),(3,'heiMAM','#FFFFFF','#333333','#336600','#FFFFFF','#333333','#FFFFFF','#ECECEC','#666666','#FF0000','#336600','#336600','#669900','Verdana, Helvetica','./templates/default/images/space.gif','',0,0,'default'); /*!40000 ALTER TABLE `webboard_style` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `webboard_thread` -- DROP TABLE IF EXISTS `webboard_thread`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `webboard_thread` ( `threadid` int(11) unsigned NOT NULL AUTO_INCREMENT, `threadtopic` varchar(255) NOT NULL DEFAULT '', `threadtime` int(11) unsigned NOT NULL DEFAULT '0', `threadauthor` varchar(64) NOT NULL DEFAULT '', `threadreplies` int(11) unsigned NOT NULL DEFAULT '0', `boardid` int(11) unsigned NOT NULL DEFAULT '0', `threadlastreplyby` varchar(64) NOT NULL DEFAULT '', `threadiconid` smallint(6) unsigned NOT NULL DEFAULT '0', `threadviews` int(10) unsigned NOT NULL DEFAULT '0', `threadlink` int(10) unsigned NOT NULL DEFAULT '0', `threadclosed` tinyint(1) unsigned NOT NULL DEFAULT '0', `threadtop` tinyint(1) unsigned NOT NULL DEFAULT '0', `threadcreationtime` int(10) unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`threadid`), KEY `threadid` (`threadid`), KEY `boardid` (`boardid`,`threadtop`,`threadtime`) ) ENGINE=MyISAM AUTO_INCREMENT=105 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `webboard_thread` -- LOCK TABLES `webboard_thread` WRITE; /*!40000 ALTER TABLE `webboard_thread` DISABLE KEYS */; /*!40000 ALTER TABLE `webboard_thread` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `webboard_user` -- DROP TABLE IF EXISTS `webboard_user`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `webboard_user` ( `userid` int(10) unsigned NOT NULL AUTO_INCREMENT, `username` varchar(64) NOT NULL DEFAULT '', `userjoin` int(11) unsigned NOT NULL DEFAULT '0', `userlastpost` int(11) unsigned NOT NULL DEFAULT '0', `userposts` int(11) unsigned NOT NULL DEFAULT '0', `useremail` varchar(128) NOT NULL DEFAULT '', `userpassword` varchar(64) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', `userhomepage` varchar(128) NOT NULL DEFAULT '', `userlocation` varchar(128) NOT NULL DEFAULT '', `usericq` int(11) unsigned NOT NULL DEFAULT '0', `useraim` varchar(50) NOT NULL DEFAULT '', `usermsn` varchar(50) NOT NULL DEFAULT '', `userbday` date NOT NULL DEFAULT '0000-00-00', `styleid` int(10) unsigned NOT NULL DEFAULT '0', `useroccupation` varchar(128) NOT NULL DEFAULT '', `userinterests` mediumtext NOT NULL, `usersignature` mediumtext NOT NULL, `userbanned` tinyint(1) unsigned NOT NULL DEFAULT '0', `usertitle` varchar(64) NOT NULL DEFAULT '', `userhidesig` tinyint(1) unsigned NOT NULL DEFAULT '0', `userrating` tinyint(3) unsigned NOT NULL DEFAULT '0', `uservotes` smallint(5) unsigned NOT NULL DEFAULT '0', `userhideemail` tinyint(1) unsigned NOT NULL DEFAULT '0', `userisadmin` tinyint(1) unsigned NOT NULL DEFAULT '0', `userinvisible` tinyint(1) unsigned NOT NULL DEFAULT '0', `usernoding` tinyint(1) unsigned NOT NULL DEFAULT '0', `useravatar` varchar(255) NOT NULL DEFAULT '', `groupids` varchar(128) NOT NULL DEFAULT '', `usernodelete` tinyint(1) unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`userid`), UNIQUE KEY `username` (`username`), KEY `userid` (`userid`) ) ENGINE=MyISAM AUTO_INCREMENT=280 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `webboard_user` -- LOCK TABLES `webboard_user` WRITE; /*!40000 ALTER TABLE `webboard_user` DISABLE KEYS */; INSERT INTO `webboard_user` VALUES (1,'admin',1149513169,0,0,'mam@heimam.at','5a9361b28ee51795f1e82d9054919034','','',0,'','','0000-00-00',0,'','','',0,'',0,0,0,0,1,0,0,'',',3,',1); /*!40000 ALTER TABLE `webboard_user` ENABLE KEYS */; UNLOCK TABLES; -- -- Current Database: `webcalendar` -- CREATE DATABASE /*!32312 IF NOT EXISTS*/ `webcalendar` /*!40100 DEFAULT CHARACTER SET latin1 */; USE `webcalendar`; -- -- Table structure for table `webcal_asst` -- DROP TABLE IF EXISTS `webcal_asst`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `webcal_asst` ( `cal_boss` varchar(25) NOT NULL DEFAULT '', `cal_assistant` varchar(25) NOT NULL DEFAULT '', PRIMARY KEY (`cal_boss`,`cal_assistant`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `webcal_asst` -- LOCK TABLES `webcal_asst` WRITE; /*!40000 ALTER TABLE `webcal_asst` DISABLE KEYS */; /*!40000 ALTER TABLE `webcal_asst` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `webcal_categories` -- DROP TABLE IF EXISTS `webcal_categories`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `webcal_categories` ( `cat_id` int(11) NOT NULL DEFAULT '0', `cat_owner` varchar(25) DEFAULT NULL, `cat_name` varchar(80) NOT NULL DEFAULT '', PRIMARY KEY (`cat_id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `webcal_categories` -- LOCK TABLES `webcal_categories` WRITE; /*!40000 ALTER TABLE `webcal_categories` DISABLE KEYS */; /*!40000 ALTER TABLE `webcal_categories` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `webcal_config` -- DROP TABLE IF EXISTS `webcal_config`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `webcal_config` ( `cal_setting` varchar(50) NOT NULL DEFAULT '', `cal_value` varchar(100) DEFAULT NULL, PRIMARY KEY (`cal_setting`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `webcal_config` -- LOCK TABLES `webcal_config` WRITE; /*!40000 ALTER TABLE `webcal_config` DISABLE KEYS */; INSERT INTO `webcal_config` VALUES ('add_link_in_views','Y'),('allow_color_customization','Y'),('allow_conflicts','N'),('allow_conflict_override','Y'),('allow_external_users','N'),('allow_html_description','N'),('allow_view_other','Y'),('application_name','WebCalendar'),('auto_refresh','N'),('BGCOLOR','#FFFFFF'),('bold_days_in_year','Y'),('categories_enabled','N'),('CELLBG','#C0C0C0'),('conflict_repeat_months','6'),('CUSTOM_HEADER','N'),('CUSTOM_SCRIPT','N'),('CUSTOM_TRAILER','N'),('DATE_FORMAT','__month__ __dd__, __yyyy__'),('DATE_FORMAT_MD','__month__ __dd__'),('DATE_FORMAT_MY','__month__ __yyyy__'),('demo_mode','N'),('disable_access_field','N'),('disable_participants_field','N'),('disable_priority_field','N'),('disable_repeating_field','N'),('DISPLAY_DESC_PRINT_DAY','N'),('DISPLAY_UNAPPROVED','Y'),('DISPLAY_WEEKENDS','Y'),('DISPLAY_WEEKNUMBER','Y'),('EMAIL_EVENT_ADDED','Y'),('EMAIL_EVENT_DELETED','Y'),('EMAIL_EVENT_REJECTED','Y'),('EMAIL_EVENT_UPDATED','Y'),('email_fallback_from','youremailhere'),('EMAIL_REMINDER','Y'),('enable_gradients','N'),('external_notifications','N'),('external_reminders','N'),('groups_enabled','N'),('H2COLOR','#000000'),('LANGUAGE','Browser-defined'),('limit_appts','N'),('limit_appts_number','6'),('nonuser_at_top','Y'),('nonuser_enabled','N'),('POPUP_BG','#FFFFFF'),('POPUP_FG','#000000'),('public_access','N'),('public_access_add_needs_approval','Y'),('public_access_can_add','N'),('public_access_default_selected','N'),('public_access_default_visible','N'),('public_access_others','N'),('public_access_view_part','N'),('PUBLISH_ENABLED','N'),('remember_last_login','Y'),('reports_enabled','N'),('require_approvals','Y'),('send_email','N'),('site_extras_in_popup','N'),('STARTVIEW','week.php'),('TABLEBG','#000000'),('TEXTCOLOR','#000000'),('THBG','#FFFFFF'),('THFG','#000000'),('TIMED_EVT_LEN','D'),('TIME_FORMAT','12'),('TIME_SLOTS','12'),('TODAYCELLBG','#FFFF33'),('user_sees_only_his_groups','N'),('WEEKENDBG','#D0D0D0'),('WEEK_START','0'),('WORK_DAY_END_HOUR','17'),('WORK_DAY_START_HOUR','8'); /*!40000 ALTER TABLE `webcal_config` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `webcal_entry` -- DROP TABLE IF EXISTS `webcal_entry`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `webcal_entry` ( `cal_id` int(11) NOT NULL DEFAULT '0', `cal_group_id` int(11) DEFAULT NULL, `cal_ext_for_id` int(11) DEFAULT NULL, `cal_create_by` varchar(25) NOT NULL DEFAULT '', `cal_date` int(11) NOT NULL DEFAULT '0', `cal_time` int(11) DEFAULT NULL, `cal_mod_date` int(11) DEFAULT NULL, `cal_mod_time` int(11) DEFAULT NULL, `cal_duration` int(11) NOT NULL DEFAULT '0', `cal_priority` int(11) DEFAULT '2', `cal_type` char(1) DEFAULT 'E', `cal_access` char(1) DEFAULT 'P', `cal_name` varchar(80) NOT NULL DEFAULT '', `cal_description` text, PRIMARY KEY (`cal_id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `webcal_entry` -- LOCK TABLES `webcal_entry` WRITE; /*!40000 ALTER TABLE `webcal_entry` DISABLE KEYS */; INSERT INTO `webcal_entry` VALUES (1,NULL,NULL,'admin',20061030,80000,20061103,133712,0,2,'E','P','Test','Test'); /*!40000 ALTER TABLE `webcal_entry` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `webcal_entry_ext_user` -- DROP TABLE IF EXISTS `webcal_entry_ext_user`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `webcal_entry_ext_user` ( `cal_id` int(11) NOT NULL DEFAULT '0', `cal_fullname` varchar(50) NOT NULL DEFAULT '', `cal_email` varchar(75) DEFAULT NULL, PRIMARY KEY (`cal_id`,`cal_fullname`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `webcal_entry_ext_user` -- LOCK TABLES `webcal_entry_ext_user` WRITE; /*!40000 ALTER TABLE `webcal_entry_ext_user` DISABLE KEYS */; /*!40000 ALTER TABLE `webcal_entry_ext_user` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `webcal_entry_log` -- DROP TABLE IF EXISTS `webcal_entry_log`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `webcal_entry_log` ( `cal_log_id` int(11) NOT NULL DEFAULT '0', `cal_entry_id` int(11) NOT NULL DEFAULT '0', `cal_login` varchar(25) NOT NULL DEFAULT '', `cal_user_cal` varchar(25) DEFAULT NULL, `cal_type` char(1) NOT NULL DEFAULT '', `cal_date` int(11) NOT NULL DEFAULT '0', `cal_time` int(11) DEFAULT NULL, `cal_text` text, PRIMARY KEY (`cal_log_id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `webcal_entry_log` -- LOCK TABLES `webcal_entry_log` WRITE; /*!40000 ALTER TABLE `webcal_entry_log` DISABLE KEYS */; INSERT INTO `webcal_entry_log` VALUES (1,1,'admin','admin','C',20061103,133712,NULL); /*!40000 ALTER TABLE `webcal_entry_log` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `webcal_entry_repeats` -- DROP TABLE IF EXISTS `webcal_entry_repeats`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `webcal_entry_repeats` ( `cal_id` int(11) NOT NULL DEFAULT '0', `cal_type` varchar(20) DEFAULT NULL, `cal_end` int(11) DEFAULT NULL, `cal_frequency` int(11) DEFAULT '1', `cal_days` varchar(7) DEFAULT NULL, PRIMARY KEY (`cal_id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `webcal_entry_repeats` -- LOCK TABLES `webcal_entry_repeats` WRITE; /*!40000 ALTER TABLE `webcal_entry_repeats` DISABLE KEYS */; /*!40000 ALTER TABLE `webcal_entry_repeats` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `webcal_entry_repeats_not` -- DROP TABLE IF EXISTS `webcal_entry_repeats_not`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `webcal_entry_repeats_not` ( `cal_id` int(11) NOT NULL DEFAULT '0', `cal_date` int(11) NOT NULL DEFAULT '0', PRIMARY KEY (`cal_id`,`cal_date`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `webcal_entry_repeats_not` -- LOCK TABLES `webcal_entry_repeats_not` WRITE; /*!40000 ALTER TABLE `webcal_entry_repeats_not` DISABLE KEYS */; /*!40000 ALTER TABLE `webcal_entry_repeats_not` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `webcal_entry_user` -- DROP TABLE IF EXISTS `webcal_entry_user`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `webcal_entry_user` ( `cal_id` int(11) NOT NULL DEFAULT '0', `cal_login` varchar(25) NOT NULL DEFAULT '', `cal_status` char(1) DEFAULT 'A', `cal_category` int(11) DEFAULT NULL, PRIMARY KEY (`cal_id`,`cal_login`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `webcal_entry_user` -- LOCK TABLES `webcal_entry_user` WRITE; /*!40000 ALTER TABLE `webcal_entry_user` DISABLE KEYS */; INSERT INTO `webcal_entry_user` VALUES (1,'admin','D',NULL); /*!40000 ALTER TABLE `webcal_entry_user` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `webcal_group` -- DROP TABLE IF EXISTS `webcal_group`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `webcal_group` ( `cal_group_id` int(11) NOT NULL DEFAULT '0', `cal_owner` varchar(25) DEFAULT NULL, `cal_name` varchar(50) NOT NULL DEFAULT '', `cal_last_update` int(11) NOT NULL DEFAULT '0', PRIMARY KEY (`cal_group_id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `webcal_group` -- LOCK TABLES `webcal_group` WRITE; /*!40000 ALTER TABLE `webcal_group` DISABLE KEYS */; /*!40000 ALTER TABLE `webcal_group` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `webcal_group_user` -- DROP TABLE IF EXISTS `webcal_group_user`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `webcal_group_user` ( `cal_group_id` int(11) NOT NULL DEFAULT '0', `cal_login` varchar(25) NOT NULL DEFAULT '', PRIMARY KEY (`cal_group_id`,`cal_login`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `webcal_group_user` -- LOCK TABLES `webcal_group_user` WRITE; /*!40000 ALTER TABLE `webcal_group_user` DISABLE KEYS */; /*!40000 ALTER TABLE `webcal_group_user` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `webcal_import` -- DROP TABLE IF EXISTS `webcal_import`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `webcal_import` ( `cal_import_id` int(11) NOT NULL DEFAULT '0', `cal_name` varchar(50) DEFAULT NULL, `cal_date` int(11) NOT NULL DEFAULT '0', `cal_type` varchar(10) NOT NULL DEFAULT '', `cal_login` varchar(25) DEFAULT NULL, PRIMARY KEY (`cal_import_id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `webcal_import` -- LOCK TABLES `webcal_import` WRITE; /*!40000 ALTER TABLE `webcal_import` DISABLE KEYS */; /*!40000 ALTER TABLE `webcal_import` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `webcal_import_data` -- DROP TABLE IF EXISTS `webcal_import_data`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `webcal_import_data` ( `cal_import_id` int(11) NOT NULL DEFAULT '0', `cal_id` int(11) NOT NULL DEFAULT '0', `cal_login` varchar(25) NOT NULL DEFAULT '', `cal_import_type` varchar(15) NOT NULL DEFAULT '', `cal_external_id` varchar(200) DEFAULT NULL, PRIMARY KEY (`cal_id`,`cal_login`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `webcal_import_data` -- LOCK TABLES `webcal_import_data` WRITE; /*!40000 ALTER TABLE `webcal_import_data` DISABLE KEYS */; /*!40000 ALTER TABLE `webcal_import_data` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `webcal_nonuser_cals` -- DROP TABLE IF EXISTS `webcal_nonuser_cals`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `webcal_nonuser_cals` ( `cal_login` varchar(25) NOT NULL DEFAULT '', `cal_lastname` varchar(25) DEFAULT NULL, `cal_firstname` varchar(25) DEFAULT NULL, `cal_admin` varchar(25) NOT NULL DEFAULT '', PRIMARY KEY (`cal_login`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `webcal_nonuser_cals` -- LOCK TABLES `webcal_nonuser_cals` WRITE; /*!40000 ALTER TABLE `webcal_nonuser_cals` DISABLE KEYS */; /*!40000 ALTER TABLE `webcal_nonuser_cals` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `webcal_reminder_log` -- DROP TABLE IF EXISTS `webcal_reminder_log`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `webcal_reminder_log` ( `cal_id` int(11) NOT NULL DEFAULT '0', `cal_name` varchar(25) NOT NULL DEFAULT '', `cal_event_date` int(11) NOT NULL DEFAULT '0', `cal_last_sent` int(11) NOT NULL DEFAULT '0', PRIMARY KEY (`cal_id`,`cal_name`,`cal_event_date`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `webcal_reminder_log` -- LOCK TABLES `webcal_reminder_log` WRITE; /*!40000 ALTER TABLE `webcal_reminder_log` DISABLE KEYS */; /*!40000 ALTER TABLE `webcal_reminder_log` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `webcal_report` -- DROP TABLE IF EXISTS `webcal_report`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `webcal_report` ( `cal_login` varchar(25) NOT NULL DEFAULT '', `cal_report_id` int(11) NOT NULL DEFAULT '0', `cal_is_global` char(1) NOT NULL DEFAULT 'N', `cal_report_type` varchar(20) NOT NULL DEFAULT '', `cal_include_header` char(1) NOT NULL DEFAULT 'Y', `cal_report_name` varchar(50) NOT NULL DEFAULT '', `cal_time_range` int(11) NOT NULL DEFAULT '0', `cal_user` varchar(25) DEFAULT NULL, `cal_allow_nav` char(1) DEFAULT 'Y', `cal_cat_id` int(11) DEFAULT NULL, `cal_include_empty` char(1) DEFAULT 'N', `cal_show_in_trailer` char(1) DEFAULT 'N', `cal_update_date` int(11) NOT NULL DEFAULT '0', PRIMARY KEY (`cal_report_id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `webcal_report` -- LOCK TABLES `webcal_report` WRITE; /*!40000 ALTER TABLE `webcal_report` DISABLE KEYS */; /*!40000 ALTER TABLE `webcal_report` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `webcal_report_template` -- DROP TABLE IF EXISTS `webcal_report_template`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `webcal_report_template` ( `cal_report_id` int(11) NOT NULL DEFAULT '0', `cal_template_type` char(1) NOT NULL DEFAULT '', `cal_template_text` text, PRIMARY KEY (`cal_report_id`,`cal_template_type`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `webcal_report_template` -- LOCK TABLES `webcal_report_template` WRITE; /*!40000 ALTER TABLE `webcal_report_template` DISABLE KEYS */; /*!40000 ALTER TABLE `webcal_report_template` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `webcal_site_extras` -- DROP TABLE IF EXISTS `webcal_site_extras`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `webcal_site_extras` ( `cal_id` int(11) NOT NULL DEFAULT '0', `cal_name` varchar(25) NOT NULL DEFAULT '', `cal_type` int(11) NOT NULL DEFAULT '0', `cal_date` int(11) DEFAULT '0', `cal_remind` int(11) DEFAULT '0', `cal_data` text, PRIMARY KEY (`cal_id`,`cal_name`,`cal_type`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `webcal_site_extras` -- LOCK TABLES `webcal_site_extras` WRITE; /*!40000 ALTER TABLE `webcal_site_extras` DISABLE KEYS */; /*!40000 ALTER TABLE `webcal_site_extras` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `webcal_user` -- DROP TABLE IF EXISTS `webcal_user`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `webcal_user` ( `cal_login` varchar(25) NOT NULL DEFAULT '', `cal_passwd` varchar(32) DEFAULT NULL, `cal_lastname` varchar(25) DEFAULT NULL, `cal_firstname` varchar(25) DEFAULT NULL, `cal_is_admin` char(1) DEFAULT 'N', `cal_email` varchar(75) DEFAULT NULL, PRIMARY KEY (`cal_login`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `webcal_user` -- LOCK TABLES `webcal_user` WRITE; /*!40000 ALTER TABLE `webcal_user` DISABLE KEYS */; INSERT INTO `webcal_user` VALUES ('admin','5a9361b28ee51795f1e82d9054919034','Administrator','Default','Y',NULL); /*!40000 ALTER TABLE `webcal_user` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `webcal_user_layers` -- DROP TABLE IF EXISTS `webcal_user_layers`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `webcal_user_layers` ( `cal_layerid` int(11) NOT NULL DEFAULT '0', `cal_login` varchar(25) NOT NULL DEFAULT '', `cal_layeruser` varchar(25) NOT NULL DEFAULT '', `cal_color` varchar(25) DEFAULT NULL, `cal_dups` char(1) DEFAULT 'N', PRIMARY KEY (`cal_login`,`cal_layeruser`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `webcal_user_layers` -- LOCK TABLES `webcal_user_layers` WRITE; /*!40000 ALTER TABLE `webcal_user_layers` DISABLE KEYS */; /*!40000 ALTER TABLE `webcal_user_layers` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `webcal_user_pref` -- DROP TABLE IF EXISTS `webcal_user_pref`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `webcal_user_pref` ( `cal_login` varchar(25) NOT NULL DEFAULT '', `cal_setting` varchar(25) NOT NULL DEFAULT '', `cal_value` varchar(100) DEFAULT NULL, PRIMARY KEY (`cal_login`,`cal_setting`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `webcal_user_pref` -- LOCK TABLES `webcal_user_pref` WRITE; /*!40000 ALTER TABLE `webcal_user_pref` DISABLE KEYS */; INSERT INTO `webcal_user_pref` VALUES ('admin','LANGUAGE','German'); /*!40000 ALTER TABLE `webcal_user_pref` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `webcal_view` -- DROP TABLE IF EXISTS `webcal_view`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `webcal_view` ( `cal_view_id` int(11) NOT NULL DEFAULT '0', `cal_owner` varchar(25) NOT NULL DEFAULT '', `cal_name` varchar(50) NOT NULL DEFAULT '', `cal_view_type` char(1) DEFAULT NULL, `cal_is_global` char(1) NOT NULL DEFAULT 'N', PRIMARY KEY (`cal_view_id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `webcal_view` -- LOCK TABLES `webcal_view` WRITE; /*!40000 ALTER TABLE `webcal_view` DISABLE KEYS */; /*!40000 ALTER TABLE `webcal_view` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `webcal_view_user` -- DROP TABLE IF EXISTS `webcal_view_user`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `webcal_view_user` ( `cal_view_id` int(11) NOT NULL DEFAULT '0', `cal_login` varchar(25) NOT NULL DEFAULT '', PRIMARY KEY (`cal_view_id`,`cal_login`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `webcal_view_user` -- LOCK TABLES `webcal_view_user` WRITE; /*!40000 ALTER TABLE `webcal_view_user` DISABLE KEYS */; /*!40000 ALTER TABLE `webcal_view_user` ENABLE KEYS */; UNLOCK TABLES; -- -- Current Database: `webkalender` -- CREATE DATABASE /*!32312 IF NOT EXISTS*/ `webkalender` /*!40100 DEFAULT CHARACTER SET latin1 */; USE `webkalender`; -- -- Table structure for table `calendardate` -- DROP TABLE IF EXISTS `calendardate`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `calendardate` ( `id` int(11) NOT NULL AUTO_INCREMENT, `event_date` int(11) NOT NULL DEFAULT '0', `duration` float NOT NULL DEFAULT '1', `short_description` varchar(50) NOT NULL DEFAULT '', `long_description` text NOT NULL, `userid` varchar(30) NOT NULL DEFAULT '', PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `calendardate` -- LOCK TABLES `calendardate` WRITE; /*!40000 ALTER TABLE `calendardate` DISABLE KEYS */; /*!40000 ALTER TABLE `calendardate` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `calendarday` -- DROP TABLE IF EXISTS `calendarday`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `calendarday` ( `id` int(11) NOT NULL AUTO_INCREMENT, `weekday` tinyint(4) NOT NULL DEFAULT '0', `event_time` varchar(8) NOT NULL DEFAULT '', `duration` float NOT NULL DEFAULT '1', `period` tinyint(4) NOT NULL DEFAULT '0', `month` tinyint(4) NOT NULL DEFAULT '0', `short_description` varchar(50) NOT NULL DEFAULT '', `long_description` text NOT NULL, `userid` varchar(30) NOT NULL DEFAULT '', KEY `id` (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `calendarday` -- LOCK TABLES `calendarday` WRITE; /*!40000 ALTER TABLE `calendarday` DISABLE KEYS */; /*!40000 ALTER TABLE `calendarday` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `calendarusers` -- DROP TABLE IF EXISTS `calendarusers`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `calendarusers` ( `userid` varchar(30) NOT NULL DEFAULT '', `password` varchar(30) DEFAULT NULL, `level` tinyint(4) NOT NULL DEFAULT '0', UNIQUE KEY `userid` (`userid`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `calendarusers` -- LOCK TABLES `calendarusers` WRITE; /*!40000 ALTER TABLE `calendarusers` DISABLE KEYS */; INSERT INTO `calendarusers` VALUES ('admin','mscmks',2); /*!40000 ALTER TABLE `calendarusers` ENABLE KEYS */; UNLOCK TABLES; -- -- Current Database: `wordpress_mampress` -- CREATE DATABASE /*!32312 IF NOT EXISTS*/ `wordpress_mampress` /*!40100 DEFAULT CHARACTER SET latin1 */; USE `wordpress_mampress`; -- -- Table structure for table `mampress_categories` -- DROP TABLE IF EXISTS `mampress_categories`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `mampress_categories` ( `cat_ID` bigint(20) NOT NULL AUTO_INCREMENT, `cat_name` varchar(55) NOT NULL DEFAULT '', `category_nicename` varchar(200) NOT NULL DEFAULT '', `category_description` longtext NOT NULL, `category_parent` int(4) NOT NULL DEFAULT '0', PRIMARY KEY (`cat_ID`), KEY `category_nicename` (`category_nicename`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `mampress_categories` -- LOCK TABLES `mampress_categories` WRITE; /*!40000 ALTER TABLE `mampress_categories` DISABLE KEYS */; INSERT INTO `mampress_categories` VALUES (1,'Uncategorized','uncategorized','',0); /*!40000 ALTER TABLE `mampress_categories` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `mampress_comments` -- DROP TABLE IF EXISTS `mampress_comments`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `mampress_comments` ( `comment_ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `comment_post_ID` int(11) NOT NULL DEFAULT '0', `comment_author` tinytext NOT NULL, `comment_author_email` varchar(100) NOT NULL DEFAULT '', `comment_author_url` varchar(200) NOT NULL DEFAULT '', `comment_author_IP` varchar(100) NOT NULL DEFAULT '', `comment_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `comment_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `comment_content` text NOT NULL, `comment_karma` int(11) NOT NULL DEFAULT '0', `comment_approved` enum('0','1','spam') NOT NULL DEFAULT '1', `comment_agent` varchar(255) NOT NULL DEFAULT '', `comment_type` varchar(20) NOT NULL DEFAULT '', `comment_parent` int(11) NOT NULL DEFAULT '0', `user_id` int(11) NOT NULL DEFAULT '0', PRIMARY KEY (`comment_ID`), KEY `comment_approved` (`comment_approved`), KEY `comment_post_ID` (`comment_post_ID`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `mampress_comments` -- LOCK TABLES `mampress_comments` WRITE; /*!40000 ALTER TABLE `mampress_comments` DISABLE KEYS */; INSERT INTO `mampress_comments` VALUES (1,1,'Mr WordPress','','http://wordpress.org','127.0.0.1','2006-10-26 23:57:59','2006-10-26 21:57:59','Hi, this is a comment.
To delete a comment, just log in, and view the posts\' comments, there you will have the option to edit or delete them.',0,'1','','',0,0); /*!40000 ALTER TABLE `mampress_comments` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `mampress_linkcategories` -- DROP TABLE IF EXISTS `mampress_linkcategories`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `mampress_linkcategories` ( `cat_id` bigint(20) NOT NULL AUTO_INCREMENT, `cat_name` tinytext NOT NULL, `auto_toggle` enum('Y','N') NOT NULL DEFAULT 'N', `show_images` enum('Y','N') NOT NULL DEFAULT 'Y', `show_description` enum('Y','N') NOT NULL DEFAULT 'N', `show_rating` enum('Y','N') NOT NULL DEFAULT 'Y', `show_updated` enum('Y','N') NOT NULL DEFAULT 'Y', `sort_order` varchar(64) NOT NULL DEFAULT 'rand', `sort_desc` enum('Y','N') NOT NULL DEFAULT 'N', `text_before_link` varchar(128) NOT NULL DEFAULT '
  • ', `text_after_link` varchar(128) NOT NULL DEFAULT '
    ', `text_after_all` varchar(128) NOT NULL DEFAULT '
  • ', `list_limit` int(11) NOT NULL DEFAULT '-1', PRIMARY KEY (`cat_id`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `mampress_linkcategories` -- LOCK TABLES `mampress_linkcategories` WRITE; /*!40000 ALTER TABLE `mampress_linkcategories` DISABLE KEYS */; INSERT INTO `mampress_linkcategories` VALUES (1,'Blogroll','N','Y','N','Y','Y','rand','N','
  • ','
    ','
  • ',-1); /*!40000 ALTER TABLE `mampress_linkcategories` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `mampress_links` -- DROP TABLE IF EXISTS `mampress_links`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `mampress_links` ( `link_id` bigint(20) NOT NULL AUTO_INCREMENT, `link_url` varchar(255) NOT NULL DEFAULT '', `link_name` varchar(255) NOT NULL DEFAULT '', `link_image` varchar(255) NOT NULL DEFAULT '', `link_target` varchar(25) NOT NULL DEFAULT '', `link_category` int(11) NOT NULL DEFAULT '0', `link_description` varchar(255) NOT NULL DEFAULT '', `link_visible` enum('Y','N') NOT NULL DEFAULT 'Y', `link_owner` int(11) NOT NULL DEFAULT '1', `link_rating` int(11) NOT NULL DEFAULT '0', `link_updated` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `link_rel` varchar(255) NOT NULL DEFAULT '', `link_notes` mediumtext NOT NULL, `link_rss` varchar(255) NOT NULL DEFAULT '', PRIMARY KEY (`link_id`), KEY `link_category` (`link_category`), KEY `link_visible` (`link_visible`) ) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `mampress_links` -- LOCK TABLES `mampress_links` WRITE; /*!40000 ALTER TABLE `mampress_links` DISABLE KEYS */; INSERT INTO `mampress_links` VALUES (1,'http://blog.carthik.net/index.php','Carthik','','',1,'','Y',1,0,'0000-00-00 00:00:00','','','http://blog.carthik.net/feed/'),(2,'http://blogs.linux.ie/xeer/','Donncha','','',1,'','Y',1,0,'0000-00-00 00:00:00','','','http://blogs.linux.ie/xeer/feed/'),(3,'http://zengun.org/weblog/','Michel','','',1,'','Y',1,0,'0000-00-00 00:00:00','','','http://zengun.org/weblog/feed/'),(4,'http://boren.nu/','Ryan','','',1,'','Y',1,0,'0000-00-00 00:00:00','','','http://boren.nu/feed/'),(5,'http://photomatt.net/','Matt','','',1,'','Y',1,0,'0000-00-00 00:00:00','','','http://xml.photomatt.net/feed/'),(6,'http://zed1.com/journalized/','Mike','','',1,'','Y',1,0,'0000-00-00 00:00:00','','','http://zed1.com/journalized/feed/'),(7,'http://www.alexking.org/','Alex','','',1,'','Y',1,0,'0000-00-00 00:00:00','','','http://www.alexking.org/blog/wp-rss2.php'),(8,'http://dougal.gunters.org/','Dougal','','',1,'','Y',1,0,'0000-00-00 00:00:00','','','http://dougal.gunters.org/feed/'); /*!40000 ALTER TABLE `mampress_links` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `mampress_options` -- DROP TABLE IF EXISTS `mampress_options`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `mampress_options` ( `option_id` bigint(20) NOT NULL AUTO_INCREMENT, `blog_id` int(11) NOT NULL DEFAULT '0', `option_name` varchar(64) NOT NULL DEFAULT '', `option_can_override` enum('Y','N') NOT NULL DEFAULT 'Y', `option_type` int(11) NOT NULL DEFAULT '1', `option_value` longtext NOT NULL, `option_width` int(11) NOT NULL DEFAULT '20', `option_height` int(11) NOT NULL DEFAULT '8', `option_description` tinytext NOT NULL, `option_admin_level` int(11) NOT NULL DEFAULT '1', `autoload` enum('yes','no') NOT NULL DEFAULT 'yes', PRIMARY KEY (`option_id`,`blog_id`,`option_name`), KEY `option_name` (`option_name`) ) ENGINE=InnoDB AUTO_INCREMENT=81 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `mampress_options` -- LOCK TABLES `mampress_options` WRITE; /*!40000 ALTER TABLE `mampress_options` DISABLE KEYS */; INSERT INTO `mampress_options` VALUES (1,0,'siteurl','Y',1,'http://mampress.mamweb.at',20,8,'WordPress web address',1,'yes'),(2,0,'blogname','Y',1,'mampress',20,8,'Blog title',1,'yes'),(3,0,'blogdescription','Y',1,'just another wordpress weblog',20,8,'Short tagline',1,'yes'),(4,0,'new_users_can_blog','Y',1,'0',20,8,'',1,'yes'),(5,0,'users_can_register','Y',1,'',20,8,'',1,'yes'),(6,0,'admin_email','Y',1,'mam@heimam.at',20,8,'',1,'yes'),(7,0,'start_of_week','Y',1,'1',20,8,'',1,'yes'),(8,0,'use_balanceTags','Y',1,'1',20,8,'',1,'yes'),(9,0,'use_smilies','Y',1,'1',20,8,'',1,'yes'),(10,0,'require_name_email','Y',1,'1',20,8,'',1,'yes'),(11,0,'comments_notify','Y',1,'1',20,8,'',1,'yes'),(12,0,'posts_per_rss','Y',1,'10',20,8,'',1,'yes'),(13,0,'rss_excerpt_length','Y',1,'50',20,8,'',1,'yes'),(14,0,'rss_use_excerpt','Y',1,'0',20,8,'',1,'yes'),(15,0,'use_fileupload','Y',1,'0',20,8,'',1,'yes'),(16,0,'fileupload_realpath','Y',1,'C:\\Program Files (x86)\\Apache Software Foundation\\Apache2.2\\htdocs\\mampress/wp-content',20,8,'',1,'yes'),(17,0,'fileupload_url','Y',1,'/wp-content',20,8,'',1,'yes'),(18,0,'fileupload_allowedtypes','Y',1,'jpg jpeg gif png',20,8,'',1,'yes'),(19,0,'fileupload_maxk','Y',1,'300',20,8,'',1,'yes'),(20,0,'fileupload_minlevel','Y',1,'6',20,8,'',1,'yes'),(21,0,'mailserver_url','Y',1,'mail.example.com',20,8,'',1,'yes'),(22,0,'mailserver_login','Y',1,'login@example.com',20,8,'',1,'yes'),(23,0,'mailserver_pass','Y',1,'password',20,8,'',1,'yes'),(24,0,'mailserver_port','Y',1,'110',20,8,'',1,'yes'),(25,0,'default_category','Y',1,'1',20,8,'',1,'yes'),(26,0,'default_comment_status','Y',1,'open',20,8,'',1,'yes'),(27,0,'default_ping_status','Y',1,'open',20,8,'',1,'yes'),(28,0,'default_pingback_flag','Y',1,'1',20,8,'',1,'yes'),(29,0,'default_post_edit_rows','Y',1,'9',20,8,'',1,'yes'),(30,0,'posts_per_page','Y',1,'10',20,8,'',1,'yes'),(31,0,'what_to_show','Y',1,'posts',20,8,'',1,'yes'),(32,0,'date_format','Y',1,'F j, Y',20,8,'',1,'yes'),(33,0,'time_format','Y',1,'g:i a',20,8,'',1,'yes'),(34,0,'links_updated_date_format','Y',1,'F j, Y g:i a',20,8,'',1,'yes'),(35,0,'links_recently_updated_prepend','Y',1,'',20,8,'',1,'yes'),(36,0,'links_recently_updated_append','Y',1,'',20,8,'',1,'yes'),(37,0,'links_recently_updated_time','Y',1,'120',20,8,'',1,'yes'),(38,0,'comment_moderation','Y',1,'0',20,8,'',1,'yes'),(39,0,'moderation_notify','Y',1,'1',20,8,'',1,'yes'),(40,0,'permalink_structure','Y',1,'',20,8,'',1,'yes'),(41,0,'gzipcompression','Y',1,'0',20,8,'',1,'yes'),(42,0,'hack_file','Y',1,'0',20,8,'',1,'yes'),(43,0,'blog_charset','Y',1,'UTF-8',20,8,'',1,'yes'),(44,0,'moderation_keys','Y',1,'',20,8,'',1,'no'),(45,0,'active_plugins','Y',1,'a:12:{i:0;s:0:\"\";i:1;s:30:\"awsompixgallery/pixgallery.php\";i:2;s:13:\"flickrrss.php\";i:3;s:12:\"markdown.php\";i:4;s:29:\"nextgen-gallery/nggallery.php\";i:5;s:21:\"pagenavi/pagenavi.php\";i:6;s:30:\"post-avatar/gkl-postavatar.php\";i:7;s:12:\"textile1.php\";i:8;s:37:\"tinymce-advanced/tinymce-advanced.php\";i:9;s:23:\"widgets/runforcover.php\";i:10;s:19:\"widgets/widgets.php\";i:11;s:24:\"wp_gravatar/gravatar.php\";}',20,8,'',1,'yes'),(46,0,'home','Y',1,'http://mampress.mamweb.at',20,8,'',1,'yes'),(47,0,'category_base','Y',1,'',20,8,'',1,'yes'),(48,0,'ping_sites','Y',1,'http://rpc.pingomatic.com/',20,8,'',1,'yes'),(49,0,'advanced_edit','Y',1,'0',20,8,'',1,'yes'),(50,0,'comment_max_links','Y',1,'2',20,8,'',1,'yes'),(51,0,'default_email_category','Y',1,'1',20,8,'Posts by email go to this category',1,'yes'),(52,0,'recently_edited','Y',1,'',20,8,'',1,'no'),(53,0,'use_linksupdate','Y',1,'0',20,8,'',1,'yes'),(54,0,'template','Y',1,'illacrimo',20,8,'',1,'yes'),(55,0,'stylesheet','Y',1,'illacrimo',20,8,'',1,'yes'),(56,0,'comment_whitelist','Y',1,'1',20,8,'',1,'yes'),(57,0,'page_uris','Y',1,'',20,8,'',1,'yes'),(58,0,'blacklist_keys','Y',1,'',20,8,'',1,'no'),(59,0,'comment_registration','Y',1,'',20,8,'',1,'yes'),(60,0,'open_proxy_check','Y',1,'1',20,8,'',1,'yes'),(61,0,'rss_language','Y',1,'en',20,8,'',1,'yes'),(62,0,'html_type','Y',1,'text/html',20,8,'',1,'yes'),(63,0,'use_trackback','Y',1,'0',20,8,'',1,'yes'),(64,0,'gmt_offset','Y',1,'2',20,8,'',1,'yes'),(65,0,'rss_2c1be3d24264456f0dc22866aa2a10d0','Y',1,'O:9:\"magpierss\":19:{s:6:\"parser\";i:0;s:12:\"current_item\";a:0:{}s:5:\"items\";a:10:{i:0;a:9:{s:5:\"title\";s:76:\"Low Interest Debt Consolidation For Credit Cards and Get Out of Debt Burden.\";s:6:\"author\";s:7:\"Capriok\";s:4:\"link\";s:59:\"http://feeds09.technorati.com/~r/trarticles/~3/Ims5eHUDE6w/\";s:4:\"guid\";s:90:\"http://technorati.com/business/finance/article/low-interest-debt-consolidation-for-credit/\";s:11:\"description\";s:200:\"Consolidate your debts at low interest rates. Enjoy the benefits which helps you to stay away from bankruptcy.\";s:7:\"pubdate\";s:31:\"Fri, 08 Oct 2010 23:15:55 +0000\";s:8:\"category\";s:38:\"Financelow interest debt consolidation\";s:10:\"feedburner\";a:1:{s:8:\"origlink\";s:90:\"http://technorati.com/business/finance/article/low-interest-debt-consolidation-for-credit/\";}s:7:\"summary\";s:200:\"Consolidate your debts at low interest rates. Enjoy the benefits which helps you to stay away from bankruptcy.\";}i:1;a:9:{s:5:\"title\";s:67:\"Developing Marketing Strategies for Your Medical Practice (Part 2) \";s:6:\"author\";s:15:\"simonsikorskimd\";s:4:\"link\";s:59:\"http://feeds09.technorati.com/~r/trarticles/~3/dO8asO5jb2Y/\";s:4:\"guid\";s:101:\"http://technorati.com/business/advertising/article/developing-marketing-strategies-for-your-medical1/\";s:11:\"description\";s:178:\"The success of a medical marketing campaign completely depends on the support structure.\";s:7:\"pubdate\";s:31:\"Fri, 08 Oct 2010 23:12:25 +0000\";s:8:\"category\";s:85:\"Advertisinghealth care marketinghealthcare marketingmedical marketingmedical websites\";s:10:\"feedburner\";a:1:{s:8:\"origlink\";s:101:\"http://technorati.com/business/advertising/article/developing-marketing-strategies-for-your-medical1/\";}s:7:\"summary\";s:178:\"The success of a medical marketing campaign completely depends on the support structure.\";}i:2;a:9:{s:5:\"title\";s:43:\"Managing Small Businesses with Spreadsheets\";s:6:\"author\";s:12:\"mjwunderlich\";s:4:\"link\";s:59:\"http://feeds09.technorati.com/~r/trarticles/~3/Ox8VhVsqgO4/\";s:4:\"guid\";s:98:\"http://technorati.com/business/small-business/article/managing-small-businesses-with-spreadsheets/\";s:11:\"description\";s:214:\"Managing Small Businesses using Spreadsheets can be effective. Well, it’s certainly cost-effective… but is it efficient?\";s:7:\"pubdate\";s:31:\"Fri, 08 Oct 2010 22:52:59 +0000\";s:8:\"category\";s:82:\"Small Businessbusinessbusiness-managementbusiness softwareinformation-managementIT\";s:10:\"feedburner\";a:1:{s:8:\"origlink\";s:98:\"http://technorati.com/business/small-business/article/managing-small-businesses-with-spreadsheets/\";}s:7:\"summary\";s:214:\"Managing Small Businesses using Spreadsheets can be effective. Well, it’s certainly cost-effective… but is it efficient?\";}i:3;a:9:{s:5:\"title\";s:71:\"Corporate Exemptions from the New Health Care Plan Have Started Already\";s:6:\"author\";s:9:\"jhadvisor\";s:4:\"link\";s:59:\"http://feeds09.technorati.com/~r/trarticles/~3/1FM9nXJGQeY/\";s:4:\"guid\";s:95:\"http://technorati.com/business/small-business/article/corporate-exemptions-from-the-new-health/\";s:11:\"description\";s:183:\"McDonalds and 29 Other Organizations Got Health Care Coverage Waivers. Well, Why Not Me Too?\";s:7:\"pubdate\";s:31:\"Fri, 08 Oct 2010 22:41:32 +0000\";s:8:\"category\";s:145:\"Small BusinessAssurant Healtheds-pickHealth Care CoverageHealth Care Premiumsmandated coveragemcdonaldsNational Health PlanPresident ObamaWyoming\";s:10:\"feedburner\";a:1:{s:8:\"origlink\";s:95:\"http://technorati.com/business/small-business/article/corporate-exemptions-from-the-new-health/\";}s:7:\"summary\";s:183:\"McDonalds and 29 Other Organizations Got Health Care Coverage Waivers. Well, Why Not Me Too?\";}i:4;a:9:{s:5:\"title\";s:50:\"Dow Jones Hits 11,000 for the First Time Since May\";s:6:\"author\";s:12:\"caroline1234\";s:4:\"link\";s:59:\"http://feeds09.technorati.com/~r/trarticles/~3/GTW65CWwDFs/\";s:4:\"guid\";s:68:\"http://technorati.com/business/article/dow-jones-hits-11000-for-the/\";s:11:\"description\";s:157:\"Is it just me, or is the world a brighter place when the Dow is up?\";s:7:\"pubdate\";s:31:\"Fri, 08 Oct 2010 22:37:34 +0000\";s:8:\"category\";s:45:\"Businessdow-joneseds-pickhome salesjob market\";s:10:\"feedburner\";a:1:{s:8:\"origlink\";s:68:\"http://technorati.com/business/article/dow-jones-hits-11000-for-the/\";}s:7:\"summary\";s:157:\"Is it just me, or is the world a brighter place when the Dow is up?\";}i:5;a:9:{s:5:\"title\";s:54:\"Was Roy Halladays No Hitter Really that Big of a Deal?\";s:6:\"author\";s:7:\"hoyas24\";s:4:\"link\";s:59:\"http://feeds09.technorati.com/~r/trarticles/~3/qxID6UwdoPQ/\";s:4:\"guid\";s:72:\"http://technorati.com/sports/article/was-roy-halladays-no-hitter-really/\";s:11:\"description\";s:209:\"Roy Halladay is just the 2nd player ever to pitch a No Hitter in the playoffs, theres just one problem with all of this\";s:7:\"pubdate\";s:31:\"Fri, 08 Oct 2010 21:48:24 +0000\";s:8:\"category\";s:39:\"SportsNo hitterphiladelphiaroy-halladay\";s:10:\"feedburner\";a:1:{s:8:\"origlink\";s:72:\"http://technorati.com/sports/article/was-roy-halladays-no-hitter-really/\";}s:7:\"summary\";s:209:\"Roy Halladay is just the 2nd player ever to pitch a No Hitter in the playoffs, theres just one problem with all of this\";}i:6;a:9:{s:5:\"title\";s:27:\"How Do You Rank on Twitter?\";s:6:\"author\";s:10:\"ielectrify\";s:4:\"link\";s:59:\"http://feeds09.technorati.com/~r/trarticles/~3/Sv_xhOfK8fw/\";s:4:\"guid\";s:66:\"http://technorati.com/blogging/article/how-do-you-rank-on-twitter/\";s:11:\"description\";s:195:\"Find out how you rank on Twitter by measuring influence, followers, reach and more with these free tools.\";s:7:\"pubdate\";s:31:\"Fri, 08 Oct 2010 20:33:16 +0000\";s:8:\"category\";s:55:\"Bloggingsocial-marketingsocial mediatwittertwitter rank\";s:10:\"feedburner\";a:1:{s:8:\"origlink\";s:66:\"http://technorati.com/blogging/article/how-do-you-rank-on-twitter/\";}s:7:\"summary\";s:195:\"Find out how you rank on Twitter by measuring influence, followers, reach and more with these free tools.\";}i:7;a:9:{s:5:\"title\";s:73:\"Facebook\'s New \"Download Your Data\" Feature Just Might Teach Us Something\";s:6:\"author\";s:10:\"ryanhonick\";s:4:\"link\";s:59:\"http://feeds09.technorati.com/~r/trarticles/~3/HNq2dACDjfU/\";s:4:\"guid\";s:80:\"http://technorati.com/blogging/article/facebooks-new-download-your-data-feature/\";s:11:\"description\";s:219:\"I grew up with the Internet. Today’s kids are growing up on the Internet. That’s a distinction with a very marked difference.\";s:7:\"pubdate\";s:31:\"Fri, 08 Oct 2010 20:01:23 +0000\";s:8:\"category\";s:166:\"BloggingBig Bang TheorybloggingChristine O\'Donnellcyberspacedatadigital footprinteds-pickkidsliteracymark zuckerbergMashableprivacyrepublicansocial mediastatstoddlers\";s:10:\"feedburner\";a:1:{s:8:\"origlink\";s:80:\"http://technorati.com/blogging/article/facebooks-new-download-your-data-feature/\";}s:7:\"summary\";s:219:\"I grew up with the Internet. Today’s kids are growing up on the Internet. That’s a distinction with a very marked difference.\";}i:8;a:9:{s:5:\"title\";s:45:\"Spence Hot Springs Near Jemez Getting Spanked\";s:6:\"author\";s:16:\"immigrants2bfree\";s:4:\"link\";s:59:\"http://feeds09.technorati.com/~r/trarticles/~3/cEpgVwq2U7g/\";s:4:\"guid\";s:85:\"http://technorati.com/lifestyle/travel/article/spence-hot-springs-near-jemez-getting/\";s:11:\"description\";s:176:\"Jemez Springs a/k/a Spence Hot Springs provides a lovely soak in H2o from Mother Earth\";s:7:\"pubdate\";s:31:\"Fri, 08 Oct 2010 17:14:56 +0000\";s:8:\"category\";s:101:\"Traveljemez hot springsjemez pueblonew mexico hiking trailssanta fe national forestspence hot springs\";s:10:\"feedburner\";a:1:{s:8:\"origlink\";s:85:\"http://technorati.com/lifestyle/travel/article/spence-hot-springs-near-jemez-getting/\";}s:7:\"summary\";s:176:\"Jemez Springs a/k/a Spence Hot Springs provides a lovely soak in H2o from Mother Earth\";}i:9;a:9:{s:5:\"title\";s:39:\"Relationships: Eight Points To Remember\";s:6:\"author\";s:11:\"rgmthoughts\";s:4:\"link\";s:59:\"http://feeds09.technorati.com/~r/trarticles/~3/Gc2_6Eg1JjA/\";s:4:\"guid\";s:79:\"http://technorati.com/lifestyle/article/relationships-eight-points-to-remember/\";s:11:\"description\";s:129:\"Understanding relations in a better way\";s:7:\"pubdate\";s:31:\"Fri, 08 Oct 2010 17:10:10 +0000\";s:8:\"category\";s:23:\"LifestyleDo\'s relations\";s:10:\"feedburner\";a:1:{s:8:\"origlink\";s:79:\"http://technorati.com/lifestyle/article/relationships-eight-points-to-remember/\";}s:7:\"summary\";s:129:\"Understanding relations in a better way\";}}s:7:\"channel\";a:9:{s:5:\"title\";s:26:\"All articles at Technorati\";s:4:\"link\";s:22:\"http://technorati.com/\";s:11:\"description\";s:29:\"Bloggers write for Technorati\";s:7:\"pubdate\";s:31:\"Fri, 08 Oct 2010 23:15:55 +0000\";s:9:\"copyright\";s:29:\"Copyright 2010 by the authors\";s:9:\"generator\";s:6:\"Scrive\";s:8:\"language\";s:5:\"en-us\";s:4:\"docs\";s:37:\"http://blogs.law.harvard.edu/tech/rss\";s:7:\"tagline\";s:29:\"Bloggers write for Technorati\";}s:9:\"textinput\";a:0:{}s:5:\"image\";a:0:{}s:9:\"feed_type\";s:3:\"RSS\";s:12:\"feed_version\";s:3:\"2.0\";s:5:\"stack\";a:0:{}s:9:\"inchannel\";b:0;s:6:\"initem\";b:0;s:9:\"incontent\";b:0;s:11:\"intextinput\";b:0;s:7:\"inimage\";b:0;s:13:\"current_field\";s:0:\"\";s:17:\"current_namespace\";b:0;s:19:\"_CONTENT_CONSTRUCTS\";a:6:{i:0;s:7:\"content\";i:1;s:7:\"summary\";i:2;s:4:\"info\";i:3;s:5:\"title\";i:4;s:7:\"tagline\";i:5;s:9:\"copyright\";}s:4:\"etag\";s:29:\"KiDE8PljLxxGN+NeOTYK66rK57c\r\n\";s:13:\"last_modified\";s:31:\"Sat, 09 Oct 2010 14:51:22 GMT\r\n\";}',20,8,'',1,'no'),(66,0,'rss_2c1be3d24264456f0dc22866aa2a10d0_ts','Y',1,'1286638379',20,8,'',1,'no'),(67,0,'rss_0ff4b43bd116a9d8720d689c80e7dfd4','Y',1,'O:9:\"magpierss\":19:{s:6:\"parser\";i:0;s:12:\"current_item\";a:0:{}s:5:\"items\";a:10:{i:0;a:13:{s:5:\"title\";s:39:\"WordPress for iPhone/iPad v2.6 Released\";s:4:\"link\";s:43:\"http://wordpress.org/news/2010/09/ios-v2-6/\";s:8:\"comments\";s:52:\"http://wordpress.org/news/2010/09/ios-v2-6/#comments\";s:7:\"pubdate\";s:31:\"Thu, 30 Sep 2010 03:23:31 +0000\";s:2:\"dc\";a:1:{s:7:\"creator\";s:10:\"Jane Wells\";}s:8:\"category\";s:32:\"Releasesappleiosipadiphonemobile\";s:4:\"guid\";s:33:\"http://wordpress.org/news/?p=1497\";s:11:\"description\";s:335:\"Attention Apple-gadget-owning WordPress users! Have you been using the WordPress iOS app for iPhone and iPad? Or maybe you tried it a while back and thought it wasn’t for you? Either way, the new release — v2.6 — will knock your socks off. Why? A bunch of reasons: Video. Record, upload, attach, and play videos [...]\";s:7:\"content\";a:1:{s:7:\"encoded\";s:2319:\"

    Attention Apple-gadget-owning WordPress users! Have you been using the WordPress iOS app for iPhone and iPad? Or maybe you tried it a while back and thought it wasn’t for you? Either way, the new release — v2.6 — will knock your socks off. Why? A bunch of reasons:

    \n
      \n
    • Video. Record, upload, attach, and play videos within the app. Yay for being able to catch your friends’ and co-workers’ most embarrassing shenanigans creative moments with iPhone video and publish them immediately for all the world to see on your WordPress site.
    • \n
    • A total rewrite of the way local drafts are handled, to prevent the unintentional loss of your pending posts.
    • \n
    • Autosave/post revisions. Bam! One of the “oh, thank goodness” features of the web app makes it into the iOS version.
    • \n
    • Easier setup. Faster and easier process for adding your sites to the app.
    • \n
    • Media Library. We’re gradually getting closer to the media management you’re used to in the web app.
    • \n
    \n

    There are also numerous bugfixes and performance enhancements in this release, so if you haven’t been using the app lately, you should consider giving it another try. I’m personally pretty excited to start using the iPhone version more often now that there are all these fixes and new features. Especially the video upload. You know, for those creative moments that make life fun. \':)\'

    \n

    You can read the full 2.6 release post on the WordPress for iOS blog, and can download v2.6 from iTunes/the app store. Happy mobile blogging!

    \n

    * * *

    \n

    Not an iPhone user? We’ve still got your on-the-go back! Check out the WordPress apps for Android, Blackberry, and Nokia (beta). They’re all 100% GPL, of course, and we’re always looking for contributors to the development projects, so check the blogs if you have mobile dev skills and want to get involved.

    \n\";}s:3:\"wfw\";a:1:{s:10:\"commentrss\";s:48:\"http://wordpress.org/news/2010/09/ios-v2-6/feed/\";}s:5:\"slash\";a:1:{s:8:\"comments\";s:1:\"0\";}s:7:\"summary\";s:335:\"Attention Apple-gadget-owning WordPress users! Have you been using the WordPress iOS app for iPhone and iPad? Or maybe you tried it a while back and thought it wasn’t for you? Either way, the new release — v2.6 — will knock your socks off. Why? A bunch of reasons: Video. Record, upload, attach, and play videos [...]\";s:12:\"atom_content\";s:2319:\"

    Attention Apple-gadget-owning WordPress users! Have you been using the WordPress iOS app for iPhone and iPad? Or maybe you tried it a while back and thought it wasn’t for you? Either way, the new release — v2.6 — will knock your socks off. Why? A bunch of reasons:

    \n
      \n
    • Video. Record, upload, attach, and play videos within the app. Yay for being able to catch your friends’ and co-workers’ most embarrassing shenanigans creative moments with iPhone video and publish them immediately for all the world to see on your WordPress site.
    • \n
    • A total rewrite of the way local drafts are handled, to prevent the unintentional loss of your pending posts.
    • \n
    • Autosave/post revisions. Bam! One of the “oh, thank goodness” features of the web app makes it into the iOS version.
    • \n
    • Easier setup. Faster and easier process for adding your sites to the app.
    • \n
    • Media Library. We’re gradually getting closer to the media management you’re used to in the web app.
    • \n
    \n

    There are also numerous bugfixes and performance enhancements in this release, so if you haven’t been using the app lately, you should consider giving it another try. I’m personally pretty excited to start using the iPhone version more often now that there are all these fixes and new features. Especially the video upload. You know, for those creative moments that make life fun. \':)\'

    \n

    You can read the full 2.6 release post on the WordPress for iOS blog, and can download v2.6 from iTunes/the app store. Happy mobile blogging!

    \n

    * * *

    \n

    Not an iPhone user? We’ve still got your on-the-go back! Check out the WordPress apps for Android, Blackberry, and Nokia (beta). They’re all 100% GPL, of course, and we’re always looking for contributors to the development projects, so check the blogs if you have mobile dev skills and want to get involved.

    \n\";}i:1;a:13:{s:5:\"title\";s:33:\"WordPress Trademark Changes Hands\";s:4:\"link\";s:51:\"http://wordpress.org/news/2010/09/trademark-to-wpf/\";s:8:\"comments\";s:60:\"http://wordpress.org/news/2010/09/trademark-to-wpf/#comments\";s:7:\"pubdate\";s:31:\"Thu, 09 Sep 2010 23:14:13 +0000\";s:2:\"dc\";a:1:{s:7:\"creator\";s:10:\"Jane Wells\";}s:8:\"category\";s:46:\"GeneralAutomatticTrademarkWordPress Foundation\";s:4:\"guid\";s:33:\"http://wordpress.org/news/?p=1488\";s:11:\"description\";s:379:\"The WordPress community took a big step forward today when Matt announced that Automattic has donated the WordPress trademark to the non-profit WordPress Foundation. Moving forward, the Foundation will be responsible for safeguarding the trademarked name and logo from misuse toward the end of protecting WordPress and preventing confusion among people trying to figure out [...]\";s:7:\"content\";a:1:{s:7:\"encoded\";s:502:\"

    The WordPress community took a big step forward today when Matt announced that Automattic has donated the WordPress trademark to the non-profit WordPress Foundation. Moving forward, the Foundation will be responsible for safeguarding the trademarked name and logo from misuse toward the end of protecting WordPress and preventing confusion among people trying to figure out if a resource is “official” or not.

    \n\";}s:3:\"wfw\";a:1:{s:10:\"commentrss\";s:56:\"http://wordpress.org/news/2010/09/trademark-to-wpf/feed/\";}s:5:\"slash\";a:1:{s:8:\"comments\";s:1:\"0\";}s:7:\"summary\";s:379:\"The WordPress community took a big step forward today when Matt announced that Automattic has donated the WordPress trademark to the non-profit WordPress Foundation. Moving forward, the Foundation will be responsible for safeguarding the trademarked name and logo from misuse toward the end of protecting WordPress and preventing confusion among people trying to figure out [...]\";s:12:\"atom_content\";s:502:\"

    The WordPress community took a big step forward today when Matt announced that Automattic has donated the WordPress trademark to the non-profit WordPress Foundation. Moving forward, the Foundation will be responsible for safeguarding the trademarked name and logo from misuse toward the end of protecting WordPress and preventing confusion among people trying to figure out if a resource is “official” or not.

    \n\";}i:2;a:13:{s:5:\"title\";s:15:\"WordPress 3.0.1\";s:4:\"link\";s:50:\"http://wordpress.org/news/2010/07/wordpress-3-0-1/\";s:8:\"comments\";s:59:\"http://wordpress.org/news/2010/07/wordpress-3-0-1/#comments\";s:7:\"pubdate\";s:31:\"Thu, 29 Jul 2010 21:38:47 +0000\";s:2:\"dc\";a:1:{s:7:\"creator\";s:12:\"Andrew Nacin\";}s:8:\"category\";s:8:\"Releases\";s:4:\"guid\";s:33:\"http://wordpress.org/news/?p=1475\";s:11:\"description\";s:338:\"After nearly 11 million downloads of WordPress 3.0 in just 42 days, we’re releasing WordPress 3.0.1. The requisite haiku: Three dot oh dot one Bug fixes to make you smile Update your WordPress This maintenance release addresses about 50 minor issues. The testing many of you contributed prior to the release of 3.0 helped make [...]\";s:7:\"content\";a:1:{s:7:\"encoded\";s:951:\"

    After nearly 11 million downloads of WordPress 3.0 in just 42 days, we’re releasing WordPress 3.0.1. The requisite haiku:

    \n

    Three dot oh dot one
    \nBug fixes to make you smile
    \nUpdate your WordPress

    \n

    This maintenance release addresses about 50 minor issues. The testing many of you contributed prior to the release of 3.0 helped make it one of the best and most stable releases we’ve had.

    \n

    Download 3.0.1 or update automatically from the Dashboard > Updates menu in your site’s admin area.

    \n

    Note: If you downloaded 3.0.1 in the first 20 minutes of release (before 2200 UTC), you’ll want to reinstall it, which you can do right from your Updates screen. Our bad.

    \n\";}s:3:\"wfw\";a:1:{s:10:\"commentrss\";s:55:\"http://wordpress.org/news/2010/07/wordpress-3-0-1/feed/\";}s:5:\"slash\";a:1:{s:8:\"comments\";s:1:\"0\";}s:7:\"summary\";s:338:\"After nearly 11 million downloads of WordPress 3.0 in just 42 days, we’re releasing WordPress 3.0.1. The requisite haiku: Three dot oh dot one Bug fixes to make you smile Update your WordPress This maintenance release addresses about 50 minor issues. The testing many of you contributed prior to the release of 3.0 helped make [...]\";s:12:\"atom_content\";s:951:\"

    After nearly 11 million downloads of WordPress 3.0 in just 42 days, we’re releasing WordPress 3.0.1. The requisite haiku:

    \n

    Three dot oh dot one
    \nBug fixes to make you smile
    \nUpdate your WordPress

    \n

    This maintenance release addresses about 50 minor issues. The testing many of you contributed prior to the release of 3.0 helped make it one of the best and most stable releases we’ve had.

    \n

    Download 3.0.1 or update automatically from the Dashboard > Updates menu in your site’s admin area.

    \n

    Note: If you downloaded 3.0.1 in the first 20 minutes of release (before 2200 UTC), you’ll want to reinstall it, which you can do right from your Updates screen. Our bad.

    \n\";}i:3;a:13:{s:5:\"title\";s:42:\"PHP 4 and MySQL 4 End of Life Announcement\";s:4:\"link\";s:58:\"http://wordpress.org/news/2010/07/eol-for-php4-and-mysql4/\";s:8:\"comments\";s:67:\"http://wordpress.org/news/2010/07/eol-for-php4-and-mysql4/#comments\";s:7:\"pubdate\";s:31:\"Fri, 23 Jul 2010 19:01:46 +0000\";s:2:\"dc\";a:1:{s:7:\"creator\";s:12:\"Mark Jaquith\";}s:8:\"category\";s:27:\"HostingMySQLPHPrequirements\";s:4:\"guid\";s:33:\"http://wordpress.org/news/?p=1447\";s:11:\"description\";s:348:\"Our approach with WordPress has always been to make it run on common server configurations. We want users to have flexibility when choosing a host for their precious content. Because of this strategy, WordPress runs pretty much anywhere. Web hosting platforms, however, change over time, and we occasionally are able to reevaluate some of the [...]\";s:7:\"content\";a:1:{s:7:\"encoded\";s:3021:\"

    Our approach with WordPress has always been to make it run on common server configurations. We want users to have flexibility when choosing a host for their precious content. Because of this strategy, WordPress runs pretty much anywhere. Web hosting platforms, however, change over time, and we occasionally are able to reevaluate some of the requirements for running WordPress. Now is one of those times. You probably guessed it from the title — we’re finally ready to announce the end of support for PHP 4 and MySQL 4!

    \n

    First up, the announcement that developers really care about. WordPress 3.1, due in late 2010, will be the last version of WordPress to support PHP 4.

    \n

    For WordPress 3.2, due in the first half of 2011, we will be raising the minimum required PHP version to 5.2. Why 5.2? Because that’s what the vast majority of WordPress users are using, and it offers substantial improvements over earlier PHP 5 releases. It is also the minimum PHP version that the Drupal and Joomla projects will be supporting in their next versions, both due out this year.

    \n

    The numbers are now, finally, strongly in favor of this move. Only around 11 percent of WordPress installs are running on a PHP version below 5.2. Many of them are on hosts who support PHP 5.2 — users merely need to change a setting in their hosting control panel to activate it. We believe that percentage will only go down over the rest of the year as hosting providers realize that to support the newest versions of WordPress (or Drupal, or Joomla), they’re going to have to pull the trigger.

    \n

    In less exciting news, we are also going to be dropping support for MySQL 4 after WordPress 3.1. Fewer than 6 percent of WordPress users are running MySQL 4. The new required MySQL version for WordPress 3.2 will be 5.0.15.

    \n

    WordPress users will not be able to upgrade to WordPress 3.2 if their hosting environment does not meet these requirements (the built-in updater will prevent it). In order to determine which versions your host provides, we’ve created the Health Check plugin. You can download it manually, or use this handy plugin installation tool I whipped up. Right now, Health Check will only tell you if you’re ready for WordPress 3.2. In a future release it will provide all sorts of useful information about your server and your WordPress install, so hang on to it!

    \n

    In summary: WordPress 3.1, due in late 2010, will be the last version of WordPress to support PHP 4 and MySQL 4. WordPress 3.2, due in the first half of 2011, will require PHP 5.2 or higher, and MySQL 5.0.15 or higher. Install the Health Check plugin to see if you’re ready!

    \n\";}s:3:\"wfw\";a:1:{s:10:\"commentrss\";s:63:\"http://wordpress.org/news/2010/07/eol-for-php4-and-mysql4/feed/\";}s:5:\"slash\";a:1:{s:8:\"comments\";s:1:\"0\";}s:7:\"summary\";s:348:\"Our approach with WordPress has always been to make it run on common server configurations. We want users to have flexibility when choosing a host for their precious content. Because of this strategy, WordPress runs pretty much anywhere. Web hosting platforms, however, change over time, and we occasionally are able to reevaluate some of the [...]\";s:12:\"atom_content\";s:3021:\"

    Our approach with WordPress has always been to make it run on common server configurations. We want users to have flexibility when choosing a host for their precious content. Because of this strategy, WordPress runs pretty much anywhere. Web hosting platforms, however, change over time, and we occasionally are able to reevaluate some of the requirements for running WordPress. Now is one of those times. You probably guessed it from the title — we’re finally ready to announce the end of support for PHP 4 and MySQL 4!

    \n

    First up, the announcement that developers really care about. WordPress 3.1, due in late 2010, will be the last version of WordPress to support PHP 4.

    \n

    For WordPress 3.2, due in the first half of 2011, we will be raising the minimum required PHP version to 5.2. Why 5.2? Because that’s what the vast majority of WordPress users are using, and it offers substantial improvements over earlier PHP 5 releases. It is also the minimum PHP version that the Drupal and Joomla projects will be supporting in their next versions, both due out this year.

    \n

    The numbers are now, finally, strongly in favor of this move. Only around 11 percent of WordPress installs are running on a PHP version below 5.2. Many of them are on hosts who support PHP 5.2 — users merely need to change a setting in their hosting control panel to activate it. We believe that percentage will only go down over the rest of the year as hosting providers realize that to support the newest versions of WordPress (or Drupal, or Joomla), they’re going to have to pull the trigger.

    \n

    In less exciting news, we are also going to be dropping support for MySQL 4 after WordPress 3.1. Fewer than 6 percent of WordPress users are running MySQL 4. The new required MySQL version for WordPress 3.2 will be 5.0.15.

    \n

    WordPress users will not be able to upgrade to WordPress 3.2 if their hosting environment does not meet these requirements (the built-in updater will prevent it). In order to determine which versions your host provides, we’ve created the Health Check plugin. You can download it manually, or use this handy plugin installation tool I whipped up. Right now, Health Check will only tell you if you’re ready for WordPress 3.2. In a future release it will provide all sorts of useful information about your server and your WordPress install, so hang on to it!

    \n

    In summary: WordPress 3.1, due in late 2010, will be the last version of WordPress to support PHP 4 and MySQL 4. WordPress 3.2, due in the first half of 2011, will require PHP 5.2 or higher, and MySQL 5.0.15 or higher. Install the Health Check plugin to see if you’re ready!

    \n\";}i:4;a:13:{s:5:\"title\";s:41:\"100 Million Plugin Downloads and Counting\";s:4:\"link\";s:46:\"http://wordpress.org/news/2010/07/100-million/\";s:8:\"comments\";s:55:\"http://wordpress.org/news/2010/07/100-million/#comments\";s:7:\"pubdate\";s:31:\"Fri, 02 Jul 2010 17:48:34 +0000\";s:2:\"dc\";a:1:{s:7:\"creator\";s:12:\"Andrew Nacin\";}s:8:\"category\";s:20:\"CommunityDevelopment\";s:4:\"guid\";s:40:\"http://wordpress.org/development/?p=1429\";s:11:\"description\";s:364:\"WordPress 3.0 Thelonious passed 3 million downloads yesterday, and today the plugin directory followed suit with a milestone of its own: 100 million downloads. The WordPress community’s growth over the years has been tremendous, and we want to reinvest in it. So we’re taking the next two months to concentrate on improving WordPress.org. A major [...]\";s:7:\"content\";a:1:{s:7:\"encoded\";s:2319:\"

    WordPress 3.0 Thelonious passed 3 million downloads yesterday, and today the plugin directory followed suit with a milestone of its own: 100 million downloads.

    \n

    The WordPress community’s growth over the years has been tremendous, and we want to reinvest in it. So we’re taking the next two months to concentrate on improving WordPress.org. A major part of that will be improving the infrastructure of the plugins directory. More than 10,000 plugins are in the directory, every one of them GPL compatible and free as in both beer and speech. Here’s what we have in mind:

    \n

    We want to provide developers the tools they need to build the best possible plugins. We’re going to provide better integration with the forums so you can support your users. We’ll make more statistics available to you so you can analyze your user base, and over time we hope to make it easier for you to manage, build, and release localized plugins.

    \n

    We want to improve how the core software works with your plugin and the plugin directory. We’re going to focus on ensuring seamless upgrades by making the best possible determinations about compatibility, and offer continual improvements to the plugin installer. And we also want to give you a better developer tool set like SVN notifications and improvements to the bug tracker.

    \n

    We’re also going to experiment with other great ideas to help the community help plugin authors. We want it to be easy for you to offer comments to plugin authors and the community, including user reviews and better feedback. We may experiment with an adoption process for abandoned plugins as a way to revitalize hidden gems in the directory. I’m not sure there is a better way to show how extendable WordPress is and how awesome this community is at the same time.

    \n

    As Matt said in the 3.0 release announcement, our goal isn’t to make everything perfect all at once. But we think incremental improvements can provide us with a great base for 3.1 and beyond, and for the tens of millions of users, and hundreds of millions of plugin downloads to come.

    \n\";}s:3:\"wfw\";a:1:{s:10:\"commentrss\";s:51:\"http://wordpress.org/news/2010/07/100-million/feed/\";}s:5:\"slash\";a:1:{s:8:\"comments\";s:1:\"0\";}s:7:\"summary\";s:364:\"WordPress 3.0 Thelonious passed 3 million downloads yesterday, and today the plugin directory followed suit with a milestone of its own: 100 million downloads. The WordPress community’s growth over the years has been tremendous, and we want to reinvest in it. So we’re taking the next two months to concentrate on improving WordPress.org. A major [...]\";s:12:\"atom_content\";s:2319:\"

    WordPress 3.0 Thelonious passed 3 million downloads yesterday, and today the plugin directory followed suit with a milestone of its own: 100 million downloads.

    \n

    The WordPress community’s growth over the years has been tremendous, and we want to reinvest in it. So we’re taking the next two months to concentrate on improving WordPress.org. A major part of that will be improving the infrastructure of the plugins directory. More than 10,000 plugins are in the directory, every one of them GPL compatible and free as in both beer and speech. Here’s what we have in mind:

    \n

    We want to provide developers the tools they need to build the best possible plugins. We’re going to provide better integration with the forums so you can support your users. We’ll make more statistics available to you so you can analyze your user base, and over time we hope to make it easier for you to manage, build, and release localized plugins.

    \n

    We want to improve how the core software works with your plugin and the plugin directory. We’re going to focus on ensuring seamless upgrades by making the best possible determinations about compatibility, and offer continual improvements to the plugin installer. And we also want to give you a better developer tool set like SVN notifications and improvements to the bug tracker.

    \n

    We’re also going to experiment with other great ideas to help the community help plugin authors. We want it to be easy for you to offer comments to plugin authors and the community, including user reviews and better feedback. We may experiment with an adoption process for abandoned plugins as a way to revitalize hidden gems in the directory. I’m not sure there is a better way to show how extendable WordPress is and how awesome this community is at the same time.

    \n

    As Matt said in the 3.0 release announcement, our goal isn’t to make everything perfect all at once. But we think incremental improvements can provide us with a great base for 3.1 and beyond, and for the tens of millions of users, and hundreds of millions of plugin downloads to come.

    \n\";}i:5;a:13:{s:5:\"title\";s:18:\"Summer of WordCamp\";s:4:\"link\";s:53:\"http://wordpress.org/news/2010/06/summer-of-wordcamp/\";s:8:\"comments\";s:62:\"http://wordpress.org/news/2010/06/summer-of-wordcamp/#comments\";s:7:\"pubdate\";s:31:\"Tue, 29 Jun 2010 17:19:45 +0000\";s:2:\"dc\";a:1:{s:7:\"creator\";s:10:\"Jane Wells\";}s:8:\"category\";s:17:\"CommunityWordCamp\";s:4:\"guid\";s:40:\"http://wordpress.org/development/?p=1418\";s:11:\"description\";s:355:\"It’s been summer for about a week now. Whether you’re on vacation or burning the midnight oil, attending a local/nearby WordCamp is a great way to spend a weekend. Meet other WordPress users, developers, designers & consultants, learn a little something, maybe share a little of your own experience and knowledge, and break bread (or [...]\";s:7:\"content\";a:1:{s:7:\"encoded\";s:5678:\"

    It’s been summer for about a week now. Whether you’re on vacation or burning the midnight oil, attending a local/nearby WordCamp is a great way to spend a weekend. Meet other WordPress users, developers, designers & consultants, learn a little something, maybe share a little of your own experience and knowledge, and break bread (or raise a toast) with new friends and collaborators. Here are the WordCamps scheduled for this summer, along with what I know about them.

    \n

    July 3: WordCamp Germany – Berlin, Germany. I love it that they’re using BuddyPress for their event site. They have multiple tracks, and what looks to be a nice variety of sessions. It’s only a few days away, so if you’re thinking of going, get your tickets now!

    \n

    July 10: WordCamp Boulder – Boulder, Colorado, USA. This was WordCamp Denver last year, but the organizers have decided to mix it up and go back and forth between Denver and Boulder, which also has a thriving tech community. This year the venue is the Boulder Theater (so pretty!), and there will sessions for bloggers and devs alike, plus a Genius Bar to help people get their WordPress sites all fixed up. The speaker lineup looks good, and I hear they’re pumping up the wifi this year. I’ll be there, likely hunched over a notebook with Lisa Sabin-Wilson (author of WordPress for Dummies and BuddyPress for Dummies) to talk about the WordPress User Handbook project, and/or hunched over a sketchbook with Kevin Conboy (designed the new lighter “on” state for admin menus in WordPress 3.0) to work out a new default WordCamp.org theme (using BuddyPress). You can still get tickets!

    \n

    July 17–18: WordCamp UK- Manchester, England, UK. The roving WordCamp UK will be in Manchester this year, and is probably the closest to BarCamp style of all the WordCamps, using a wiki to plan some speakers/sessions and organizing the rest ad-hoc on the first day of the event. I’ll be attending this one as well, and am looking forward to seeing WordPress lead developer Peter Westwood again. I’m also looking forward to meeting some core contributors for the first time in person, like Simon Wheatley and John O’Nolan. Mike Little, co-founder of WordPress, is on the organizing team of WordCamp UK. Tickets on sale now!

    \n

    July 24: WordCamp Nigeria – Lagos, Nigeria. Their site seems to have a virus, so no link from here, but if you’re in Nigeria and interested in attending/getting involved, a quick Google search will get you to the organizers.

    \n

    August 7: WordCamp Houston – Houston, TX, USA. Houston, Texas, birthplace of WordPress! Fittingly, Matt Mullenweg will be there to give the keynote. WordCamp Houston is running three tracks — Business, Blogger and Developer — in recognition of the fact that people who are interested in using WordPress for their business may not actually be bloggers or developers themselves. This used to get labeled as a “CMS” track at previous WordCamps (including NYC 2009), but with WordPress 3.0 supporting CMS functionality out of the box, “Business” is a much more appropriate label. Who wants to bet on if there will be BBQ for lunch?

    \n

    August 7 : WordCamp Iowa – Des Moines, Iowa, USA. Another placeholder page. Happening, not happening? I’ve emailed the organizer and will update this post once I know more.

    \n

    August 7–8: WordCamp New Zealand – Auckland, New Zealand. They haven’t announced this year’s speakers or topics, but they’ve been running polls to get community input into the program. Of note: in 2011 WordCamp New Zealand will be shifting seasons and will be in February instead, when the weather is nicer.

    \n

    August 20–22: WordCamp Savannah – Savannah, Georgia, USA. Disclaimer: I am completely biased about Savannah, since I’m one of the organizers. This will be the first WordCamp in Savannah, and it’s being held at the Savannah College of Art and Design River Club, an awesome venue that used to be a cotton warehouse or something like that. Since Savannah doesn’t really have a cohesive WordPress community yet (though a fair number of people from Savannah attended WordCamp Atlanta earlier this year), this WordCamp is aimed squarely at building a local community. We’ll have a local meet-and-greet, regular sessions with visiting speakers (lots of core contributors coming to this one, plus Matt), and on Sunday it will be combination unconference/genius bar/collaborative workspace. Oh, and a potluck! We’ll also be running a pre-WordCamp workshop for people who have never used WordPress but want to get started, so that they’ll be able to follow the presentations and conversations littered with WordPress-specific vocabulary over the weekend. Ticket sales just opened, so get your tickets now.

    \n

    For a schedule of all upcoming WordCamps, visit wordcamp.org. The autumn schedule is already packed! If you don’t see WordCamp in your area and are interested in organizing one, get more information and let us know.

    \n\";}s:3:\"wfw\";a:1:{s:10:\"commentrss\";s:58:\"http://wordpress.org/news/2010/06/summer-of-wordcamp/feed/\";}s:5:\"slash\";a:1:{s:8:\"comments\";s:1:\"0\";}s:7:\"summary\";s:355:\"It’s been summer for about a week now. Whether you’re on vacation or burning the midnight oil, attending a local/nearby WordCamp is a great way to spend a weekend. Meet other WordPress users, developers, designers & consultants, learn a little something, maybe share a little of your own experience and knowledge, and break bread (or [...]\";s:12:\"atom_content\";s:5678:\"

    It’s been summer for about a week now. Whether you’re on vacation or burning the midnight oil, attending a local/nearby WordCamp is a great way to spend a weekend. Meet other WordPress users, developers, designers & consultants, learn a little something, maybe share a little of your own experience and knowledge, and break bread (or raise a toast) with new friends and collaborators. Here are the WordCamps scheduled for this summer, along with what I know about them.

    \n

    July 3: WordCamp Germany – Berlin, Germany. I love it that they’re using BuddyPress for their event site. They have multiple tracks, and what looks to be a nice variety of sessions. It’s only a few days away, so if you’re thinking of going, get your tickets now!

    \n

    July 10: WordCamp Boulder – Boulder, Colorado, USA. This was WordCamp Denver last year, but the organizers have decided to mix it up and go back and forth between Denver and Boulder, which also has a thriving tech community. This year the venue is the Boulder Theater (so pretty!), and there will sessions for bloggers and devs alike, plus a Genius Bar to help people get their WordPress sites all fixed up. The speaker lineup looks good, and I hear they’re pumping up the wifi this year. I’ll be there, likely hunched over a notebook with Lisa Sabin-Wilson (author of WordPress for Dummies and BuddyPress for Dummies) to talk about the WordPress User Handbook project, and/or hunched over a sketchbook with Kevin Conboy (designed the new lighter “on” state for admin menus in WordPress 3.0) to work out a new default WordCamp.org theme (using BuddyPress). You can still get tickets!

    \n

    July 17–18: WordCamp UK- Manchester, England, UK. The roving WordCamp UK will be in Manchester this year, and is probably the closest to BarCamp style of all the WordCamps, using a wiki to plan some speakers/sessions and organizing the rest ad-hoc on the first day of the event. I’ll be attending this one as well, and am looking forward to seeing WordPress lead developer Peter Westwood again. I’m also looking forward to meeting some core contributors for the first time in person, like Simon Wheatley and John O’Nolan. Mike Little, co-founder of WordPress, is on the organizing team of WordCamp UK. Tickets on sale now!

    \n

    July 24: WordCamp Nigeria – Lagos, Nigeria. Their site seems to have a virus, so no link from here, but if you’re in Nigeria and interested in attending/getting involved, a quick Google search will get you to the organizers.

    \n

    August 7: WordCamp Houston – Houston, TX, USA. Houston, Texas, birthplace of WordPress! Fittingly, Matt Mullenweg will be there to give the keynote. WordCamp Houston is running three tracks — Business, Blogger and Developer — in recognition of the fact that people who are interested in using WordPress for their business may not actually be bloggers or developers themselves. This used to get labeled as a “CMS” track at previous WordCamps (including NYC 2009), but with WordPress 3.0 supporting CMS functionality out of the box, “Business” is a much more appropriate label. Who wants to bet on if there will be BBQ for lunch?

    \n

    August 7 : WordCamp Iowa – Des Moines, Iowa, USA. Another placeholder page. Happening, not happening? I’ve emailed the organizer and will update this post once I know more.

    \n

    August 7–8: WordCamp New Zealand – Auckland, New Zealand. They haven’t announced this year’s speakers or topics, but they’ve been running polls to get community input into the program. Of note: in 2011 WordCamp New Zealand will be shifting seasons and will be in February instead, when the weather is nicer.

    \n

    August 20–22: WordCamp Savannah – Savannah, Georgia, USA. Disclaimer: I am completely biased about Savannah, since I’m one of the organizers. This will be the first WordCamp in Savannah, and it’s being held at the Savannah College of Art and Design River Club, an awesome venue that used to be a cotton warehouse or something like that. Since Savannah doesn’t really have a cohesive WordPress community yet (though a fair number of people from Savannah attended WordCamp Atlanta earlier this year), this WordCamp is aimed squarely at building a local community. We’ll have a local meet-and-greet, regular sessions with visiting speakers (lots of core contributors coming to this one, plus Matt), and on Sunday it will be combination unconference/genius bar/collaborative workspace. Oh, and a potluck! We’ll also be running a pre-WordCamp workshop for people who have never used WordPress but want to get started, so that they’ll be able to follow the presentations and conversations littered with WordPress-specific vocabulary over the weekend. Ticket sales just opened, so get your tickets now.

    \n

    For a schedule of all upcoming WordCamps, visit wordcamp.org. The autumn schedule is already packed! If you don’t see WordCamp in your area and are interested in organizing one, get more information and let us know.

    \n\";}i:6;a:13:{s:5:\"title\";s:26:\"WordPress 3.0 \"Thelonious\"\";s:4:\"link\";s:45:\"http://wordpress.org/news/2010/06/thelonious/\";s:8:\"comments\";s:54:\"http://wordpress.org/news/2010/06/thelonious/#comments\";s:7:\"pubdate\";s:31:\"Thu, 17 Jun 2010 16:26:36 +0000\";s:2:\"dc\";a:1:{s:7:\"creator\";s:14:\"Matt Mullenweg\";}s:8:\"category\";s:8:\"Releases\";s:4:\"guid\";s:40:\"http://wordpress.org/development/?p=1380\";s:11:\"description\";s:341:\"Arm your vuvuzelas: WordPress 3.0, the thirteenth major release of WordPress and the culmination of half a year of work by 218 contributors, is now available for download (or upgrade within your dashboard). Major new features in this release include a sexy new default theme called Twenty Ten. Theme developers have new APIs that allow [...]\";s:7:\"content\";a:1:{s:7:\"encoded\";s:38078:\"

    Arm your vuvuzelas: WordPress 3.0, the thirteenth major release of WordPress and the culmination of half a year of work by 218 contributors, is now available for download (or upgrade within your dashboard). Major new features in this release include a sexy new default theme called Twenty Ten. Theme developers have new APIs that allow them to easily implement custom backgrounds, headers, shortlinks, menus (no more file editing), post types, and taxonomies. (Twenty Ten theme shows all of that off.) Developers and network admins will appreciate the long-awaited merge of MU and WordPress, creating the new multi-site functionality which makes it possible to run one blog or ten million from the same installation. As a user, you will love the new lighter interface, the contextual help on every screen, the 1,217 bug fixes and feature enhancements, bulk updates so you can upgrade 15 plugins at once with a single click, and blah blah blah just watch the video. \':)\' (In HD, if you can, so you can catch the Easter eggs.)

    \n

    \n

    If you’d like to embed the WordPress 3.0 video tour in your blog, copy and paste this code for the high quality version:

    \n
    <embed src="http://v.wordpress.com/wp-content/plugins/video/flvplayer.swf?ver=1.21" type="application/x-shockwave-flash" width="640" height="360" wmode="transparent" seamlesstabbing="true" allowfullscreen="true" allowscriptaccess="always" overstretch="true" flashvars="guid=BQtfIEY1&amp;width=640&amp;height=360&amp;locksize=no&amp;dynamicseek=false&amp;qc_publisherId=p-18-mFEk4J448M" title="Introducing WordPress 3.0 &quot;Thelonious&quot;"></embed>
    \n

    For a more comprehensive look at everything that has improved in 3.0 check out 3.0′s Codex page or the long list of issues in Trac. (We’re trying to keep these announcement posts shorter.) Whew! That’s a lot packed into one release. I can’t think of a better way to kick off the 3.X cycle we’ll be in for the next two and a half years.

    \n

    The Future

    \n

    Normally this is where I’d say we’re about to start work on 3.1, but we’re actually not. We’re going to take a release cycle off to focus on all of the things around WordPress. The growth of the community has been breathtaking, including over 10.3 million downloads of version 2.9, but so much of our effort has been focused on the core software it hasn’t left much time for anything else. Over the next three months we’re going to split into ninja/pirate teams focused on different areas of the around-WordPress experience, including the showcase, Codex, forums, profiles, update and compatibility APIs, theme directory, plugin directory, mailing lists, core plugins, wordcamp.org… the possibilities are endless. The goal of the teams isn’t going to be to make things perfect all at once, just better than they are today. We think this investment of time will give us a much stronger infrastructure to grow WordPress.org for the many tens of millions of users that will join us during the 3.X release cycle.

    \n

    It Takes a Village

    \n

    I’m proud to acknowledge the contributions of the following 218 people to the 3.0 release cycle. These are the folks that make WordPress what it is, whose collaboration and hard work enable us to build something greater than the sum of our parts. In alphabetical order, of course.

    \n

    Committers: azaozz (Andrew Ozz) (prof), dd32 (Dion Hulse) (prof), donncha (Donncha O Caoimh) (prof), iammattthomas (Matt Thomas) (prof), josephscott (Joseph Scott) (prof), markjaquith (Mark Jaquith) (prof), matt (Matt Mullenweg) (prof), nacin (Andrew Nacin) (prof), nbachiyski (Николай Бачийски) (prof), ryan (Ryan Boren) (prof), westi (Peter Westwood) (prof), and wpmuguru (Ron Rennick) (prof). Contributors: aaroncampbell (Aaron Campbell) (prof), akerem (prof), alexkingorg (Alex King) (prof), amattie (prof), ampt (Luke Gallagher) (prof), andrea_r (prof), andreasnrb (Andreas Nurbo) (prof), anilo4ever (Angelo Verona) (prof), apeatling (Andy Peatling) (prof), apokalyptik (Demitrious Kelly) (prof), arena (André Renaut) (prof), barry (Barry Abrahamson) (prof), batmoo (Mohammad Jangda) (prof), beaulebens (Beau Lebens) (prof), belg4mit (prof), bigdawggi (Matthew G. Richmond) (prof), blepoxp (Glenn Ansley) (prof), brentes (Brent Shepherd) (prof), briancolinger (Brian Colinger) (prof), bumbu (prof), caesarsgrunt (Caesar Schinas) (prof), camiloclc (prof), CAMWebDesign (prof), carbolineum (prof), caspie (prof), catiakitahara (Cátia Kitahara) (prof), CharlesClarkson (Charles Clarkson) (prof), chdorner (Christof Dorner) (prof), chrisbliss18 (Chris Jean) (prof), chrisscott (Chris Scott) (prof), cnorris23 (Brandon Allen) (prof), coffee2code (Scott Reilly) (prof), computerwiz908 (prof), cyberhobo (Dylan Kuhn) (prof), dancole (Dan Cole) (prof), Daniel Koskinen , deepak.seth (Deepak Seth), demetris (Δημήτρης Κίκιζας) (prof), Denis-de-Bernardy (prof), dimadin (Milan Dinić) (prof), dndrnkrd (Dan Drinkard) (prof), docwhat (prof), dougwrites (\n href=\"http://profiles.wordpress.org/dougwrites\">prof), dphiffer (Dan Phiffer) (prof), dragoonis (prof), dremeda (Dre Armeda) (prof), dtoj , dougal (Dougal Campbell) (prof), duck_ (Jon Cave) (prof), dxjones (David Jones) (prof), eddieringle (Eddie Ringle) (prof), edward mindreantre (Edward Hevlund), eoinomurchu (prof), empireoflight/Ben Dunkle (prof), ericmann (Eric Mann) (prof), etiger13 (Eddie Monge Jr.) (prof), filosofo (Austin Matzko) (prof), firebird75 (prof), frankieroberto (Frankie Roberto) (prof), Frumph (Philip M. Hofer) (prof), garyc40 (Gary Cao) (prof), gautam2011 (prof), Gary Ross (Gazzer) , GDragoN (Milan Petrovic) (prof), greenshady (Justin Tadlock) (prof), GIGALinux (Dennis Morhardt) (prof), hakre (prof), husky (prof), iandstewart (Ian Stewart) (prof), ipstenu (Mika Epstein) (prof), jacobsantos (Jacob Santos) (prof), jamescollins (James Collins) (prof), jane (Jane Wells) (prof), jbsil (Jesse Silverstein) (prof), jdub (Jeff Waugh) (prof), jeffikus (Jeffrey Pearce) (prof), jeffstieler (Jeff Stieler) (prof), jeremyclarke (Jeremy Clarke) (prof), jfarthing84 (Jeff Farthing) (prof), Jick (James Dimick) (prof), jmstacey (Jon Stacey) (prof), jobjorn (Jobjörn Folkesson) (prof), johanee (Johan Eenfeldt) (prof), johnbillion (John Blackbourn) (prof), johnjamesjacoby/jjj (John James Jacoby) (prof), johnjosephbachir (John Joseph Bachir) (prof), johnl1479 (John Luetke) (prof), johnonolan (John O’Nolan) (prof), JohnPBloch/wmrom (John Bloch) (prof), joostdevalk/yoast (Joost de Valk) (prof), jorbin (Aaron Jorbin) (prof), joshtime (prof), jshreve (prof), junsuijin (prof), kallewangstedt (Karl Wångstedt) (prof), keighl (Kyle Truscott) (prof), kevinB (Kevin Behrens) (prof), koopersmith (Daryl Koopersmith) (prof), kpdesign (Kim Parsell)
    \n
    (prof), ktdreyer (Ken Dreyer) (prof), kurtmckee (Kurt McKee) (prof), laceous (prof), lancewillett (Lance Willett) (prof), lloydbudd (Lloyd Budd) (prof), lriggle (prof), markauk (prof), markmcwilliams (Mark McWilliams) (prof), markoheijnen (Marko Heijnen) (prof), markup (Sasha Mukhin) (prof), mattsains (prof), matveb (Matias Ventura) (prof), mdawaffe (Michael Adams) (prof) , mentel_br (prof), messenlehner (Brian Messenlehner) (prof), miau_jp (prof), Michael (Michael Heilemann) (prof), MichaelH (prof), mikeschinkel (Mike Schinkel) (prof), Miloslav Beňo , minusfive (prof), miqrogroove (Robert Chapin) (prof), misterbisson (Casey Bisson) (prof), mitchoyoshitaka (mitcho (Michael 芳貴 Erlewine)) (prof), MMN-o (prof), momo360modena (Amaury Balmer) (prof), morganestes (Morgan Estes) (prof), mrmist (David McFarlane) (prof), mtdewvirus (Nick Momrik) (prof), nadavvin (prof), Nao (Naoko McCracken) (prof), nathanrice (Nathan Rice) (prof), neoxx (Bernhard Riedl) (prof), niallkennedy (Niall Kennedy) (prof), ninjaWR (Ryan Murphy) (prof), noel (Noël Jackson) (prof), nomulous (Fletcher Tomalty) (prof), ocean90 (Dominik Schilling) (prof), Otto42 (Samuel Wood) (prof), pedger (prof), PeteMall (prof), pampfelimetten (prof), pnettle (prof), PotterSys (Juan) (prof), prettyboymp (Michael Pretty) (prof), ptahdunbar (Ptah Dunbar) (prof), ramiy (prof), RanYanivHartstein (Ran Yaniv Hartstein) (prof), reaperhulk (Paul Kehrer) (prof), reko (prof), remi (Rémi Prévost) (prof), rlerdorf (Rasmus Lerdorf) (prof) , rmccue (Ryan McCue) (prof), rooodini (prof), rovo89 (prof), ruslany (\n\"http://profiles.wordpress.org/ruslany\">prof), sc0ttkclark (Scott Kingsley Clark) (prof), scottbasgaard (Scott Basgaard) (prof), ScottMac (prof), scribu (prof), SergeyBiryukov (Сергей Бирюков) (prof), ShaneF (prof), sillybean (Stephanie Leary) (prof), Simek (Bartosz Kaszubowski) (prof), simonwheatley (Simon Wheatley) (prof), simosx (Σίμος Ξενιτέλλης) (prof), sirzooro (Daniel Frużyński) (prof), sivel (Matt Martz) (prof), skeltoac (Andy Skelton) (prof), snumb130 (Luke Howell) (prof), solarissmoke (Samir Shah) (prof), sorich87 (prof), ssandison (prof), stencil (prof), stephdau (Stephane Daury) (prof), tai (prof), TECannon (Tracy Cannon) (prof), technosailor (Aaron Brazell) (prof), tenpura (prof), thales.tede , TheDeadMedic (prof), thee17 (Charles E. Frees-Melvin) (prof), thetoine (Antoine Girard) (prof), tinkerpriest (c.bavota) (prof), TobiasBg (Tobias Bäthge) (prof), tomtomp (prof), tychay (Terry Chay) (prof), typeomedia (prof), uglyrobot (Aaron Edwards) (prof), UnderWordPressure (prof), usermrpapa (prof), Utkarsh (Utkarsh Kukreti) (prof), validben (Benoit Gilloz ) (prof), Viper007Bond (Alex Mills) (prof), vladimir_kolesnikov (Vladimir Kolesnikov) (prof), willmot (Tom Willmot) (prof), wahgnube (prof), waltervos (Walter Vos) (prof), wds-chris (Christopher Cochran) (prof), williamsba1 (Brad Williams) (prof), wnorris (Will Norris) (prof), xibe (Xavier Borderie) (prof), yoavf (Yoav Farhi) (prof), zeo (Safirul Alredha) (prof), znarfor (François Hodierne) (prof), and zoranzaric (Zoran Zaric) (prof).

    \n

    Bonus

    \n

    If you’ve made it this far, check out my 2010 State of the Word speech at WordCamp San Francisco, it’s jam-packed with information on the growth of WordPress, 3.0, what we’re planning for the future, and the philosophy of WordPress.

    \n

    \n\";}s:3:\"wfw\";a:1:{s:10:\"commentrss\";s:50:\"http://wordpress.org/news/2010/06/thelonious/feed/\";}s:5:\"slash\";a:1:{s:8:\"comments\";s:1:\"5\";}s:7:\"summary\";s:341:\"Arm your vuvuzelas: WordPress 3.0, the thirteenth major release of WordPress and the culmination of half a year of work by 218 contributors, is now available for download (or upgrade within your dashboard). Major new features in this release include a sexy new default theme called Twenty Ten. Theme developers have new APIs that allow [...]\";s:12:\"atom_content\";s:38078:\"

    Arm your vuvuzelas: WordPress 3.0, the thirteenth major release of WordPress and the culmination of half a year of work by 218 contributors, is now available for download (or upgrade within your dashboard). Major new features in this release include a sexy new default theme called Twenty Ten. Theme developers have new APIs that allow them to easily implement custom backgrounds, headers, shortlinks, menus (no more file editing), post types, and taxonomies. (Twenty Ten theme shows all of that off.) Developers and network admins will appreciate the long-awaited merge of MU and WordPress, creating the new multi-site functionality which makes it possible to run one blog or ten million from the same installation. As a user, you will love the new lighter interface, the contextual help on every screen, the 1,217 bug fixes and feature enhancements, bulk updates so you can upgrade 15 plugins at once with a single click, and blah blah blah just watch the video. \':)\' (In HD, if you can, so you can catch the Easter eggs.)

    \n

    \n

    If you’d like to embed the WordPress 3.0 video tour in your blog, copy and paste this code for the high quality version:

    \n
    <embed src="http://v.wordpress.com/wp-content/plugins/video/flvplayer.swf?ver=1.21" type="application/x-shockwave-flash" width="640" height="360" wmode="transparent" seamlesstabbing="true" allowfullscreen="true" allowscriptaccess="always" overstretch="true" flashvars="guid=BQtfIEY1&amp;width=640&amp;height=360&amp;locksize=no&amp;dynamicseek=false&amp;qc_publisherId=p-18-mFEk4J448M" title="Introducing WordPress 3.0 &quot;Thelonious&quot;"></embed>
    \n

    For a more comprehensive look at everything that has improved in 3.0 check out 3.0′s Codex page or the long list of issues in Trac. (We’re trying to keep these announcement posts shorter.) Whew! That’s a lot packed into one release. I can’t think of a better way to kick off the 3.X cycle we’ll be in for the next two and a half years.

    \n

    The Future

    \n

    Normally this is where I’d say we’re about to start work on 3.1, but we’re actually not. We’re going to take a release cycle off to focus on all of the things around WordPress. The growth of the community has been breathtaking, including over 10.3 million downloads of version 2.9, but so much of our effort has been focused on the core software it hasn’t left much time for anything else. Over the next three months we’re going to split into ninja/pirate teams focused on different areas of the around-WordPress experience, including the showcase, Codex, forums, profiles, update and compatibility APIs, theme directory, plugin directory, mailing lists, core plugins, wordcamp.org… the possibilities are endless. The goal of the teams isn’t going to be to make things perfect all at once, just better than they are today. We think this investment of time will give us a much stronger infrastructure to grow WordPress.org for the many tens of millions of users that will join us during the 3.X release cycle.

    \n

    It Takes a Village

    \n

    I’m proud to acknowledge the contributions of the following 218 people to the 3.0 release cycle. These are the folks that make WordPress what it is, whose collaboration and hard work enable us to build something greater than the sum of our parts. In alphabetical order, of course.

    \n

    Committers: azaozz (Andrew Ozz) (prof), dd32 (Dion Hulse) (prof), donncha (Donncha O Caoimh) (prof), iammattthomas (Matt Thomas) (prof), josephscott (Joseph Scott) (prof), markjaquith (Mark Jaquith) (prof), matt (Matt Mullenweg) (prof), nacin (Andrew Nacin) (prof), nbachiyski (Николай Бачийски) (prof), ryan (Ryan Boren) (prof), westi (Peter Westwood) (prof), and wpmuguru (Ron Rennick) (prof). Contributors: aaroncampbell (Aaron Campbell) (prof), akerem (prof), alexkingorg (Alex King) (prof), amattie (prof), ampt (Luke Gallagher) (prof), andrea_r (prof), andreasnrb (Andreas Nurbo) (prof), anilo4ever (Angelo Verona) (prof), apeatling (Andy Peatling) (prof), apokalyptik (Demitrious Kelly) (prof), arena (André Renaut) (prof), barry (Barry Abrahamson) (prof), batmoo (Mohammad Jangda) (prof), beaulebens (Beau Lebens) (prof), belg4mit (prof), bigdawggi (Matthew G. Richmond) (prof), blepoxp (Glenn Ansley) (prof), brentes (Brent Shepherd) (prof), briancolinger (Brian Colinger) (prof), bumbu (prof), caesarsgrunt (Caesar Schinas) (prof), camiloclc (prof), CAMWebDesign (prof), carbolineum (prof), caspie (prof), catiakitahara (Cátia Kitahara) (prof), CharlesClarkson (Charles Clarkson) (prof), chdorner (Christof Dorner) (prof), chrisbliss18 (Chris Jean) (prof), chrisscott (Chris Scott) (prof), cnorris23 (Brandon Allen) (prof), coffee2code (Scott Reilly) (prof), computerwiz908 (prof), cyberhobo (Dylan Kuhn) (prof), dancole (Dan Cole) (prof), Daniel Koskinen , deepak.seth (Deepak Seth), demetris (Δημήτρης Κίκιζας) (prof), Denis-de-Bernardy (prof), dimadin (Milan Dinić) (prof), dndrnkrd (Dan Drinkard) (prof), docwhat (prof), dougwrites (\n href=\"http://profiles.wordpress.org/dougwrites\">prof), dphiffer (Dan Phiffer) (prof), dragoonis (prof), dremeda (Dre Armeda) (prof), dtoj , dougal (Dougal Campbell) (prof), duck_ (Jon Cave) (prof), dxjones (David Jones) (prof), eddieringle (Eddie Ringle) (prof), edward mindreantre (Edward Hevlund), eoinomurchu (prof), empireoflight/Ben Dunkle (prof), ericmann (Eric Mann) (prof), etiger13 (Eddie Monge Jr.) (prof), filosofo (Austin Matzko) (prof), firebird75 (prof), frankieroberto (Frankie Roberto) (prof), Frumph (Philip M. Hofer) (prof), garyc40 (Gary Cao) (prof), gautam2011 (prof), Gary Ross (Gazzer) , GDragoN (Milan Petrovic) (prof), greenshady (Justin Tadlock) (prof), GIGALinux (Dennis Morhardt) (prof), hakre (prof), husky (prof), iandstewart (Ian Stewart) (prof), ipstenu (Mika Epstein) (prof), jacobsantos (Jacob Santos) (prof), jamescollins (James Collins) (prof), jane (Jane Wells) (prof), jbsil (Jesse Silverstein) (prof), jdub (Jeff Waugh) (prof), jeffikus (Jeffrey Pearce) (prof), jeffstieler (Jeff Stieler) (prof), jeremyclarke (Jeremy Clarke) (prof), jfarthing84 (Jeff Farthing) (prof), Jick (James Dimick) (prof), jmstacey (Jon Stacey) (prof), jobjorn (Jobjörn Folkesson) (prof), johanee (Johan Eenfeldt) (prof), johnbillion (John Blackbourn) (prof), johnjamesjacoby/jjj (John James Jacoby) (prof), johnjosephbachir (John Joseph Bachir) (prof), johnl1479 (John Luetke) (prof), johnonolan (John O’Nolan) (prof), JohnPBloch/wmrom (John Bloch) (prof), joostdevalk/yoast (Joost de Valk) (prof), jorbin (Aaron Jorbin) (prof), joshtime (prof), jshreve (prof), junsuijin (prof), kallewangstedt (Karl Wångstedt) (prof), keighl (Kyle Truscott) (prof), kevinB (Kevin Behrens) (prof), koopersmith (Daryl Koopersmith) (prof), kpdesign (Kim Parsell)
    \n
    (prof), ktdreyer (Ken Dreyer) (prof), kurtmckee (Kurt McKee) (prof), laceous (prof), lancewillett (Lance Willett) (prof), lloydbudd (Lloyd Budd) (prof), lriggle (prof), markauk (prof), markmcwilliams (Mark McWilliams) (prof), markoheijnen (Marko Heijnen) (prof), markup (Sasha Mukhin) (prof), mattsains (prof), matveb (Matias Ventura) (prof), mdawaffe (Michael Adams) (prof) , mentel_br (prof), messenlehner (Brian Messenlehner) (prof), miau_jp (prof), Michael (Michael Heilemann) (prof), MichaelH (prof), mikeschinkel (Mike Schinkel) (prof), Miloslav Beňo , minusfive (prof), miqrogroove (Robert Chapin) (prof), misterbisson (Casey Bisson) (prof), mitchoyoshitaka (mitcho (Michael 芳貴 Erlewine)) (prof), MMN-o (prof), momo360modena (Amaury Balmer) (prof), morganestes (Morgan Estes) (prof), mrmist (David McFarlane) (prof), mtdewvirus (Nick Momrik) (prof), nadavvin (prof), Nao (Naoko McCracken) (prof), nathanrice (Nathan Rice) (prof), neoxx (Bernhard Riedl) (prof), niallkennedy (Niall Kennedy) (prof), ninjaWR (Ryan Murphy) (prof), noel (Noël Jackson) (prof), nomulous (Fletcher Tomalty) (prof), ocean90 (Dominik Schilling) (prof), Otto42 (Samuel Wood) (prof), pedger (prof), PeteMall (prof), pampfelimetten (prof), pnettle (prof), PotterSys (Juan) (prof), prettyboymp (Michael Pretty) (prof), ptahdunbar (Ptah Dunbar) (prof), ramiy (prof), RanYanivHartstein (Ran Yaniv Hartstein) (prof), reaperhulk (Paul Kehrer) (prof), reko (prof), remi (Rémi Prévost) (prof), rlerdorf (Rasmus Lerdorf) (prof) , rmccue (Ryan McCue) (prof), rooodini (prof), rovo89 (prof), ruslany (\n\"http://profiles.wordpress.org/ruslany\">prof), sc0ttkclark (Scott Kingsley Clark) (prof), scottbasgaard (Scott Basgaard) (prof), ScottMac (prof), scribu (prof), SergeyBiryukov (Сергей Бирюков) (prof), ShaneF (prof), sillybean (Stephanie Leary) (prof), Simek (Bartosz Kaszubowski) (prof), simonwheatley (Simon Wheatley) (prof), simosx (Σίμος Ξενιτέλλης) (prof), sirzooro (Daniel Frużyński) (prof), sivel (Matt Martz) (prof), skeltoac (Andy Skelton) (prof), snumb130 (Luke Howell) (prof), solarissmoke (Samir Shah) (prof), sorich87 (prof), ssandison (prof), stencil (prof), stephdau (Stephane Daury) (prof), tai (prof), TECannon (Tracy Cannon) (prof), technosailor (Aaron Brazell) (prof), tenpura (prof), thales.tede , TheDeadMedic (prof), thee17 (Charles E. Frees-Melvin) (prof), thetoine (Antoine Girard) (prof), tinkerpriest (c.bavota) (prof), TobiasBg (Tobias Bäthge) (prof), tomtomp (prof), tychay (Terry Chay) (prof), typeomedia (prof), uglyrobot (Aaron Edwards) (prof), UnderWordPressure (prof), usermrpapa (prof), Utkarsh (Utkarsh Kukreti) (prof), validben (Benoit Gilloz ) (prof), Viper007Bond (Alex Mills) (prof), vladimir_kolesnikov (Vladimir Kolesnikov) (prof), willmot (Tom Willmot) (prof), wahgnube (prof), waltervos (Walter Vos) (prof), wds-chris (Christopher Cochran) (prof), williamsba1 (Brad Williams) (prof), wnorris (Will Norris) (prof), xibe (Xavier Borderie) (prof), yoavf (Yoav Farhi) (prof), zeo (Safirul Alredha) (prof), znarfor (François Hodierne) (prof), and zoranzaric (Zoran Zaric) (prof).

    \n

    Bonus

    \n

    If you’ve made it this far, check out my 2010 State of the Word speech at WordCamp San Francisco, it’s jam-packed with information on the growth of WordPress, 3.0, what we’re planning for the future, and the philosophy of WordPress.

    \n

    \n\";}i:7;a:13:{s:5:\"title\";s:7:\"3.0 RC3\";s:4:\"link\";s:42:\"http://wordpress.org/news/2010/06/3-0-rc3/\";s:8:\"comments\";s:51:\"http://wordpress.org/news/2010/06/3-0-rc3/#comments\";s:7:\"pubdate\";s:31:\"Fri, 11 Jun 2010 20:49:38 +0000\";s:2:\"dc\";a:1:{s:7:\"creator\";s:10:\"Jane Wells\";}s:8:\"category\";s:11:\"Development\";s:4:\"guid\";s:40:\"http://wordpress.org/development/?p=1376\";s:11:\"description\";s:257:\"A weekend present, in haiku: Last call; final bugs Itch, scratch, contort; calmly wait For now: RC3 That’s right. What will hopefully be the final release candidate, RC3, is now available for download and testing. Plugin developers: test your plugins!\";s:7:\"content\";a:1:{s:7:\"encoded\";s:438:\"

    A weekend present, in haiku:

    \n

    Last call; final bugs
    \nItch, scratch, contort; calmly wait
    \nFor now: RC3

    \n

    That’s right. What will hopefully be the final release candidate, RC3, is now available for download and testing.

    \n

    Plugin developers: test your plugins!

    \n\";}s:3:\"wfw\";a:1:{s:10:\"commentrss\";s:47:\"http://wordpress.org/news/2010/06/3-0-rc3/feed/\";}s:5:\"slash\";a:1:{s:8:\"comments\";s:1:\"0\";}s:7:\"summary\";s:257:\"A weekend present, in haiku: Last call; final bugs Itch, scratch, contort; calmly wait For now: RC3 That’s right. What will hopefully be the final release candidate, RC3, is now available for download and testing. Plugin developers: test your plugins!\";s:12:\"atom_content\";s:438:\"

    A weekend present, in haiku:

    \n

    Last call; final bugs
    \nItch, scratch, contort; calmly wait
    \nFor now: RC3

    \n

    That’s right. What will hopefully be the final release candidate, RC3, is now available for download and testing.

    \n

    Plugin developers: test your plugins!

    \n\";}i:8;a:13:{s:5:\"title\";s:37:\"Expanding the Theme Review Experiment\";s:4:\"link\";s:72:\"http://wordpress.org/news/2010/06/expanding-the-theme-review-experiment/\";s:8:\"comments\";s:81:\"http://wordpress.org/news/2010/06/expanding-the-theme-review-experiment/#comments\";s:7:\"pubdate\";s:31:\"Wed, 09 Jun 2010 16:06:11 +0000\";s:2:\"dc\";a:1:{s:7:\"creator\";s:12:\"Joseph Scott\";}s:8:\"category\";s:26:\"CommunityDevelopmentThemes\";s:4:\"guid\";s:40:\"http://wordpress.org/development/?p=1347\";s:11:\"description\";s:272:\"When I was a kid my dad used to practice his typing skills (on a real typewriter no less) with the phrase: Now is the time for all good men to come to the aid of their country. For some reason that has stuck with me all these years. Today I’m going to rephrase and [...]\";s:7:\"content\";a:1:{s:7:\"encoded\";s:1962:\"

    When I was a kid my dad used to practice his typing skills (on a real typewriter no less) with the phrase:

    \n

    Now is the time for all good men to come to the aid of their country.

    \n

    For some reason that has stuck with me all these years. Today I’m going to rephrase and re-purpose that line:

    \n

    Now is the time for great theme developers to come to the aid of their community.

    \n

    The theme directory has been chugging along for more than a year now. During that time we’ve tinkered with the review process and some of the management tools, but haven’t really opened it up as much as we’d like. It’s time to rip off the band-aid and take some action; to that end, we’re looking for community members to help with the process of reviewing themes for the directory.

    \n

    Right now this is a bit like a New Year’s resolution to exercise every day: it’s what we need to do, but we’re still figuring out exactly how it will all work. That’s part of the community involvement as well — we expect that those who pitch in will also help shape the process.

    \n

    What’s involved in reviewing themes for the directory? There are some obvious things, such as being familiar with PHP and WordPress theme code (and the theme development checklist), with an eye for security issues. You would also need to have the ability to set up a separate install of the latest version of WordPress for testing theme submissions.

    \n

    Hopefully a few talented theme developers are reading this right now and saying to themselves, “I’d love to help! How do I get started?” Just join the new theme reviewers mailing list and we’ll get you up to speed on this new opportunity to come to the aid of your community.

    \n\";}s:3:\"wfw\";a:1:{s:10:\"commentrss\";s:77:\"http://wordpress.org/news/2010/06/expanding-the-theme-review-experiment/feed/\";}s:5:\"slash\";a:1:{s:8:\"comments\";s:1:\"0\";}s:7:\"summary\";s:272:\"When I was a kid my dad used to practice his typing skills (on a real typewriter no less) with the phrase: Now is the time for all good men to come to the aid of their country. For some reason that has stuck with me all these years. Today I’m going to rephrase and [...]\";s:12:\"atom_content\";s:1962:\"

    When I was a kid my dad used to practice his typing skills (on a real typewriter no less) with the phrase:

    \n

    Now is the time for all good men to come to the aid of their country.

    \n

    For some reason that has stuck with me all these years. Today I’m going to rephrase and re-purpose that line:

    \n

    Now is the time for great theme developers to come to the aid of their community.

    \n

    The theme directory has been chugging along for more than a year now. During that time we’ve tinkered with the review process and some of the management tools, but haven’t really opened it up as much as we’d like. It’s time to rip off the band-aid and take some action; to that end, we’re looking for community members to help with the process of reviewing themes for the directory.

    \n

    Right now this is a bit like a New Year’s resolution to exercise every day: it’s what we need to do, but we’re still figuring out exactly how it will all work. That’s part of the community involvement as well — we expect that those who pitch in will also help shape the process.

    \n

    What’s involved in reviewing themes for the directory? There are some obvious things, such as being familiar with PHP and WordPress theme code (and the theme development checklist), with an eye for security issues. You would also need to have the ability to set up a separate install of the latest version of WordPress for testing theme submissions.

    \n

    Hopefully a few talented theme developers are reading this right now and saying to themselves, “I’d love to help! How do I get started?” Just join the new theme reviewers mailing list and we’ll get you up to speed on this new opportunity to come to the aid of your community.

    \n\";}i:9;a:13:{s:5:\"title\";s:31:\"WordPress 3.0 Release Candidate\";s:4:\"link\";s:66:\"http://wordpress.org/news/2010/05/wordpress-3-0-release-candidate/\";s:8:\"comments\";s:75:\"http://wordpress.org/news/2010/05/wordpress-3-0-release-candidate/#comments\";s:7:\"pubdate\";s:31:\"Fri, 28 May 2010 02:35:04 +0000\";s:2:\"dc\";a:1:{s:7:\"creator\";s:10:\"Jane Wells\";}s:8:\"category\";s:11:\"Development\";s:4:\"guid\";s:40:\"http://wordpress.org/development/?p=1358\";s:11:\"description\";s:345:\"As Matt teased earlier, the first release candidate (RC1) for WordPress 3.0 is now available. What’s an RC? An RC comes after beta and before the final launch. It means we think we’ve got everything done: all features finished, all bugs squashed, and all potential issues addressed. But, then, with over 20 million people using [...]\";s:7:\"content\";a:1:{s:7:\"encoded\";s:1993:\"

    As Matt teased earlier, the first release candidate (RC1) for WordPress 3.0 is now available. What’s an RC? An RC comes after beta and before the final launch. It means we think we’ve got everything done: all features finished, all bugs squashed, and all potential issues addressed. But, then, with over 20 million people using WordPress with a wide variety of configurations and hosting setups, it’s entirely possible that we’ve missed something. So! For the brave of heart, please download the RC and test it out (but not on your live site unless you’re extra adventurous). Some things to know:

    \n
      \n
    • Custom menus are finished! Yay!
    • \n
    • Multi-site is all set.
    • \n
    • The look of the WordPress admin has been lightened up a little bit, so you can focus more on your content.
    • \n
    • There are a ton of changes, so plugin authors, please test your plugins now, so that if there is a compatibility issue, we can figure it out before the final release.
    • \n
    • Plugin and theme *users* are also encouraged to test things out. If you find problems, let your plugin/theme authors know so they can figure out the cause.
    • \n
    • There are a couple of known issues.
    • \n
    \n

    If you are testing the RC and come across a bug, you can:

    \n\n

    We hope you enjoy playing with the 3.0 RC as much as we’ve enjoyed making it for you. Enjoy!

    \n

    Download WordPress 3.0 RC1

    \n\";}s:3:\"wfw\";a:1:{s:10:\"commentrss\";s:71:\"http://wordpress.org/news/2010/05/wordpress-3-0-release-candidate/feed/\";}s:5:\"slash\";a:1:{s:8:\"comments\";s:1:\"0\";}s:7:\"summary\";s:345:\"As Matt teased earlier, the first release candidate (RC1) for WordPress 3.0 is now available. What’s an RC? An RC comes after beta and before the final launch. It means we think we’ve got everything done: all features finished, all bugs squashed, and all potential issues addressed. But, then, with over 20 million people using [...]\";s:12:\"atom_content\";s:1993:\"

    As Matt teased earlier, the first release candidate (RC1) for WordPress 3.0 is now available. What’s an RC? An RC comes after beta and before the final launch. It means we think we’ve got everything done: all features finished, all bugs squashed, and all potential issues addressed. But, then, with over 20 million people using WordPress with a wide variety of configurations and hosting setups, it’s entirely possible that we’ve missed something. So! For the brave of heart, please download the RC and test it out (but not on your live site unless you’re extra adventurous). Some things to know:

    \n
      \n
    • Custom menus are finished! Yay!
    • \n
    • Multi-site is all set.
    • \n
    • The look of the WordPress admin has been lightened up a little bit, so you can focus more on your content.
    • \n
    • There are a ton of changes, so plugin authors, please test your plugins now, so that if there is a compatibility issue, we can figure it out before the final release.
    • \n
    • Plugin and theme *users* are also encouraged to test things out. If you find problems, let your plugin/theme authors know so they can figure out the cause.
    • \n
    • There are a couple of known issues.
    • \n
    \n

    If you are testing the RC and come across a bug, you can:

    \n\n

    We hope you enjoy playing with the 3.0 RC as much as we’ve enjoyed making it for you. Enjoy!

    \n

    Download WordPress 3.0 RC1

    \n\";}}s:7:\"channel\";a:8:{s:5:\"title\";s:14:\"WordPress News\";s:4:\"link\";s:25:\"http://wordpress.org/news\";s:11:\"description\";s:14:\"WordPress News\";s:13:\"lastbuilddate\";s:31:\"Thu, 30 Sep 2010 03:23:31 +0000\";s:8:\"language\";s:2:\"en\";s:2:\"sy\";a:2:{s:12:\"updateperiod\";s:6:\"hourly\";s:15:\"updatefrequency\";s:1:\"1\";}s:9:\"generator\";s:33:\"http://wordpress.org/?v=3.1-alpha\";s:7:\"tagline\";s:14:\"WordPress News\";}s:9:\"textinput\";a:0:{}s:5:\"image\";a:0:{}s:9:\"feed_type\";s:3:\"RSS\";s:12:\"feed_version\";s:3:\"2.0\";s:5:\"stack\";a:0:{}s:9:\"inchannel\";b:0;s:6:\"initem\";b:0;s:9:\"incontent\";b:0;s:11:\"intextinput\";b:0;s:7:\"inimage\";b:0;s:13:\"current_field\";s:0:\"\";s:17:\"current_namespace\";b:0;s:19:\"_CONTENT_CONSTRUCTS\";a:6:{i:0;s:7:\"content\";i:1;s:7:\"summary\";i:2;s:4:\"info\";i:3;s:5:\"title\";i:4;s:7:\"tagline\";i:5;s:9:\"copyright\";}s:13:\"last_modified\";s:31:\"Thu, 30 Sep 2010 03:23:31 GMT\r\n\";s:4:\"etag\";s:36:\"\"ad899bf1e50edaa60775593ca5bd6b30\"\r\n\";}',20,8,'',1,'no'),(68,0,'rss_0ff4b43bd116a9d8720d689c80e7dfd4_ts','Y',1,'1286638381',20,8,'',1,'no'),(69,0,'rss_867bd5c64f85878d03a060509cd2f92c','Y',1,'O:9:\"magpierss\":19:{s:6:\"parser\";i:0;s:12:\"current_item\";a:0:{}s:5:\"items\";a:50:{i:0;a:7:{s:5:\"title\";s:59:\"Weblog Tools Collection: WordPress Theme Releases for 10/09\";s:4:\"guid\";s:40:\"http://weblogtoolscollection.com/?p=8789\";s:4:\"link\";s:89:\"http://weblogtoolscollection.com/archives/2010/10/09/wordpress-theme-releases-for-1009-2/\";s:11:\"description\";s:1513:\"

    \"friendly

    \n

    Friendly Fast is both fast loading and optimized for our search engine friend Google.

    \n

    \"parquetry\"

    \n

    Parquetry is a simple 2-column right sidebar WordPress template with a woodgrain background and an eye-catching header graphic.

    \n

    \"purple

    \n

    PurpleSatin was designed using stylish purple colors and a slim design.

    \nTweet\";s:7:\"pubdate\";s:31:\"Sat, 09 Oct 2010 13:00:03 +0000\";s:2:\"dc\";a:1:{s:7:\"creator\";s:10:\"James Huff\";}s:7:\"summary\";s:1513:\"

    \"friendly

    \n

    Friendly Fast is both fast loading and optimized for our search engine friend Google.

    \n

    \"parquetry\"

    \n

    Parquetry is a simple 2-column right sidebar WordPress template with a woodgrain background and an eye-catching header graphic.

    \n

    \"purple

    \n

    PurpleSatin was designed using stylish purple colors and a slim design.

    \nTweet\";}i:1;a:7:{s:5:\"title\";s:61:\"Publisher Blog: MediaPost: “The winner will be WordPress”\";s:4:\"guid\";s:43:\"http://publisherblog.automattic.com/?p=1063\";s:4:\"link\";s:78:\"http://publisherblog.automattic.com/2010/10/08/mediapost-the-winner-wordpress/\";s:11:\"description\";s:3312:\"

    Interesting post from Philip Leigh of MediaPost this week, titled “The Implications Of Blogging“:

    \n

    …Similarly, it’s likely that the future of blogging — and the future spread of knowledge — will reflect the characteristics of whatever blog platform achieves dominance. Increasingly it appears that the winner will be WordPress. It first appeared seven years ago as a successor to software typically used for online diaries. Thus, it was originally text-based, but has since evolved to also encompass audio, video, and animation. It has even become a popular platform for entire websites as well as important components of prominent sites such as The New York Times.

    \n

    (Emphasis mine).

    \n

    Philip goes on to state:

    \n

    In short, WordPress is not merely a blogging tool. It’s a platform that can lead to an explosion of new media properties capable of text, video, audio, music, animation, interactivity, online merchandising, podcasting, and even social networking. Successful innovations will rapidly take root and expand while unsuccessful ones will quickly perish or remain marginal.

    \n

    [ Read the full article on MediaPost.com ]

    \n
    \"\" \"\" \"\" \"\" \"\" \"\" \"\" \"\"\";s:7:\"pubdate\";s:31:\"Fri, 08 Oct 2010 23:51:58 +0000\";s:2:\"dc\";a:1:{s:7:\"creator\";s:16:\"Raanan Bar-Cohen\";}s:7:\"summary\";s:3312:\"

    Interesting post from Philip Leigh of MediaPost this week, titled “The Implications Of Blogging“:

    \n

    …Similarly, it’s likely that the future of blogging — and the future spread of knowledge — will reflect the characteristics of whatever blog platform achieves dominance. Increasingly it appears that the winner will be WordPress. It first appeared seven years ago as a successor to software typically used for online diaries. Thus, it was originally text-based, but has since evolved to also encompass audio, video, and animation. It has even become a popular platform for entire websites as well as important components of prominent sites such as The New York Times.

    \n

    (Emphasis mine).

    \n

    Philip goes on to state:

    \n

    In short, WordPress is not merely a blogging tool. It’s a platform that can lead to an explosion of new media properties capable of text, video, audio, music, animation, interactivity, online merchandising, podcasting, and even social networking. Successful innovations will rapidly take root and expand while unsuccessful ones will quickly perish or remain marginal.

    \n

    [ Read the full article on MediaPost.com ]

    \n
    \"\" \"\" \"\" \"\" \"\" \"\" \"\" \"\"\";}i:2;a:7:{s:5:\"title\";s:66:\"Weblog Tools Collection: 2010 WordPress Honors Seeking Submissions\";s:4:\"guid\";s:40:\"http://weblogtoolscollection.com/?p=8784\";s:4:\"link\";s:95:\"http://weblogtoolscollection.com/archives/2010/10/08/2010-wordpress-honors-seeking-submissions/\";s:11:\"description\";s:840:\"

    The 2010 WordPress Honors launched earlier this week and is currently seeking submissions and votes for your favorite WordPress plugins, themes, sites, and personalities.

    \n

    Final voting will begin once the nominees have been announced in mid November, and the winners will be announced in early January.

    \n

    What’s your take on award ceremonies like this? Will WPHonors show the best that the WordPress community has to offer, or will this be just another popularity content?

    \nTweet\";s:7:\"pubdate\";s:31:\"Fri, 08 Oct 2010 13:00:13 +0000\";s:2:\"dc\";a:1:{s:7:\"creator\";s:10:\"James Huff\";}s:7:\"summary\";s:840:\"

    The 2010 WordPress Honors launched earlier this week and is currently seeking submissions and votes for your favorite WordPress plugins, themes, sites, and personalities.

    \n

    Final voting will begin once the nominees have been announced in mid November, and the winners will be announced in early January.

    \n

    What’s your take on award ceremonies like this? Will WPHonors show the best that the WordPress community has to offer, or will this be just another popularity content?

    \nTweet\";}i:3;a:7:{s:5:\"title\";s:32:\"BuddyPress: Vote for BuddyPress!\";s:4:\"guid\";s:29:\"http://buddypress.org/?p=1358\";s:4:\"link\";s:50:\"http://buddypress.org/2010/10/vote-for-buddypress/\";s:11:\"description\";s:2206:\"

    The Open Source Awards is an annual online event held by Packt Publishing to distinguish excellence among Open Source projects.

    \n

    Now in its fifth year, the Award (formerly known as the Open Source Content Management System (CMS) Award) is designed to encourage, support, recognize and reward not only CMSes but a wider range of Open Source projects.

    \n

    This year BuddyPress has the honor of being a finalist in the “Most Promising Open Source Project” category, which is for all Open Source projects that made their debut within the past 2 years. We’re up against some stiff competition with LiveStreet CMS, Pimcore, Tomato CMS, and WolfCMS, so we’re asking for your support!

    \n

    I’d be lying if I said I didn’t want or care about the $2,500 prize for winning our category. Andy would really like a sweet 3D-TV, and I could use a posh new living room set myself, but we decided donating the proceeds to the WordPress Foundation was probably the best way to use any cash winnings. \":)\"

    \n

    To help make voting worth your while, PacktPub is giving away free Amazon Kindles to random voters and nominees. If showing your BuddyPress pride isn’t enough, do it for the opportunity to score a free Kindle!

    \n

    So click the banner below and be whisked away to Packt Pubs voting page, where you can [help Andy enjoy Jurassic Park like it was meant to be enjoyed] [help John take epic naps on a new comfy couch] help support BuddyPress and maybe win yourself a Kindle!

    \n

    \"Vote

    \";s:7:\"pubdate\";s:31:\"Thu, 07 Oct 2010 16:47:43 +0000\";s:2:\"dc\";a:1:{s:7:\"creator\";s:17:\"John James Jacoby\";}s:7:\"summary\";s:2206:\"

    The Open Source Awards is an annual online event held by Packt Publishing to distinguish excellence among Open Source projects.

    \n

    Now in its fifth year, the Award (formerly known as the Open Source Content Management System (CMS) Award) is designed to encourage, support, recognize and reward not only CMSes but a wider range of Open Source projects.

    \n

    This year BuddyPress has the honor of being a finalist in the “Most Promising Open Source Project” category, which is for all Open Source projects that made their debut within the past 2 years. We’re up against some stiff competition with LiveStreet CMS, Pimcore, Tomato CMS, and WolfCMS, so we’re asking for your support!

    \n

    I’d be lying if I said I didn’t want or care about the $2,500 prize for winning our category. Andy would really like a sweet 3D-TV, and I could use a posh new living room set myself, but we decided donating the proceeds to the WordPress Foundation was probably the best way to use any cash winnings. \":)\"

    \n

    To help make voting worth your while, PacktPub is giving away free Amazon Kindles to random voters and nominees. If showing your BuddyPress pride isn’t enough, do it for the opportunity to score a free Kindle!

    \n

    So click the banner below and be whisked away to Packt Pubs voting page, where you can [help Andy enjoy Jurassic Park like it was meant to be enjoyed] [help John take epic naps on a new comfy couch] help support BuddyPress and maybe win yourself a Kindle!

    \n

    \"Vote

    \";}i:4;a:7:{s:5:\"title\";s:60:\"Weblog Tools Collection: WordPress Plugin Releases for 10/07\";s:4:\"guid\";s:40:\"http://weblogtoolscollection.com/?p=8781\";s:4:\"link\";s:88:\"http://weblogtoolscollection.com/archives/2010/10/07/wordpress-plugin-releases-for-1007/\";s:11:\"description\";s:2299:\"

    New plugins

    \n

    EZWebPlayer Video Plugin allows you to post your videos, report on views, track which videos have been posted and where, and has a simple toolbar plugin that allows you to add videos quickly.

    \n

    Hikari Featured Comments is a simple plugin that adds 3 new custom fields to comments, allowing you to add special properties to each of them.

    \n

    Post Gallery Widget is a rotating gallery widget using a custom post type for gallery content.

    \n

    swfObject Reloaded allows easy embedding of swf files and better media management for swf files, allowing swf files to have a height, width, and their own minimum flash version.

    \n

    Updated plugins

    \n

    Disqus Comment System replaces your WordPress comment system with your comments hosted and powered by Disqus.

    \n

    eShop is an accessible shopping cart plugin.

    \n

    Membership allows you to transform your WordPress site into a fully functional membership site. (Disclaimer: Incsub is a sponsor of Weblog Tools Collection.)

    \n

    Register Plus Redux enhances the user registration process with complete customization and additional administration options.

    \n

    Ultimate Taxonomy Manager is an easy to use taxonomy manager to customize taxonomies and custom fields with a great user interface.

    \nTweet\";s:7:\"pubdate\";s:31:\"Thu, 07 Oct 2010 13:00:22 +0000\";s:2:\"dc\";a:1:{s:7:\"creator\";s:10:\"James Huff\";}s:7:\"summary\";s:2299:\"

    New plugins

    \n

    EZWebPlayer Video Plugin allows you to post your videos, report on views, track which videos have been posted and where, and has a simple toolbar plugin that allows you to add videos quickly.

    \n

    Hikari Featured Comments is a simple plugin that adds 3 new custom fields to comments, allowing you to add special properties to each of them.

    \n

    Post Gallery Widget is a rotating gallery widget using a custom post type for gallery content.

    \n

    swfObject Reloaded allows easy embedding of swf files and better media management for swf files, allowing swf files to have a height, width, and their own minimum flash version.

    \n

    Updated plugins

    \n

    Disqus Comment System replaces your WordPress comment system with your comments hosted and powered by Disqus.

    \n

    eShop is an accessible shopping cart plugin.

    \n

    Membership allows you to transform your WordPress site into a fully functional membership site. (Disclaimer: Incsub is a sponsor of Weblog Tools Collection.)

    \n

    Register Plus Redux enhances the user registration process with complete customization and additional administration options.

    \n

    Ultimate Taxonomy Manager is an easy to use taxonomy manager to customize taxonomies and custom fields with a great user interface.

    \nTweet\";}i:5;a:7:{s:5:\"title\";s:46:\"Gravatar: Gravatar Hovercards on WordPress.com\";s:4:\"guid\";s:31:\"http://blog.gravatar.com/?p=261\";s:4:\"link\";s:73:\"http://blog.gravatar.com/2010/10/06/gravatar-hovercards-on-wordpress-com/\";s:11:\"description\";s:3590:\"
    \n

    You thought Gravatar Profiles were cool? Wait until you see them on all WordPress.com blogs.

    \n

    Today we’re upping your Gravatar Profile to a new level of awesomeness with Gravatar Hovercards. It’s now easy to find out about who is behind your favorite comments on WordPress.com simply by moving your mouse over their Gravatar.  This new feature is enabled by default across WordPress.com.

    \n

    What’s a Hovercard?

    \n

    Gravatar Hovercards show information about a person: name, bio, pictures, and their contact info at other services they use on the web like Twitter, Facebook or LinkedIn.

    \n

    \"\"

    \n

    As a commenter, Hovercards offer a great way to show your Internet presence and help people find your own blog. If you’re a blogger on WordPress.com, you can quickly check out who’s commenting on your blog, and have an easier time connecting with them.

    \n

    How to use and see Hovercards

    \n

    You can see other people’s Hovercards by moving your mouse over their Gravatar picture in comments on any WordPress.com blog, and after a moment the Hovercard will appear. The information shown is taken directly from the person’s Gravatar profile. The more info in the profile, the more we show in the Hovercard.

    \n

    If you haven’t set up your Gravatar Profile yet, just log in to Gravatar.com and fill out your details under Edit My Profile. If you don’t have an account yet, you can sign up here.

    \n

    Check back soon for details on how to add hovercards to your own website, or any site currently using Gravatars.

    \n
    \n
    \"\" \"\" \"\" \"\" \"\" \"\" \"\" \"\"\";s:7:\"pubdate\";s:31:\"Wed, 06 Oct 2010 22:19:37 +0000\";s:2:\"dc\";a:1:{s:7:\"creator\";s:11:\"Beau Lebens\";}s:7:\"summary\";s:3590:\"
    \n

    You thought Gravatar Profiles were cool? Wait until you see them on all WordPress.com blogs.

    \n

    Today we’re upping your Gravatar Profile to a new level of awesomeness with Gravatar Hovercards. It’s now easy to find out about who is behind your favorite comments on WordPress.com simply by moving your mouse over their Gravatar.  This new feature is enabled by default across WordPress.com.

    \n

    What’s a Hovercard?

    \n

    Gravatar Hovercards show information about a person: name, bio, pictures, and their contact info at other services they use on the web like Twitter, Facebook or LinkedIn.

    \n

    \"\"

    \n

    As a commenter, Hovercards offer a great way to show your Internet presence and help people find your own blog. If you’re a blogger on WordPress.com, you can quickly check out who’s commenting on your blog, and have an easier time connecting with them.

    \n

    How to use and see Hovercards

    \n

    You can see other people’s Hovercards by moving your mouse over their Gravatar picture in comments on any WordPress.com blog, and after a moment the Hovercard will appear. The information shown is taken directly from the person’s Gravatar profile. The more info in the profile, the more we show in the Hovercard.

    \n

    If you haven’t set up your Gravatar Profile yet, just log in to Gravatar.com and fill out your details under Edit My Profile. If you don’t have an account yet, you can sign up here.

    \n

    Check back soon for details on how to add hovercards to your own website, or any site currently using Gravatars.

    \n
    \n
    \"\" \"\" \"\" \"\" \"\" \"\" \"\" \"\"\";}i:6;a:7:{s:5:\"title\";s:13:\"Matt: Hipmunk\";s:4:\"guid\";s:21:\"http://ma.tt/?p=35776\";s:4:\"link\";s:29:\"http://ma.tt/2010/10/hipmunk/\";s:11:\"description\";s:471:\"

    Hipmunk is a flight search tool with a twist, and even if you don’t travel as much as I do you should give it a try next time you’re taking a trip somewhere. (It’s hard to describe, but easy to use.) As announced elsewhere, I’m happy to be part of a group of people supporting the team as an investor.

    \";s:7:\"pubdate\";s:31:\"Wed, 06 Oct 2010 20:59:56 +0000\";s:2:\"dc\";a:1:{s:7:\"creator\";s:4:\"Matt\";}s:7:\"summary\";s:471:\"

    Hipmunk is a flight search tool with a twist, and even if you don’t travel as much as I do you should give it a try next time you’re taking a trip somewhere. (It’s hard to describe, but easy to use.) As announced elsewhere, I’m happy to be part of a group of people supporting the team as an investor.

    \";}i:7;a:7:{s:5:\"title\";s:67:\"Weblog Tools Collection: WordPress.com Makes it Easy to say Goodbye\";s:4:\"guid\";s:40:\"http://weblogtoolscollection.com/?p=8777\";s:4:\"link\";s:96:\"http://weblogtoolscollection.com/archives/2010/10/06/wordpress-com-makes-it-easy-to-say-goodbye/\";s:11:\"description\";s:1694:\"

    The WordPress.com team has now made it even easier to leave your WordPress.com blog for a self-hosted WordPress blog.

    \n

    The new offsite redirect upgrade allows you to easily redirect your blogname.wordpress.com blog and all of its permalinks to your new domain.

    \n

    The previous redirection method was a five-step process that had a tendency to cause some confusion during implementation. Now, all you need to do is export your blog, purchase the offsite redirect upgrade for $12/year (the same price as the previous redirection method), and enter your new domain name.

    \n

    Matt Mullenweg, Automattic’s one and only Chief BBQ Taste Tester, highlighted the importance of the new offsite redirection upgrade, stating “the easier you make it for people to go, the more likely they are to stay.” The psychology certainly makes sense to me. I’d be less tempted to make a panic-influenced exit if I knew it was easy to leave at any time.

    \n

    Are you more comfortable staying with WordPress.com now that it’s even easier to leave?

    \nTweet\";s:7:\"pubdate\";s:31:\"Wed, 06 Oct 2010 13:00:52 +0000\";s:2:\"dc\";a:1:{s:7:\"creator\";s:10:\"James Huff\";}s:7:\"summary\";s:1694:\"

    The WordPress.com team has now made it even easier to leave your WordPress.com blog for a self-hosted WordPress blog.

    \n

    The new offsite redirect upgrade allows you to easily redirect your blogname.wordpress.com blog and all of its permalinks to your new domain.

    \n

    The previous redirection method was a five-step process that had a tendency to cause some confusion during implementation. Now, all you need to do is export your blog, purchase the offsite redirect upgrade for $12/year (the same price as the previous redirection method), and enter your new domain name.

    \n

    Matt Mullenweg, Automattic’s one and only Chief BBQ Taste Tester, highlighted the importance of the new offsite redirection upgrade, stating “the easier you make it for people to go, the more likely they are to stay.” The psychology certainly makes sense to me. I’d be less tempted to make a panic-influenced exit if I knew it was easy to leave at any time.

    \n

    Are you more comfortable staying with WordPress.com now that it’s even easier to leave?

    \nTweet\";}i:8;a:7:{s:5:\"title\";s:62:\"WordPress Podcast: Chief Executive Insight with Toni Schneider\";s:4:\"guid\";s:30:\"http://wp-community.org/?p=773\";s:4:\"link\";s:63:\"http://feedproxy.google.com/~r/wordpresspodcast/~3/3qEP3QKFB2U/\";s:11:\"description\";s:2162:\"
    \"Toni

    Toni Schneider

    Toni Schneider is the CEO of Automattic, the team behind WordPress.com, Akismet and many other WordPress related projects. Since leaving Switzerland for Silicon Valley, he has been working with and successfully exiting startups. Before leaving Yahoo! to join Automattic, Tony was a WordPress user and part of the community. On today’s show we touch on:

    Plugin Picks of the Week:

    \";s:7:\"pubdate\";s:31:\"Wed, 06 Oct 2010 06:52:20 +0000\";s:2:\"dc\";a:1:{s:7:\"creator\";s:54:\"joost@pressthis.com (Joost de Valk & Frederick Townes)\";}s:7:\"summary\";s:2162:\"
    \"Toni

    Toni Schneider

    Toni Schneider is the CEO of Automattic, the team behind WordPress.com, Akismet and many other WordPress related projects. Since leaving Switzerland for Silicon Valley, he has been working with and successfully exiting startups. Before leaving Yahoo! to join Automattic, Tony was a WordPress user and part of the community. On today’s show we touch on:

    Plugin Picks of the Week:

    \";}i:9;a:7:{s:5:\"title\";s:59:\"Weblog Tools Collection: WordPress Theme Releases for 10/05\";s:4:\"guid\";s:40:\"http://weblogtoolscollection.com/?p=8770\";s:4:\"link\";s:89:\"http://weblogtoolscollection.com/archives/2010/10/05/wordpress-theme-releases-for-1005-3/\";s:11:\"description\";s:1874:\"

    \"classroom\"

    \n

    ClassRoom Blog is a free WordPress theme for Teachers and Educators to use for a class blog.

    \n

    \"speed\"

    \n

    Speed is a magazine style theme for a BuddyPress community powered site, based on a three column fluid layout enabled with custom fonts with a beautiful jQuery powered full width slider.

    \n

    \"toolbox\"

    \n

    Toolbox is an ultra-minimal set of super-clean, HTML5, starter templates for your own WordPress theme development.

    \n

    \"zbench\"

    \n

    zBench is a simple WordPress theme with few images, support for various plugins, custom menus, widgets, and threaded comments.

    \nTweet\";s:7:\"pubdate\";s:31:\"Tue, 05 Oct 2010 13:00:45 +0000\";s:2:\"dc\";a:1:{s:7:\"creator\";s:10:\"James Huff\";}s:7:\"summary\";s:1874:\"

    \"classroom\"

    \n

    ClassRoom Blog is a free WordPress theme for Teachers and Educators to use for a class blog.

    \n

    \"speed\"

    \n

    Speed is a magazine style theme for a BuddyPress community powered site, based on a three column fluid layout enabled with custom fonts with a beautiful jQuery powered full width slider.

    \n

    \"toolbox\"

    \n

    Toolbox is an ultra-minimal set of super-clean, HTML5, starter templates for your own WordPress theme development.

    \n

    \"zbench\"

    \n

    zBench is a simple WordPress theme with few images, support for various plugins, custom menus, widgets, and threaded comments.

    \nTweet\";}i:10;a:7:{s:5:\"title\";s:36:\"Matt: Adam Savage On Problem Solving\";s:4:\"guid\";s:21:\"http://ma.tt/?p=35774\";s:4:\"link\";s:52:\"http://ma.tt/2010/10/adam-savage-on-problem-solving/\";s:11:\"description\";s:274:\"

    Adam Savage of Mythbusters talks about how he solves problems, with an entertaining Q&A afterward. Hat tip: Paul Kedrosky.

    \";s:7:\"pubdate\";s:31:\"Tue, 05 Oct 2010 06:09:41 +0000\";s:2:\"dc\";a:1:{s:7:\"creator\";s:4:\"Matt\";}s:7:\"summary\";s:274:\"

    Adam Savage of Mythbusters talks about how he solves problems, with an entertaining Q&A afterward. Hat tip: Paul Kedrosky.

    \";}i:11;a:7:{s:5:\"title\";s:25:\"Matt: Greatest Golf Photo\";s:4:\"guid\";s:21:\"http://ma.tt/?p=35770\";s:4:\"link\";s:41:\"http://ma.tt/2010/10/greatest-golf-photo/\";s:11:\"description\";s:753:\"

    Saw this on Yahoo: Tiger Woods gives us the greatest golf photo you’ll ever see. Basically he mis-shot (which almost never happens) straight into a camera man who was taking a picture right that instant. Here are larger versions. I love how everyone is looking at the camera, Inception-like, and the guy with the cigar. “For camera buffs, Pain was using a Nikon D3S camera, with a 24-70 mm lens and a shutter speed of 1/1000 of a second.”

    \";s:7:\"pubdate\";s:31:\"Tue, 05 Oct 2010 03:50:06 +0000\";s:2:\"dc\";a:1:{s:7:\"creator\";s:4:\"Matt\";}s:7:\"summary\";s:753:\"

    Saw this on Yahoo: Tiger Woods gives us the greatest golf photo you’ll ever see. Basically he mis-shot (which almost never happens) straight into a camera man who was taking a picture right that instant. Here are larger versions. I love how everyone is looking at the camera, Inception-like, and the guy with the cigar. “For camera buffs, Pain was using a Nikon D3S camera, with a 24-70 mm lens and a shutter speed of 1/1000 of a second.”

    \";}i:12;a:7:{s:5:\"title\";s:42:\"Alex King: Carrington Business Demo Access\";s:4:\"guid\";s:27:\"http://alexking.org/?p=4712\";s:4:\"link\";s:67:\"http://alexking.org/blog/2010/10/04/carrington-business-demo-access\";s:11:\"description\";s:655:\"

    We’ve updated the Carrington Business theme demo so that you can access the menus and theme settings in the admin interface along with the post and page creation/editing access that was already available. Some folks were requesting to see how the menus were integrated, etc. so we’ve made those items available.

    \n

    Check out the demo and experiment away. The demo data is reset every hour on the hour.

    \n\"\"\";s:7:\"pubdate\";s:31:\"Tue, 05 Oct 2010 02:52:49 +0000\";s:2:\"dc\";a:1:{s:7:\"creator\";s:4:\"Alex\";}s:7:\"summary\";s:655:\"

    We’ve updated the Carrington Business theme demo so that you can access the menus and theme settings in the admin interface along with the post and page creation/editing access that was already available. Some folks were requesting to see how the menus were integrated, etc. so we’ve made those items available.

    \n

    Check out the demo and experiment away. The demo data is reset every hour on the hour.

    \n\"\"\";}i:13;a:7:{s:5:\"title\";s:23:\"Matt: Offsite Redirects\";s:4:\"guid\";s:21:\"http://ma.tt/?p=35768\";s:4:\"link\";s:39:\"http://ma.tt/2010/10/offsite-redirects/\";s:11:\"description\";s:572:\"

    A new upgrade launched on WordPress.com today, Offsite Redirects. Basically this allows you to retain all of your links, SEO, and visitors when you move from WP.com to self-hosted (or any platform, for that matter). I point it out only because I think it’s central to Automattic’s philosophy, and something I learned from Dave Winer: the easier you make it for people to go, the more likely they are to stay.

    \";s:7:\"pubdate\";s:31:\"Tue, 05 Oct 2010 01:54:54 +0000\";s:2:\"dc\";a:1:{s:7:\"creator\";s:4:\"Matt\";}s:7:\"summary\";s:572:\"

    A new upgrade launched on WordPress.com today, Offsite Redirects. Basically this allows you to retain all of your links, SEO, and visitors when you move from WP.com to self-hosted (or any platform, for that matter). I point it out only because I think it’s central to Automattic’s philosophy, and something I learned from Dave Winer: the easier you make it for people to go, the more likely they are to stay.

    \";}i:14;a:7:{s:5:\"title\";s:44:\"Lloyd: WordPress does one thing very well…\";s:4:\"guid\";s:30:\"http://foolswisdom.com/?p=2769\";s:4:\"link\";s:45:\"http://foolswisdom.com/wordpress-awesome-cms/\";s:11:\"description\";s:1760:\"

    …allow everyone to easily publish on the Web!

    \n

    And to make that happen, WordPress must be an easy to develop and design web publishing environment.

    \n

    Stop! This is comparing apples and oranges. [WordPress] is a honed, refined blogging product that does one thing very well, whereas Drupal is a flexible, extensible CMS plus a huge set of tools for building websites, web applications, and integrating with other tools.
    \nBy “jam – Senior Wr….”, “The time is right for Drupal products

    \n

    It’s frustrating that competitors are still trying to pigeon-hole WordPress. The satisfying irony is that I expect WordPress’s use for non-blog sites is growing faster than the competitors.

    \n

    Sure, we have biases. We are biases towards familiarity, usability, and not stressing people — letting people be awesome!

    \n

    A leading example of what you can do with WordPress 3.0 CMS features is what CBS, with the help of VOCE Communications, have already created for nearing 200 CBS Radio and CBS Local properties. Sites like:

    \n\n

    There are countless other examples, but a few have been cataloged at wordpress.org/showcase/tag/cms/

    \";s:7:\"pubdate\";s:31:\"Mon, 04 Oct 2010 18:38:29 +0000\";s:2:\"dc\";a:1:{s:7:\"creator\";s:5:\"Lloyd\";}s:7:\"summary\";s:1760:\"

    …allow everyone to easily publish on the Web!

    \n

    And to make that happen, WordPress must be an easy to develop and design web publishing environment.

    \n

    Stop! This is comparing apples and oranges. [WordPress] is a honed, refined blogging product that does one thing very well, whereas Drupal is a flexible, extensible CMS plus a huge set of tools for building websites, web applications, and integrating with other tools.
    \nBy “jam – Senior Wr….”, “The time is right for Drupal products

    \n

    It’s frustrating that competitors are still trying to pigeon-hole WordPress. The satisfying irony is that I expect WordPress’s use for non-blog sites is growing faster than the competitors.

    \n

    Sure, we have biases. We are biases towards familiarity, usability, and not stressing people — letting people be awesome!

    \n

    A leading example of what you can do with WordPress 3.0 CMS features is what CBS, with the help of VOCE Communications, have already created for nearing 200 CBS Radio and CBS Local properties. Sites like:

    \n\n

    There are countless other examples, but a few have been cataloged at wordpress.org/showcase/tag/cms/

    \";}i:15;a:7:{s:5:\"title\";s:57:\"Weblog Tools Collection: The Top 10 of Your Top 5 Plugins\";s:4:\"guid\";s:40:\"http://weblogtoolscollection.com/?p=8766\";s:4:\"link\";s:86:\"http://weblogtoolscollection.com/archives/2010/10/04/the-top-10-of-your-top-5-plugins/\";s:11:\"description\";s:6142:\"

    A few days ago, Mark asked to hear about your “top 5 plugins that you WordPress geniuses use in every one of your WordPress installs.” With almost fifty responses, it’s great to see that so many people consider the same or similar plugins as their top five. Without further delay, here are the top ten of your top five plugins.

    \n
      \n
    1. Akismet: This plugin should be the front line of your blog’s anti-spam defenses. According to its directory listing, it’s been downloaded individually over 4,060,000 times, but it’s also bundled with WordPress. Just to give you an idea, the current version of WordPress has been downloaded over 15,800,000 times. Considering those numbers, it’s no wonder that this is the most popular WordPress plugin and the top of almost every commentator’s top five list. [directory listing]
    2. \n
    3. Google XML Sitemaps: This plugin was the first XML sitemap generator for WordPress. Though the concept of a dynamically generated XML sitemap took a while to catch on, the popularly of this plugin should be a clear sign of the protocol’s success. [directory listing]
    4. \n
    5. All In One SEO: As its name proclaims, this plugin takes almost everything you’d need for search engine optimization and wraps it into a nice package. If you’re concerned about SEO, this is as close to set-it-and-forget-it as these SEO plugins come. [directory listing]
    6. \n
    7. WP Super Cache: This plugin reduces server load and improves load time by serving html copies of every page without the need to run PHP or access the database. It’s the oldest surviving cache plugin for WordPress. By that I mean that it’s been around since 2007 and it’s still under active development. [directory listing]
    8. \n
    9. WP-DBManager: This all-in-one plugin allows you to backup, optimize, and repair your database, empty/drop tables, and run SQL queries. Perhaps one of the most interesting bits of trivia on this plugin is that it hasn’t been updated since June of 2009, it still works perfectly, and there’s no other plugin like it. [directory listing]
    10. \n
    11. Google Analytics for WordPress: This is so much more than your typical “enter your Analytics code here” plugin. It includes the ability to track outbound and download links, ignore visitors with specified user levels, track meta data via custom variables, and much more. [directory listing]
    12. \n
    13. Contact Form 7: This is one of the first WordPress contact form plugins, it allows you to manage multiple fully customizable contact forms with spam protection, and it continues to be updated at a very steady rate. [directory listing]
    14. \n
    15. W3 Total Cache: This is one of the newest caching plugins. Thanks to its promises of an easy setup and compatibility with most hosting environments, its user base is growing rapidly. [directory listing]
    16. \n
    17. Subscribe2: This is the oldest email subscription plugin for WordPress. The plugin was first released in 2005, and although it may have changed hands a few times, it’s still under active development. [directory listing]
    18. \n
    19. WordPress.com Stats: This is the official plugin for the one and only hosted stats solution from Automattic. The adoption rate has been a bit slower than expected due to some interface and usability problems, but with a new user interface on the horizon, things are bound to improve. [directory listing]
    20. \n
    \n

    I’m sure that most of you weren’t surprised by your top ten, but I bet that some of you were, and at least a few of you discovered a great plugin that you may be installing today. If you find yourself relying regularly on a free plugin, find the developer’s donation page and at least buy them a drink.

    \n

    I’ll have to join with the popular vote here and say that Akismet is definitely my favorite plugin. You have no idea how much of a comment spam nightmare this blog would be without Akismet.

    \n

    What’s your favorite plugin, and why can’t your blog live without it?

    \nTweet\";s:7:\"pubdate\";s:31:\"Mon, 04 Oct 2010 13:00:35 +0000\";s:2:\"dc\";a:1:{s:7:\"creator\";s:10:\"James Huff\";}s:7:\"summary\";s:6142:\"

    A few days ago, Mark asked to hear about your “top 5 plugins that you WordPress geniuses use in every one of your WordPress installs.” With almost fifty responses, it’s great to see that so many people consider the same or similar plugins as their top five. Without further delay, here are the top ten of your top five plugins.

    \n
      \n
    1. Akismet: This plugin should be the front line of your blog’s anti-spam defenses. According to its directory listing, it’s been downloaded individually over 4,060,000 times, but it’s also bundled with WordPress. Just to give you an idea, the current version of WordPress has been downloaded over 15,800,000 times. Considering those numbers, it’s no wonder that this is the most popular WordPress plugin and the top of almost every commentator’s top five list. [directory listing]
    2. \n
    3. Google XML Sitemaps: This plugin was the first XML sitemap generator for WordPress. Though the concept of a dynamically generated XML sitemap took a while to catch on, the popularly of this plugin should be a clear sign of the protocol’s success. [directory listing]
    4. \n
    5. All In One SEO: As its name proclaims, this plugin takes almost everything you’d need for search engine optimization and wraps it into a nice package. If you’re concerned about SEO, this is as close to set-it-and-forget-it as these SEO plugins come. [directory listing]
    6. \n
    7. WP Super Cache: This plugin reduces server load and improves load time by serving html copies of every page without the need to run PHP or access the database. It’s the oldest surviving cache plugin for WordPress. By that I mean that it’s been around since 2007 and it’s still under active development. [directory listing]
    8. \n
    9. WP-DBManager: This all-in-one plugin allows you to backup, optimize, and repair your database, empty/drop tables, and run SQL queries. Perhaps one of the most interesting bits of trivia on this plugin is that it hasn’t been updated since June of 2009, it still works perfectly, and there’s no other plugin like it. [directory listing]
    10. \n
    11. Google Analytics for WordPress: This is so much more than your typical “enter your Analytics code here” plugin. It includes the ability to track outbound and download links, ignore visitors with specified user levels, track meta data via custom variables, and much more. [directory listing]
    12. \n
    13. Contact Form 7: This is one of the first WordPress contact form plugins, it allows you to manage multiple fully customizable contact forms with spam protection, and it continues to be updated at a very steady rate. [directory listing]
    14. \n
    15. W3 Total Cache: This is one of the newest caching plugins. Thanks to its promises of an easy setup and compatibility with most hosting environments, its user base is growing rapidly. [directory listing]
    16. \n
    17. Subscribe2: This is the oldest email subscription plugin for WordPress. The plugin was first released in 2005, and although it may have changed hands a few times, it’s still under active development. [directory listing]
    18. \n
    19. WordPress.com Stats: This is the official plugin for the one and only hosted stats solution from Automattic. The adoption rate has been a bit slower than expected due to some interface and usability problems, but with a new user interface on the horizon, things are bound to improve. [directory listing]
    20. \n
    \n

    I’m sure that most of you weren’t surprised by your top ten, but I bet that some of you were, and at least a few of you discovered a great plugin that you may be installing today. If you find yourself relying regularly on a free plugin, find the developer’s donation page and at least buy them a drink.

    \n

    I’ll have to join with the popular vote here and say that Akismet is definitely my favorite plugin. You have no idea how much of a comment spam nightmare this blog would be without Akismet.

    \n

    What’s your favorite plugin, and why can’t your blog live without it?

    \nTweet\";}i:16;a:7:{s:5:\"title\";s:60:\"Weblog Tools Collection: WordPress Plugin Releases for 10/03\";s:4:\"guid\";s:40:\"http://weblogtoolscollection.com/?p=8764\";s:4:\"link\";s:88:\"http://weblogtoolscollection.com/archives/2010/10/03/wordpress-plugin-releases-for-1003/\";s:11:\"description\";s:2578:\"

    New plugins

    \n

    Admin Menu Tree Page View allows you to get a tree view of all your pages directly in the admin menu.

    \n

    Blue Screen of the Dead is a replacement for your WordPress 404 error page.

    \n

    Facebook Members is a WordPress social plugin that enables Facebook page owners to attract and gain Likes from their own website.

    \n

    Ultimate Taxonomy Manager is an easy to use taxonomy manager to customize taxonomies and custom fields with a great user interface.

    \n

    WP Pic Tagger allows you to tag people and objects in your images by selecting a region of the image and adding names, URLs and descriptions.

    \n

    Updated plugins

    \n

    AddToAny: Share/Bookmark/Email Button helps people share, bookmark, and email your posts and pages using any service, such as Facebook, Twitter, Google Buzz, Digg, Delicious, and well over 100 more social bookmarking and sharing sites.

    \n

    Facebook Like for Tags allows you to connect with your audience for ongoing updates and sharing based on user interest.

    \n

    Simple Twitter Connect is a series of plugins that let you add any sort of Twitter functionality you like to a WordPress blog.

    \n

    VideoPress allows you to add VideoPress videos stored on WordPress.com to your self-hosted WordPress.org site through the use of simple shortcodes.

    \n

    WP-Stats-Dashboard allows you to display your blog’s stats graph plus your blog traffic, social engagement and social influence directly in your dashboard.

    \nTweet\";s:7:\"pubdate\";s:31:\"Sun, 03 Oct 2010 13:00:31 +0000\";s:2:\"dc\";a:1:{s:7:\"creator\";s:10:\"James Huff\";}s:7:\"summary\";s:2578:\"

    New plugins

    \n

    Admin Menu Tree Page View allows you to get a tree view of all your pages directly in the admin menu.

    \n

    Blue Screen of the Dead is a replacement for your WordPress 404 error page.

    \n

    Facebook Members is a WordPress social plugin that enables Facebook page owners to attract and gain Likes from their own website.

    \n

    Ultimate Taxonomy Manager is an easy to use taxonomy manager to customize taxonomies and custom fields with a great user interface.

    \n

    WP Pic Tagger allows you to tag people and objects in your images by selecting a region of the image and adding names, URLs and descriptions.

    \n

    Updated plugins

    \n

    AddToAny: Share/Bookmark/Email Button helps people share, bookmark, and email your posts and pages using any service, such as Facebook, Twitter, Google Buzz, Digg, Delicious, and well over 100 more social bookmarking and sharing sites.

    \n

    Facebook Like for Tags allows you to connect with your audience for ongoing updates and sharing based on user interest.

    \n

    Simple Twitter Connect is a series of plugins that let you add any sort of Twitter functionality you like to a WordPress blog.

    \n

    VideoPress allows you to add VideoPress videos stored on WordPress.com to your self-hosted WordPress.org site through the use of simple shortcodes.

    \n

    WP-Stats-Dashboard allows you to display your blog’s stats graph plus your blog traffic, social engagement and social influence directly in your dashboard.

    \nTweet\";}i:17;a:7:{s:5:\"title\";s:58:\"Weblog Tools Collection: Blog Action Day 2010 Topic: Water\";s:4:\"guid\";s:40:\"http://weblogtoolscollection.com/?p=8762\";s:4:\"link\";s:86:\"http://weblogtoolscollection.com/archives/2010/10/02/blog-action-day-2010-topic-water/\";s:11:\"description\";s:952:\"

    Voting has concluded for this year’s Blog Action Day topic, and the winner is water!

    \n

    Register your blog now and join the thousands (if not millions) of bloggers worldwide who will be posting about the world’s water problems on October 15th. If you need some inspiration for your post, the Blog Action Day crew has provided a few suggestions.

    \n

    Last year, over 31,000 posts were published across the globe on the topic of climate change. Will you be participating in this year’s Blog Action Day?

    \nTweet\";s:7:\"pubdate\";s:31:\"Sat, 02 Oct 2010 13:00:32 +0000\";s:2:\"dc\";a:1:{s:7:\"creator\";s:10:\"James Huff\";}s:7:\"summary\";s:952:\"

    Voting has concluded for this year’s Blog Action Day topic, and the winner is water!

    \n

    Register your blog now and join the thousands (if not millions) of bloggers worldwide who will be posting about the world’s water problems on October 15th. If you need some inspiration for your post, the Blog Action Day crew has provided a few suggestions.

    \n

    Last year, over 31,000 posts were published across the globe on the topic of climate change. Will you be participating in this year’s Blog Action Day?

    \nTweet\";}i:18;a:7:{s:5:\"title\";s:29:\"WP iPhone: Version 2.6 Issues\";s:4:\"guid\";s:31:\"http://ios.wordpress.org/?p=817\";s:4:\"link\";s:55:\"http://ios.wordpress.org/2010/10/02/version-2-6-issues/\";s:11:\"description\";s:3781:\"

    Version 2.6 was an ambitious update from the start. We wanted to resolve several outstanding issues and add features that you’ve been requesting for quite some time. From WordPress 3.0 Network compatibility to better handling of local drafts, there were several fixes and improvements we wanted to include in the 2.6 update. We also wanted to add video, make it easier to add blogs and sites, and improve the core structure and stability of the app.

    \n

    From what we’re hearing, we managed to accomplish some of those items. Many of you have been ecstatic about the way you can now quickly add multiple sites and blogs, and everyone seems thrilled about the new autosave feature. We’ve received many reports of improved speed and ease of use, so we’re happy to hear that many of you are happy with the update.

    \n

    However, since WordPress is such an amazing and extensive platform, we weren’t able to fix everything, and in some cases we created new bugs that made things worse. We’re not perfect, and while we did test this new version heavily, it obviously needed further testing, especially for self-hosted sites.

    \n

    Right now there are five major issues that users have reported:

    \n
      \n
    1. Upgrading from an existing older version creates the “Bad username/password” error and dialogs. Deleting and reinstalling the app resolves this issue for most users.
    2. \n
    3. Even after a clean install, some users are reporting crashes at the start screen and are unable to use the app.
    4. \n
    5. NSXMLParserErrorDomain 5 error appears when trying to view posts on some blogs. Comments and pages work fine when this issue is present.
    6. \n
    7. Video – crash after compression finishes but before the upload begins when adding a video from your library.
    8. \n
    9. Video – crash during upload for many WordPress.org users.
    10. \n
    \n

    Rest assured we are working to quickly resolve these items and get a new version back to you in the App Store as soon as possible. Thank you for your patience, and we apologize for the inconvenience that this update has caused for some of you. We will let you know as soon as the new version is ready.

    \n
    \"\" \"\" \"\" \"\" \"\" \"\" \"\" \"\"\";s:7:\"pubdate\";s:31:\"Sat, 02 Oct 2010 10:56:42 +0000\";s:2:\"dc\";a:1:{s:7:\"creator\";s:10:\"Chris Boyd\";}s:7:\"summary\";s:3781:\"

    Version 2.6 was an ambitious update from the start. We wanted to resolve several outstanding issues and add features that you’ve been requesting for quite some time. From WordPress 3.0 Network compatibility to better handling of local drafts, there were several fixes and improvements we wanted to include in the 2.6 update. We also wanted to add video, make it easier to add blogs and sites, and improve the core structure and stability of the app.

    \n

    From what we’re hearing, we managed to accomplish some of those items. Many of you have been ecstatic about the way you can now quickly add multiple sites and blogs, and everyone seems thrilled about the new autosave feature. We’ve received many reports of improved speed and ease of use, so we’re happy to hear that many of you are happy with the update.

    \n

    However, since WordPress is such an amazing and extensive platform, we weren’t able to fix everything, and in some cases we created new bugs that made things worse. We’re not perfect, and while we did test this new version heavily, it obviously needed further testing, especially for self-hosted sites.

    \n

    Right now there are five major issues that users have reported:

    \n
      \n
    1. Upgrading from an existing older version creates the “Bad username/password” error and dialogs. Deleting and reinstalling the app resolves this issue for most users.
    2. \n
    3. Even after a clean install, some users are reporting crashes at the start screen and are unable to use the app.
    4. \n
    5. NSXMLParserErrorDomain 5 error appears when trying to view posts on some blogs. Comments and pages work fine when this issue is present.
    6. \n
    7. Video – crash after compression finishes but before the upload begins when adding a video from your library.
    8. \n
    9. Video – crash during upload for many WordPress.org users.
    10. \n
    \n

    Rest assured we are working to quickly resolve these items and get a new version back to you in the App Store as soon as possible. Thank you for your patience, and we apologize for the inconvenience that this update has caused for some of you. We will let you know as soon as the new version is ready.

    \n
    \"\" \"\" \"\" \"\" \"\" \"\" \"\" \"\"\";}i:19;a:7:{s:5:\"title\";s:85:\"Publisher Blog: Cheezburger Network Open Sources Their WordPress Administration Panel\";s:4:\"guid\";s:43:\"http://publisherblog.automattic.com/?p=1039\";s:4:\"link\";s:79:\"http://publisherblog.automattic.com/2010/10/01/cheezcap-custom-wp-admin-panels/\";s:11:\"description\";s:3564:\"

    WordPress.com VIP Cheezburger Network, where you get your daily LOLz from one of their 50 popular sites like I Can Haz Cheezburger? and FAIL Blog, have shared the code of their WordPress theme administration panels.

    \n

    Called CheezCap, it’s a simple library for easily creating custom admin panels.

    \n

    \"Screenshot

    \n

    Cheezburger Network uses a single shared theme across all their sites. In order to avoid having to create conditionals and other per-blog modifications in their theme, they developed CheezCap. Any of the administrators can update the options controlling the layout, design, colors, etc, without having to dig into the theme code.

    \n

    When asked what motivates his engineering team to participate in the WordPress community, CTO Scott Porad replied:

    \n

    I can say without hesitation that WordPress has had a hand in the success of Cheezburger. So, to the extent that we can help other people be successful with WordPress, we’re on board!

    \n

    What I meant to say is… All aboard the WordPress Express! Choo Choo!

    \n
    \"\" \"\" \"\" \"\" \"\" \"\" \"\" \"\"\";s:7:\"pubdate\";s:31:\"Sat, 02 Oct 2010 00:23:38 +0000\";s:2:\"dc\";a:1:{s:7:\"creator\";s:7:\"Alex M.\";}s:7:\"summary\";s:3564:\"

    WordPress.com VIP Cheezburger Network, where you get your daily LOLz from one of their 50 popular sites like I Can Haz Cheezburger? and FAIL Blog, have shared the code of their WordPress theme administration panels.

    \n

    Called CheezCap, it’s a simple library for easily creating custom admin panels.

    \n

    \"Screenshot

    \n

    Cheezburger Network uses a single shared theme across all their sites. In order to avoid having to create conditionals and other per-blog modifications in their theme, they developed CheezCap. Any of the administrators can update the options controlling the layout, design, colors, etc, without having to dig into the theme code.

    \n

    When asked what motivates his engineering team to participate in the WordPress community, CTO Scott Porad replied:

    \n

    I can say without hesitation that WordPress has had a hand in the success of Cheezburger. So, to the extent that we can help other people be successful with WordPress, we’re on board!

    \n

    What I meant to say is… All aboard the WordPress Express! Choo Choo!

    \n
    \"\" \"\" \"\" \"\" \"\" \"\" \"\" \"\"\";}i:20;a:7:{s:5:\"title\";s:59:\"Weblog Tools Collection: WordPress Theme Releases for 10/01\";s:4:\"guid\";s:40:\"http://weblogtoolscollection.com/?p=8755\";s:4:\"link\";s:87:\"http://weblogtoolscollection.com/archives/2010/10/01/wordpress-theme-releases-for-1001/\";s:11:\"description\";s:1754:\"

    \"breakingnewz\"

    \n

    BreakingNewz is a powerful news/magazine style WordPress theme.

    \n

    \"locket\"

    \n

    Locket is a simple 2-column WordPress template with a paper-like background

    \n

    \"portfolium\"

    \n

    Portfolium is a clean and flexible WordPress grid-based portfolio theme designed in a modern and minimalist style.

    \n

    \"purple

    \n

    Purple Shadow is a clean, light, and mostly white WordPress theme.

    \nTweet\";s:7:\"pubdate\";s:31:\"Fri, 01 Oct 2010 13:00:05 +0000\";s:2:\"dc\";a:1:{s:7:\"creator\";s:10:\"James Huff\";}s:7:\"summary\";s:1754:\"

    \"breakingnewz\"

    \n

    BreakingNewz is a powerful news/magazine style WordPress theme.

    \n

    \"locket\"

    \n

    Locket is a simple 2-column WordPress template with a paper-like background

    \n

    \"portfolium\"

    \n

    Portfolium is a clean and flexible WordPress grid-based portfolio theme designed in a modern and minimalist style.

    \n

    \"purple

    \n

    Purple Shadow is a clean, light, and mostly white WordPress theme.

    \nTweet\";}i:21;a:7:{s:5:\"title\";s:16:\"Matt: Email Load\";s:4:\"guid\";s:21:\"http://ma.tt/?p=35765\";s:4:\"link\";s:32:\"http://ma.tt/2010/09/email-load/\";s:11:\"description\";s:245:\"

    I added a new feature to the contact page that shows you how high (or low) my email queues are, which update once a minute. If the levels are lower, it probably means I’ll get back to your sooner.

    \";s:7:\"pubdate\";s:31:\"Fri, 01 Oct 2010 07:21:21 +0000\";s:2:\"dc\";a:1:{s:7:\"creator\";s:4:\"Matt\";}s:7:\"summary\";s:245:\"

    I added a new feature to the contact page that shows you how high (or low) my email queues are, which update once a minute. If the levels are lower, it probably means I’ll get back to your sooner.

    \";}i:22;a:7:{s:5:\"title\";s:52:\"Weblog Tools Collection: WordPress.com Stats Updated\";s:4:\"guid\";s:40:\"http://weblogtoolscollection.com/?p=8751\";s:4:\"link\";s:81:\"http://weblogtoolscollection.com/archives/2010/09/30/wordpress-com-stats-updated/\";s:11:\"description\";s:1451:\"

    If you’re a WordPress.com user, you may have noticed that your stats received a significant facelift today. The Flash-powered line chart has been replaced by an interactive Javascript-powered bar chart and the module layout is now fully customizable.

    \n

    The new design was a team effort, though some credit should definitely go to Nick Momrik for handling the new chart and a good majority of the extra work, Joen Asmussen for the overall design, and Matt Thomas for keeping everyone on track.

    \n

    Currently, the new stats interface is only for WordPress.com users, but the WordPress.com Stats Plugin for self-installed WordPress blogs will be updated once they have all the kinks worked out.

    \n

    Unfortunately, my WordPress.com blog is private, so I really don’t have enough stats to truly test the new interface. What do you think of the new WordPress.com Stats interface?

    \nTweet\";s:7:\"pubdate\";s:31:\"Thu, 30 Sep 2010 20:18:26 +0000\";s:2:\"dc\";a:1:{s:7:\"creator\";s:10:\"James Huff\";}s:7:\"summary\";s:1451:\"

    If you’re a WordPress.com user, you may have noticed that your stats received a significant facelift today. The Flash-powered line chart has been replaced by an interactive Javascript-powered bar chart and the module layout is now fully customizable.

    \n

    The new design was a team effort, though some credit should definitely go to Nick Momrik for handling the new chart and a good majority of the extra work, Joen Asmussen for the overall design, and Matt Thomas for keeping everyone on track.

    \n

    Currently, the new stats interface is only for WordPress.com users, but the WordPress.com Stats Plugin for self-installed WordPress blogs will be updated once they have all the kinks worked out.

    \n

    Unfortunately, my WordPress.com blog is private, so I really don’t have enough stats to truly test the new interface. What do you think of the new WordPress.com Stats interface?

    \nTweet\";}i:23;a:7:{s:5:\"title\";s:61:\"Weblog Tools Collection: WordPress for iOS Mobile App Updated\";s:4:\"guid\";s:40:\"http://weblogtoolscollection.com/?p=8747\";s:4:\"link\";s:90:\"http://weblogtoolscollection.com/archives/2010/09/30/wordpress-for-ios-mobile-app-updated/\";s:11:\"description\";s:1941:\"

    The WordPress for iOS mobile app has received a significant update with a slew of bug fixes and the following new features:

    \n
      \n
    • Video: “record video within the app and then upload it directly to a blog.”
    • \n
    • Local Drafts: “save posts locally before they’re published or saved online.”
    • \n
    • Autosaves: “If something happens and you need to revert to an older version of a post, you can just select a previous version and restore it without issue.”
    • \n
    • Setup Process: “allowing WordPress.com users a quick way to add their blogs, and giving WordPress.org users a faster, more streamlined experience when adding their sites.”
    • \n
    • Media Library: “a new Media Library more along the lines of what you’re used to with WordPress.”
    • \n
    \n

    This release would not have been possible without your feedback and beta testing skills, so keep doing whatever you can to make each release better than the last!

    \n

    Despite all the bug fixes, I had to re-enter the password for every blog that I manage with the app. It was a minor inconvenience, but it still beats using the admin panel in Mobile Safari.

    \n

    Do you use the WordPress for iOS mobile app? What do you think of the new features?

    \nTweet\";s:7:\"pubdate\";s:31:\"Thu, 30 Sep 2010 13:00:02 +0000\";s:2:\"dc\";a:1:{s:7:\"creator\";s:10:\"James Huff\";}s:7:\"summary\";s:1941:\"

    The WordPress for iOS mobile app has received a significant update with a slew of bug fixes and the following new features:

    \n
      \n
    • Video: “record video within the app and then upload it directly to a blog.”
    • \n
    • Local Drafts: “save posts locally before they’re published or saved online.”
    • \n
    • Autosaves: “If something happens and you need to revert to an older version of a post, you can just select a previous version and restore it without issue.”
    • \n
    • Setup Process: “allowing WordPress.com users a quick way to add their blogs, and giving WordPress.org users a faster, more streamlined experience when adding their sites.”
    • \n
    • Media Library: “a new Media Library more along the lines of what you’re used to with WordPress.”
    • \n
    \n

    This release would not have been possible without your feedback and beta testing skills, so keep doing whatever you can to make each release better than the last!

    \n

    Despite all the bug fixes, I had to re-enter the password for every blog that I manage with the app. It was a minor inconvenience, but it still beats using the admin panel in Mobile Safari.

    \n

    Do you use the WordPress for iOS mobile app? What do you think of the new features?

    \nTweet\";}i:24;a:7:{s:5:\"title\";s:49:\"Dev Blog: WordPress for iPhone/iPad v2.6 Released\";s:4:\"guid\";s:33:\"http://wordpress.org/news/?p=1497\";s:4:\"link\";s:43:\"http://wordpress.org/news/2010/09/ios-v2-6/\";s:11:\"description\";s:2291:\"

    Attention Apple-gadget-owning WordPress users! Have you been using the WordPress iOS app for iPhone and iPad? Or maybe you tried it a while back and thought it wasn’t for you? Either way, the new release — v2.6 — will knock your socks off. Why? A bunch of reasons:

    \n
      \n
    • Video. Record, upload, attach, and play videos within the app. Yay for being able to catch your friends’ and co-workers’ most embarrassing shenanigans creative moments with iPhone video and publish them immediately for all the world to see on your WordPress site.
    • \n
    • A total rewrite of the way local drafts are handled, to prevent the unintentional loss of your pending posts.
    • \n
    • Autosave/post revisions. Bam! One of the “oh, thank goodness” features of the web app makes it into the iOS version.
    • \n
    • Easier setup. Faster and easier process for adding your sites to the app.
    • \n
    • Media Library. We’re gradually getting closer to the media management you’re used to in the web app.
    • \n
    \n

    There are also numerous bugfixes and performance enhancements in this release, so if you haven’t been using the app lately, you should consider giving it another try. I’m personally pretty excited to start using the iPhone version more often now that there are all these fixes and new features. Especially the video upload. You know, for those creative moments that make life fun. \":)\"

    \n

    You can read the full 2.6 release post on the WordPress for iOS blog, and can download v2.6 from iTunes/the app store. Happy mobile blogging!

    \n

    * * *

    \n

    Not an iPhone user? We’ve still got your on-the-go back! Check out the WordPress apps for Android, Blackberry, and Nokia (beta). They’re all 100% GPL, of course, and we’re always looking for contributors to the development projects, so check the blogs if you have mobile dev skills and want to get involved.

    \";s:7:\"pubdate\";s:31:\"Thu, 30 Sep 2010 03:23:31 +0000\";s:2:\"dc\";a:1:{s:7:\"creator\";s:10:\"Jane Wells\";}s:7:\"summary\";s:2291:\"

    Attention Apple-gadget-owning WordPress users! Have you been using the WordPress iOS app for iPhone and iPad? Or maybe you tried it a while back and thought it wasn’t for you? Either way, the new release — v2.6 — will knock your socks off. Why? A bunch of reasons:

    \n
      \n
    • Video. Record, upload, attach, and play videos within the app. Yay for being able to catch your friends’ and co-workers’ most embarrassing shenanigans creative moments with iPhone video and publish them immediately for all the world to see on your WordPress site.
    • \n
    • A total rewrite of the way local drafts are handled, to prevent the unintentional loss of your pending posts.
    • \n
    • Autosave/post revisions. Bam! One of the “oh, thank goodness” features of the web app makes it into the iOS version.
    • \n
    • Easier setup. Faster and easier process for adding your sites to the app.
    • \n
    • Media Library. We’re gradually getting closer to the media management you’re used to in the web app.
    • \n
    \n

    There are also numerous bugfixes and performance enhancements in this release, so if you haven’t been using the app lately, you should consider giving it another try. I’m personally pretty excited to start using the iPhone version more often now that there are all these fixes and new features. Especially the video upload. You know, for those creative moments that make life fun. \":)\"

    \n

    You can read the full 2.6 release post on the WordPress for iOS blog, and can download v2.6 from iTunes/the app store. Happy mobile blogging!

    \n

    * * *

    \n

    Not an iPhone user? We’ve still got your on-the-go back! Check out the WordPress apps for Android, Blackberry, and Nokia (beta). They’re all 100% GPL, of course, and we’re always looking for contributors to the development projects, so check the blogs if you have mobile dev skills and want to get involved.

    \";}i:25;a:7:{s:5:\"title\";s:33:\"Matt: Seattle, Grist, Philippines\";s:4:\"guid\";s:21:\"http://ma.tt/?p=35758\";s:4:\"link\";s:47:\"http://ma.tt/2010/09/seattle-grist-philippines/\";s:11:\"description\";s:1245:\"

    \"\"After a lovely weekend in New York I headed straight to Seattle, but not because of the Microsoft announcement like many people thought, but to attend a meeting for Grist, an environmental non-profit (with a sense of humor) whose board of directors I just joined. In addition to being a great organization to be involved with that has funny but important coverage, I hope to learn a lot more about the non-profit world and apply it to the WordPress Foundation. Tonight I leave for the Philippines where I’ll attend and speak at a WordCamp in Manila. I’m looking forward to the end of the year when things slow down.

    \";s:7:\"pubdate\";s:31:\"Thu, 30 Sep 2010 00:04:14 +0000\";s:2:\"dc\";a:1:{s:7:\"creator\";s:4:\"Matt\";}s:7:\"summary\";s:1245:\"

    \"\"After a lovely weekend in New York I headed straight to Seattle, but not because of the Microsoft announcement like many people thought, but to attend a meeting for Grist, an environmental non-profit (with a sense of humor) whose board of directors I just joined. In addition to being a great organization to be involved with that has funny but important coverage, I hope to learn a lot more about the non-profit world and apply it to the WordPress Foundation. Tonight I leave for the Philippines where I’ll attend and speak at a WordCamp in Manila. I’m looking forward to the end of the year when things slow down.

    \";}i:26;a:7:{s:5:\"title\";s:56:\"Alex King: Using WordPress Transients with External Data\";s:4:\"guid\";s:27:\"http://alexking.org/?p=4823\";s:4:\"link\";s:76:\"http://alexking.org/blog/2010/09/29/using-wordpress-transients-external-data\";s:11:\"description\";s:2129:\"

    The transients feature of WordPress is a very useful tool for local data cache when pulling from a remote data source (web service/API).

    \n

    A typical workflow goes something like this:

    \n
      \n
    1. Get remote data.
    2. \n
    3. Store it locally as transient data with a timeout.
    4. \n
    5. Once the data times out, get remote data again.
    6. \n
    \n

    That’s the basics and will work well most of the time. However there are a few considerations to keep in mind when using transients to store this data.

    \n
      \n
    • When your transient expires, it is deleted from the WordPress database.
    • \n
    • You cannot trust your remote data source to be accessible 100% of the time.
    • \n
    \n

    To account for the situations where a transient has expired and you can’t reach your remote data source, you will want to store the latest copy of your remote data in a more permanent location (probably as an option or post meta, depending on the nature of the data). With this copy of the data still available, you can insulate yourself from situations where your remote data source is unavailable.

    \n

    Here is a better workflow that does error handling in a graceful and localized way:

    \n
      \n
    1. Get remote data.
    2. \n
    3. Store it locally as transient data with a timeout.
    4. \n
    5. Also store it locally as non-transient data (as an option or post meta).
    6. \n
    7. Once the data times out, get remote data again.
    8. \n
    9. If remote data request fails, fall back on the non-transient copy of the data and try to get the remote data again next time.
    10. \n
    \n

    You may want to implement some throttling as well (re-check every minute rather than every request), if so – you can use a transient to easily implement the throttle duration.

    \n

    Hopefully this is useful to other WordPress devs out there. Other (better?) suggestions on how to handle this? Share them in the comments.

    \n\"\"\";s:7:\"pubdate\";s:31:\"Wed, 29 Sep 2010 20:26:48 +0000\";s:2:\"dc\";a:1:{s:7:\"creator\";s:4:\"Alex\";}s:7:\"summary\";s:2129:\"

    The transients feature of WordPress is a very useful tool for local data cache when pulling from a remote data source (web service/API).

    \n

    A typical workflow goes something like this:

    \n
      \n
    1. Get remote data.
    2. \n
    3. Store it locally as transient data with a timeout.
    4. \n
    5. Once the data times out, get remote data again.
    6. \n
    \n

    That’s the basics and will work well most of the time. However there are a few considerations to keep in mind when using transients to store this data.

    \n
      \n
    • When your transient expires, it is deleted from the WordPress database.
    • \n
    • You cannot trust your remote data source to be accessible 100% of the time.
    • \n
    \n

    To account for the situations where a transient has expired and you can’t reach your remote data source, you will want to store the latest copy of your remote data in a more permanent location (probably as an option or post meta, depending on the nature of the data). With this copy of the data still available, you can insulate yourself from situations where your remote data source is unavailable.

    \n

    Here is a better workflow that does error handling in a graceful and localized way:

    \n
      \n
    1. Get remote data.
    2. \n
    3. Store it locally as transient data with a timeout.
    4. \n
    5. Also store it locally as non-transient data (as an option or post meta).
    6. \n
    7. Once the data times out, get remote data again.
    8. \n
    9. If remote data request fails, fall back on the non-transient copy of the data and try to get the remote data again next time.
    10. \n
    \n

    You may want to implement some throttling as well (re-check every minute rather than every request), if so – you can use a transient to easily implement the throttle duration.

    \n

    Hopefully this is useful to other WordPress devs out there. Other (better?) suggestions on how to handle this? Share them in the comments.

    \n\"\"\";}i:27;a:7:{s:5:\"title\";s:60:\"Weblog Tools Collection: WordPress Plugin Releases for 09/29\";s:4:\"guid\";s:40:\"http://weblogtoolscollection.com/?p=8744\";s:4:\"link\";s:88:\"http://weblogtoolscollection.com/archives/2010/09/29/wordpress-plugin-releases-for-0929/\";s:11:\"description\";s:2269:\"

    New plugins

    \n

    Better Delete Revision allows you to remove old post revisions and related meta content and optimize the database.

    \n

    GTS Translation provides high quality human translation of your blog content using community translation (crowdsourcing).

    \n

    IE9 Pinned Site adds support for Internet Explorer 9′s pinned site features to your WordPress blog.

    \n

    Updated plugins

    \n

    AddToAny: Share/Bookmark/Email Button helps people share, bookmark, and email your posts and pages using any service, such as Facebook, Twitter, Google Buzz, Digg, Delicious, and well over 100 more social bookmarking and sharing sites.

    \n

    All in One Webmaster has options to add Google, Bing, Alexa, Blog Catalog, Yahoo’s Webmaster and Analytics code (meta tags).

    \n

    FourSquare Integration allows you to display your last checkins as a list or on Google Map on pages and posts.

    \n

    Simple Twitter Connect is a series of plugins that lets you add any sort of Twitter functionality you like to a WordPress blog.

    \n

    YOURLS: WordPress To Twitter allows you to use YOURLS (a free GPL URL shortener service) or another public service (tinyURL…) to create short URLs of your posts and tweet them.

    \nTweet\";s:7:\"pubdate\";s:31:\"Wed, 29 Sep 2010 13:00:43 +0000\";s:2:\"dc\";a:1:{s:7:\"creator\";s:10:\"James Huff\";}s:7:\"summary\";s:2269:\"

    New plugins

    \n

    Better Delete Revision allows you to remove old post revisions and related meta content and optimize the database.

    \n

    GTS Translation provides high quality human translation of your blog content using community translation (crowdsourcing).

    \n

    IE9 Pinned Site adds support for Internet Explorer 9′s pinned site features to your WordPress blog.

    \n

    Updated plugins

    \n

    AddToAny: Share/Bookmark/Email Button helps people share, bookmark, and email your posts and pages using any service, such as Facebook, Twitter, Google Buzz, Digg, Delicious, and well over 100 more social bookmarking and sharing sites.

    \n

    All in One Webmaster has options to add Google, Bing, Alexa, Blog Catalog, Yahoo’s Webmaster and Analytics code (meta tags).

    \n

    FourSquare Integration allows you to display your last checkins as a list or on Google Map on pages and posts.

    \n

    Simple Twitter Connect is a series of plugins that lets you add any sort of Twitter functionality you like to a WordPress blog.

    \n

    YOURLS: WordPress To Twitter allows you to use YOURLS (a free GPL URL shortener service) or another public service (tinyURL…) to create short URLs of your posts and tweet them.

    \nTweet\";}i:28;a:7:{s:5:\"title\";s:61:\"WordPress Podcast: The Genesis of Microsoft and WordPress.com\";s:4:\"guid\";s:30:\"http://wp-community.org/?p=753\";s:4:\"link\";s:63:\"http://feedproxy.google.com/~r/wordpresspodcast/~3/FIb8BOw2F08/\";s:11:\"description\";s:3771:\"

    At the very beginning of this episode there’s a short interview with Toni Schneider, the CEO of Automattic, and Dharmesh Mehta, Director of Product Management, Windows Live. Only an hour before we recorded this interview they were on stage at TechCrunch Disrupt to announce that all the Microsoft Live / MSN Spaces users would be moved over to WordPress.com.

    \"Toni

    Toni Schneider (Automattic) and Dharmesh Mehta (Microsoft)

    We talked about what this meant for future work between Microsoft and Automattic / WordPress, and whether any of this would impact WordPress.org users.

    \"Brian

    Brian Gardner - StudioPress

    This interview is followed by another (much longer) interview with Brian Gardner and Nathan Rice of StudioPress and Genesis. In this interview we discuss how Genesis came to be over the last year, what it’s benefits are over a normal theme and what the process of going from a set of themes to a framework was like.

    We discussed the SEO settings of Genesis, which has some of the more advanced SEO settings ever seen in themes, but also whether these kinds of settings should be in themes at all. I referenced a recent post of mine and we talked about a plugin Nathan developed, the SEO Data Transporter that allows you to transport your SEO meta data from a plugin to a theme, or from one theme to another etc.

    \"Nathan

    Nathan Rice - StudioPress

    Another interesting point was the discussion of how to set up a community around a theme framework like this, and Brian showed us, for instance, dev.studiopress.com. We also talked about the Genesis Simple Sidebars plugin, a very cool way of allowing people to change sidebars for posts.

    Then there were two plugin picks:

    • Nathan picked Simple URLs, a very cool new method of doing redirects using a custom post.
    • Joost picked Press This reloaded, a “re done” version of the Press This bookmarklet that allows setting of SEO titles etc. from within the Press This screen too.

    It’s really an information packed show, so go ahead and listen right now!

    PS sorry for my sore voice and coughing, I’ve got a quite heavy cold pestering me.

    \";s:7:\"pubdate\";s:31:\"Wed, 29 Sep 2010 07:40:50 +0000\";s:2:\"dc\";a:1:{s:7:\"creator\";s:54:\"joost@pressthis.com (Joost de Valk & Frederick Townes)\";}s:7:\"summary\";s:3771:\"

    At the very beginning of this episode there’s a short interview with Toni Schneider, the CEO of Automattic, and Dharmesh Mehta, Director of Product Management, Windows Live. Only an hour before we recorded this interview they were on stage at TechCrunch Disrupt to announce that all the Microsoft Live / MSN Spaces users would be moved over to WordPress.com.

    \"Toni

    Toni Schneider (Automattic) and Dharmesh Mehta (Microsoft)

    We talked about what this meant for future work between Microsoft and Automattic / WordPress, and whether any of this would impact WordPress.org users.

    \"Brian

    Brian Gardner - StudioPress

    This interview is followed by another (much longer) interview with Brian Gardner and Nathan Rice of StudioPress and Genesis. In this interview we discuss how Genesis came to be over the last year, what it’s benefits are over a normal theme and what the process of going from a set of themes to a framework was like.

    We discussed the SEO settings of Genesis, which has some of the more advanced SEO settings ever seen in themes, but also whether these kinds of settings should be in themes at all. I referenced a recent post of mine and we talked about a plugin Nathan developed, the SEO Data Transporter that allows you to transport your SEO meta data from a plugin to a theme, or from one theme to another etc.

    \"Nathan

    Nathan Rice - StudioPress

    Another interesting point was the discussion of how to set up a community around a theme framework like this, and Brian showed us, for instance, dev.studiopress.com. We also talked about the Genesis Simple Sidebars plugin, a very cool way of allowing people to change sidebars for posts.

    Then there were two plugin picks:

    • Nathan picked Simple URLs, a very cool new method of doing redirects using a custom post.
    • Joost picked Press This reloaded, a “re done” version of the Press This bookmarklet that allows setting of SEO titles etc. from within the Press This screen too.

    It’s really an information packed show, so go ahead and listen right now!

    PS sorry for my sore voice and coughing, I’ve got a quite heavy cold pestering me.

    \";}i:29;a:7:{s:5:\"title\";s:34:\"WP iPhone: Introducing Version 2.6\";s:4:\"guid\";s:31:\"http://ios.wordpress.org/?p=771\";s:4:\"link\";s:60:\"http://ios.wordpress.org/2010/09/29/introducing-version-2-6/\";s:11:\"description\";s:7750:\"
    \n
    \n

    We’re very happy to announce that the latest version of WordPress for iOS, Version 2.6, is now live in the App Store. Go get it while you read the rest of this post!

    \n

    Video

    \n

    Since the introduction of video in the iPhone 3GS, we’ve received requests for the ability to record video within the app and then upload it directly to a blog. With the introduction of the iPhone 4 these requests become even more frequent. With 2.6 you can now record, upload, attach, and play videos within the app. When paired with a VideoPress upgrade, this feature becomes an even more powerful way to publish videos from your iOS device to the web.

    \n

    Local Drafts

    \n

    We’ve also heard and share your frustration regarding losing posts saved as Local Drafts. Nothing’s worse than working on a great post only to have it disappear. That’s why we took all of August to completely rewrite the areas of the app that handle Local Draft posts and pages. We’re now using Apple’s lovely Core Data technology to save posts locally before they’re published or saved online.

    \n

    While that change alone will bring a new level of stability and reliability to the way Local Drafts are treated, we took it a step further and added some triple checking to determine if a post has truly been published and can safely be removed from your Local Drafts library. Once you publish a Local Draft, we do an additional call to verify that the ID we got back from the server during a publish actually exists as a post or page we can retrieve. Only after we’ve verified that your new post does indeed exist on the server do we go ahead and delete the old Local Draft. All of this happens in the background, within a second or two. We think that’s pretty nifty!

    \n

    Autosaves

    \n

    One of the nicest things about editing a post with WordPress is the autosave draft feature. If something happens and you need to revert to an older version of a post, you can just select a previous version and restore it without issue. We’ve implemented a similar feature in 2.6. When Autosave is enabled, while you’re working with a post, a small grey WordPress logo will appear in the bottom right-hand corner to let you know that autosaves exist for that post. Click the logo, and you’ll flip over to a screen that will allow you to restore the post from one of those autosaves.

    \n

    Setup Process

    \n

    Another area of the app that we felt needed some attention was the Add Blog/Site Setup process. Previously it felt too clunky, slow, and non-intuitive. So we’ve completely rewritten this area as well, allowing WordPress.com users a quick way to add their blogs, and giving WordPress.org users a faster, more streamlined experience when adding their sites.

    \n

    Media Library

    \n

    What would a new video feature be without a new Media Library to go along with it? We’ve taken the old Photos tab and turned it into a new Media Library more along the lines of what you’re used to with WordPress. We’re now giving you additional information about media items such as dimensions and file size, as well as the ability to insert media items into a post above or below your content. Look for even more expansion in this area in coming releases.

    \n

    Bugfixes and Enhancements

    \n

    All of you have been incredibly patient as we took our time to make sure this release resolved many long-standing issues, both large and small. While new features and functionality are nice, if an app isn’t stable enough to use, all of those features are worthless. Keeping this in mind, for the past three months we’ve been fixing bugs here and there each day as we continued to work on new features. We think 2.6 includes enough bugfixes and performance enhancements that they deserve to be listed as a separate item. If you’d like to learn more about the bugs we’ve fixed or just keep up with our progress as we move along with each version, you can check out the Trac Timeline.

    \n

    Also, one more note about bugfixes. While this release took a very long time to get from our hands to yours, we don’t anticipate the same amount of time for future releases. So from now on expect to see major releases more often, each followed by one or two small bugfix releases soon after. (We’ll be submitting 2.6.1 shortly.)

    \n

    Beta Team

    \n

    We’ve also got to give a shout out to our Beta Team. One of the most challenging things about iOS development is that the release process tends to be a little slow, so getting patches and fixes out quickly can sometimes be a challenge. Not to mention that, as developers, we’re sometimes blind to the idea that we could ever make a mistake while coding. So working with our testers on the Beta Team has been incredibly helpful in making this app much more stable, reliable, and enjoyable. With their help, we’re able to catch and fix bugs before they get into the final release. Kudos to all of you.

    \n

    You

    \n

    As always, your feedback and input is much appreciated, and is absolutely crucial in helping us make the app and your user experience better. You can reach us on Twitter at @WordPressiOS or on the WordPress for iOS Forums. And if you find a new bug (no way!) please don’t hesitate to submit a new ticket in Trac.

    \n

    If you find that this version is an improvement over previous versions, we’d appreciate if you noted that in an App Store review. More than any other metric, App Store reviews help to let us and our users know where the app stands in terms of quality, and what areas we need to focus on in the future.

    \n

    Cheers!

    \n
    \n
    \n
    \"\" \"\" \"\" \"\" \"\" \"\" \"\" \"\"\";s:7:\"pubdate\";s:31:\"Wed, 29 Sep 2010 00:00:20 +0000\";s:2:\"dc\";a:1:{s:7:\"creator\";s:10:\"Chris Boyd\";}s:7:\"summary\";s:7750:\"
    \n
    \n

    We’re very happy to announce that the latest version of WordPress for iOS, Version 2.6, is now live in the App Store. Go get it while you read the rest of this post!

    \n

    Video

    \n

    Since the introduction of video in the iPhone 3GS, we’ve received requests for the ability to record video within the app and then upload it directly to a blog. With the introduction of the iPhone 4 these requests become even more frequent. With 2.6 you can now record, upload, attach, and play videos within the app. When paired with a VideoPress upgrade, this feature becomes an even more powerful way to publish videos from your iOS device to the web.

    \n

    Local Drafts

    \n

    We’ve also heard and share your frustration regarding losing posts saved as Local Drafts. Nothing’s worse than working on a great post only to have it disappear. That’s why we took all of August to completely rewrite the areas of the app that handle Local Draft posts and pages. We’re now using Apple’s lovely Core Data technology to save posts locally before they’re published or saved online.

    \n

    While that change alone will bring a new level of stability and reliability to the way Local Drafts are treated, we took it a step further and added some triple checking to determine if a post has truly been published and can safely be removed from your Local Drafts library. Once you publish a Local Draft, we do an additional call to verify that the ID we got back from the server during a publish actually exists as a post or page we can retrieve. Only after we’ve verified that your new post does indeed exist on the server do we go ahead and delete the old Local Draft. All of this happens in the background, within a second or two. We think that’s pretty nifty!

    \n

    Autosaves

    \n

    One of the nicest things about editing a post with WordPress is the autosave draft feature. If something happens and you need to revert to an older version of a post, you can just select a previous version and restore it without issue. We’ve implemented a similar feature in 2.6. When Autosave is enabled, while you’re working with a post, a small grey WordPress logo will appear in the bottom right-hand corner to let you know that autosaves exist for that post. Click the logo, and you’ll flip over to a screen that will allow you to restore the post from one of those autosaves.

    \n

    Setup Process

    \n

    Another area of the app that we felt needed some attention was the Add Blog/Site Setup process. Previously it felt too clunky, slow, and non-intuitive. So we’ve completely rewritten this area as well, allowing WordPress.com users a quick way to add their blogs, and giving WordPress.org users a faster, more streamlined experience when adding their sites.

    \n

    Media Library

    \n

    What would a new video feature be without a new Media Library to go along with it? We’ve taken the old Photos tab and turned it into a new Media Library more along the lines of what you’re used to with WordPress. We’re now giving you additional information about media items such as dimensions and file size, as well as the ability to insert media items into a post above or below your content. Look for even more expansion in this area in coming releases.

    \n

    Bugfixes and Enhancements

    \n

    All of you have been incredibly patient as we took our time to make sure this release resolved many long-standing issues, both large and small. While new features and functionality are nice, if an app isn’t stable enough to use, all of those features are worthless. Keeping this in mind, for the past three months we’ve been fixing bugs here and there each day as we continued to work on new features. We think 2.6 includes enough bugfixes and performance enhancements that they deserve to be listed as a separate item. If you’d like to learn more about the bugs we’ve fixed or just keep up with our progress as we move along with each version, you can check out the Trac Timeline.

    \n

    Also, one more note about bugfixes. While this release took a very long time to get from our hands to yours, we don’t anticipate the same amount of time for future releases. So from now on expect to see major releases more often, each followed by one or two small bugfix releases soon after. (We’ll be submitting 2.6.1 shortly.)

    \n

    Beta Team

    \n

    We’ve also got to give a shout out to our Beta Team. One of the most challenging things about iOS development is that the release process tends to be a little slow, so getting patches and fixes out quickly can sometimes be a challenge. Not to mention that, as developers, we’re sometimes blind to the idea that we could ever make a mistake while coding. So working with our testers on the Beta Team has been incredibly helpful in making this app much more stable, reliable, and enjoyable. With their help, we’re able to catch and fix bugs before they get into the final release. Kudos to all of you.

    \n

    You

    \n

    As always, your feedback and input is much appreciated, and is absolutely crucial in helping us make the app and your user experience better. You can reach us on Twitter at @WordPressiOS or on the WordPress for iOS Forums. And if you find a new bug (no way!) please don’t hesitate to submit a new ticket in Trac.

    \n

    If you find that this version is an improvement over previous versions, we’d appreciate if you noted that in an App Store review. More than any other metric, App Store reviews help to let us and our users know where the app stands in terms of quality, and what areas we need to focus on in the future.

    \n

    Cheers!

    \n
    \n
    \n
    \"\" \"\" \"\" \"\" \"\" \"\" \"\" \"\"\";}i:30;a:7:{s:5:\"title\";s:55:\"Weblog Tools Collection: WordPress Admin Themes Drought\";s:4:\"guid\";s:40:\"http://weblogtoolscollection.com/?p=8741\";s:4:\"link\";s:84:\"http://weblogtoolscollection.com/archives/2010/09/28/wordpress-admin-themes-drought/\";s:11:\"description\";s:2410:\"

    The most requested search item on this blog is “WordPress admin themes”. With variations of the various search terms, I would guess that we receive many hundreds of hits a day on just this blog from WordPress enthusiasts looking for themes to adorn their admin panel with. A simple search on Google reveals an old post from this blog listing 9 admin themes (I don’t link to it because most of the themes listed are dead or deprecated). Here is a list of nice admin themes that I can find, which are still being produced and regularly updated.

    \n
      \n
    • Fluency Admin by Dean J. Robinson. A nice looking, well documented, well translated admin theme that is often updated.
    • \n
    \n

    Wait for it ….. thats it!! (that I could find, please let us know if you know of others that are of high quality and updated regularly) There are various useful and popular tools to control and modify your admin interface such as Ozh’s Admin Drop Down Menu or the Adminimize Plugin, however no admin theme market has developed. The initial momentum seems to have fizzled out. We feature hundreds of themes for your WordPress blog every month. I barely ever see one for the admin side.

    \n

    It really sucks to know that there is such a demand for these, but no supply whatsoever. To encourage talented developers and feed this need in the WordPress community, I would like to offer up our services for what they are worth. If you create, build and support a high quality admin theme (we decide what is high quality) for WordPress and release it under the GPL as appropriate, we will let you feature your admin theme and your design services on this blog for our readers. Think of it as free advertising in exchange for some service to the community. (Please leave a comment or use the contact form linked above if you need clarification or have questions.)

    \n

    Are you interested?

    \nTweet\";s:7:\"pubdate\";s:31:\"Tue, 28 Sep 2010 23:20:26 +0000\";s:2:\"dc\";a:1:{s:7:\"creator\";s:10:\"Mark Ghosh\";}s:7:\"summary\";s:2410:\"

    The most requested search item on this blog is “WordPress admin themes”. With variations of the various search terms, I would guess that we receive many hundreds of hits a day on just this blog from WordPress enthusiasts looking for themes to adorn their admin panel with. A simple search on Google reveals an old post from this blog listing 9 admin themes (I don’t link to it because most of the themes listed are dead or deprecated). Here is a list of nice admin themes that I can find, which are still being produced and regularly updated.

    \n
      \n
    • Fluency Admin by Dean J. Robinson. A nice looking, well documented, well translated admin theme that is often updated.
    • \n
    \n

    Wait for it ….. thats it!! (that I could find, please let us know if you know of others that are of high quality and updated regularly) There are various useful and popular tools to control and modify your admin interface such as Ozh’s Admin Drop Down Menu or the Adminimize Plugin, however no admin theme market has developed. The initial momentum seems to have fizzled out. We feature hundreds of themes for your WordPress blog every month. I barely ever see one for the admin side.

    \n

    It really sucks to know that there is such a demand for these, but no supply whatsoever. To encourage talented developers and feed this need in the WordPress community, I would like to offer up our services for what they are worth. If you create, build and support a high quality admin theme (we decide what is high quality) for WordPress and release it under the GPL as appropriate, we will let you feature your admin theme and your design services on this blog for our readers. Think of it as free advertising in exchange for some service to the community. (Please leave a comment or use the contact form linked above if you need clarification or have questions.)

    \n

    Are you interested?

    \nTweet\";}i:31;a:7:{s:5:\"title\";s:53:\"Weblog Tools Collection: Deleting WordPress Revisions\";s:4:\"guid\";s:40:\"http://weblogtoolscollection.com/?p=8734\";s:4:\"link\";s:82:\"http://weblogtoolscollection.com/archives/2010/09/28/deleting-wordpress-revisions/\";s:11:\"description\";s:3059:\"

    WordPress 2.6 introduced a post revisions feature, which automatically saves a draft as you begin to write a post or page and saves a revision for each change made afterwards. That’s right, every time you make even the slightest alteration to a post or page, a new revision is saved. Now don’t get me wrong, this is an incredibly useful feature, especially if you accidentally cut half of your post during a late night edit or lose power while composing your latest masterpiece, but these revisions can slowly build up in your database.

    \n

    If it’s been a few days since you’ve last edited your blog, chances are that you don’t need to keep any revisions around, and they’re probably just siting in your database taking up space and growing cobwebs. To remove all of your revisions safely without harming your published posts and pages, backup your database, then use either Delete-Revision or Better Delete Revision. If you’re handy with SQL queries, use either phpMyAdmin or the MySQL command line to run the following query (change the table prefix as necessary):

    \n

    DELETE FROM wp_posts WHERE post_type = \"revision\"

    \n

    Update: Thanks to Ozh for pointing out that the above query “just deletes post marked as revisions. If for some reason you associated a revision with a tag or a category that was then removed when the final post was published, you will have extra entries in other tables such as terms.” The proper query to safely remove all of your revisions is as follows (change the table prefix as necessary):

    \n

    DELETE a,b,c
    \nFROM wp_posts a
    \nLEFT JOIN wp_term_relationships b ON (a.ID = b.object_id)
    \nLEFT JOIN wp_postmeta c ON (a.ID = c.post_id)
    \nWHERE a.post_type = \'revision\'

    \n

    If you want to disable the revision system, add the following line to your wp-config.php file:

    \n

    define(\'WP_POST_REVISIONS\', false );

    \n

    If you want to specify the number of revisions that WordPress can save, add the following line to your wp-config.php file (change the number to your desired maximum revision count):

    \n

    define(\'WP_POST_REVISIONS\', 3);

    \n

    As the revision system is a form of backup, I recommend periodically deleting revisions as opposed to disabling or limiting it.

    \n

    I ran the above query on my blog for the first time last night and reduced the database size by almost half! How much did you save?

    \nTweet\";s:7:\"pubdate\";s:31:\"Tue, 28 Sep 2010 13:00:50 +0000\";s:2:\"dc\";a:1:{s:7:\"creator\";s:10:\"James Huff\";}s:7:\"summary\";s:3059:\"

    WordPress 2.6 introduced a post revisions feature, which automatically saves a draft as you begin to write a post or page and saves a revision for each change made afterwards. That’s right, every time you make even the slightest alteration to a post or page, a new revision is saved. Now don’t get me wrong, this is an incredibly useful feature, especially if you accidentally cut half of your post during a late night edit or lose power while composing your latest masterpiece, but these revisions can slowly build up in your database.

    \n

    If it’s been a few days since you’ve last edited your blog, chances are that you don’t need to keep any revisions around, and they’re probably just siting in your database taking up space and growing cobwebs. To remove all of your revisions safely without harming your published posts and pages, backup your database, then use either Delete-Revision or Better Delete Revision. If you’re handy with SQL queries, use either phpMyAdmin or the MySQL command line to run the following query (change the table prefix as necessary):

    \n

    DELETE FROM wp_posts WHERE post_type = \"revision\"

    \n

    Update: Thanks to Ozh for pointing out that the above query “just deletes post marked as revisions. If for some reason you associated a revision with a tag or a category that was then removed when the final post was published, you will have extra entries in other tables such as terms.” The proper query to safely remove all of your revisions is as follows (change the table prefix as necessary):

    \n

    DELETE a,b,c
    \nFROM wp_posts a
    \nLEFT JOIN wp_term_relationships b ON (a.ID = b.object_id)
    \nLEFT JOIN wp_postmeta c ON (a.ID = c.post_id)
    \nWHERE a.post_type = \'revision\'

    \n

    If you want to disable the revision system, add the following line to your wp-config.php file:

    \n

    define(\'WP_POST_REVISIONS\', false );

    \n

    If you want to specify the number of revisions that WordPress can save, add the following line to your wp-config.php file (change the number to your desired maximum revision count):

    \n

    define(\'WP_POST_REVISIONS\', 3);

    \n

    As the revision system is a form of backup, I recommend periodically deleting revisions as opposed to disabling or limiting it.

    \n

    I ran the above query on my blog for the first time last night and reduced the database size by almost half! How much did you save?

    \nTweet\";}i:32;a:7:{s:5:\"title\";s:68:\"Lorelle on WP: Welcome Windows Live Spaces Bloggers to WordPress.com\";s:4:\"guid\";s:36:\"http://lorelle.wordpress.com/?p=4551\";s:4:\"link\";s:94:\"http://lorelle.wordpress.com/2010/09/27/welcome-windows-live-spaces-bloggers-to-wordpress-com/\";s:11:\"description\";s:561:\"I just posted news on WordCast about the WordPress.com and Microsoft Windows Live Spaces migration which brings Windows Live Spaces bloggers to WordPress.com. See Updated News Below I’m thrilled about this huge endeavor, and offer up my blog tips to Windows Live Spaces bloggers. I’m also excited about what this means for the WordPress Community. The number tossed [...]\"\"\";s:7:\"pubdate\";s:31:\"Tue, 28 Sep 2010 01:38:59 +0000\";s:2:\"dc\";a:1:{s:7:\"creator\";s:17:\"Lorelle VanFossen\";}s:7:\"summary\";s:561:\"I just posted news on WordCast about the WordPress.com and Microsoft Windows Live Spaces migration which brings Windows Live Spaces bloggers to WordPress.com. See Updated News Below I’m thrilled about this huge endeavor, and offer up my blog tips to Windows Live Spaces bloggers. I’m also excited about what this means for the WordPress Community. The number tossed [...]\"\"\";}i:33;a:7:{s:5:\"title\";s:75:\"Weblog Tools Collection: WordPress.com and Windows Live partnering together\";s:4:\"guid\";s:40:\"http://weblogtoolscollection.com/?p=8732\";s:4:\"link\";s:104:\"http://weblogtoolscollection.com/archives/2010/09/27/wordpress-com-and-windows-live-partnering-together/\";s:11:\"description\";s:1006:\"

    WordPress.com and Windows Live are partnering together and providing an upgrade for 30 million Windows Live Spaces customers. This partnership was announced at TechCrunch Disrupt. You can read more about the partnership, the Windows Live Spaces importer for WordPress.com, the added ability to Publicize on Messenger on the WordPress.com blog. Via: Windows Team Blog.

    \nTweet\";s:7:\"pubdate\";s:31:\"Mon, 27 Sep 2010 21:24:15 +0000\";s:2:\"dc\";a:1:{s:7:\"creator\";s:10:\"Mark Ghosh\";}s:7:\"summary\";s:1006:\"

    WordPress.com and Windows Live are partnering together and providing an upgrade for 30 million Windows Live Spaces customers. This partnership was announced at TechCrunch Disrupt. You can read more about the partnership, the Windows Live Spaces importer for WordPress.com, the added ability to Publicize on Messenger on the WordPress.com blog. Via: Windows Team Blog.

    \nTweet\";}i:34;a:7:{s:5:\"title\";s:40:\"Matt: MSN Spaces Closing, becomes WP.com\";s:4:\"guid\";s:21:\"http://ma.tt/?p=35754\";s:4:\"link\";s:55:\"http://ma.tt/2010/09/msn-spaces-closing-becomes-wp-com/\";s:11:\"description\";s:1365:\"

    As just announced on stage at TechCrunch Disrupt, Windows Live (formerly MSN) Spaces is shutting down and migrating their 30m+ users to WordPress.com. Four years ago I was fairly worried as every internet giant (Microsoft, AOL, Yahoo, Google) had a hosted blogging service. Now only Blogger remains, and is firmly in our sights. I’ve been impressed with Microsoft’s regard for their users in providing a solid upgrade and migration path with a really smooth experience, which I think is in strong contrast to Yahoo’s 360 or AOL’s Journals. Given that this effectively doubles WordPress’s user base, there is a lot of work to be done still, but I’m excited by the challenge. \":)\" See also: official Windows Live post, official WP.com post, and 30+ other articles covering this on Techmeme.

    \";s:7:\"pubdate\";s:31:\"Mon, 27 Sep 2010 18:27:33 +0000\";s:2:\"dc\";a:1:{s:7:\"creator\";s:4:\"Matt\";}s:7:\"summary\";s:1365:\"

    As just announced on stage at TechCrunch Disrupt, Windows Live (formerly MSN) Spaces is shutting down and migrating their 30m+ users to WordPress.com. Four years ago I was fairly worried as every internet giant (Microsoft, AOL, Yahoo, Google) had a hosted blogging service. Now only Blogger remains, and is firmly in our sights. I’ve been impressed with Microsoft’s regard for their users in providing a solid upgrade and migration path with a really smooth experience, which I think is in strong contrast to Yahoo’s 360 or AOL’s Journals. Given that this effectively doubles WordPress’s user base, there is a lot of work to be done still, but I’m excited by the challenge. \":)\" See also: official Windows Live post, official WP.com post, and 30+ other articles covering this on Techmeme.

    \";}i:35;a:7:{s:5:\"title\";s:59:\"Weblog Tools Collection: WordPress Theme Releases for 09/27\";s:4:\"guid\";s:40:\"http://weblogtoolscollection.com/?p=8725\";s:4:\"link\";s:87:\"http://weblogtoolscollection.com/archives/2010/09/27/wordpress-theme-releases-for-0927/\";s:11:\"description\";s:1777:\"

    \"art

    \n

    Art Simple Black is a black simple widget ready WordPress theme with two columns, fixed-width, valid XHTML and a right sidebar.

    \n

    \"birdsite\"

    \n

    BirdSITE is a simple photo blogging theme for WordPress.

    \n

    \"langit

    \n

    Langit Biru is a smooth blue 3 column fixed css layout theme.

    \n

    \"ultra\"

    \n

    Ultra is a black simple widget ready WordPress theme with two columns, fixed-width, valid XHTML and a right sidebar.

    \nTweet\";s:7:\"pubdate\";s:31:\"Mon, 27 Sep 2010 13:00:39 +0000\";s:2:\"dc\";a:1:{s:7:\"creator\";s:10:\"James Huff\";}s:7:\"summary\";s:1777:\"

    \"art

    \n

    Art Simple Black is a black simple widget ready WordPress theme with two columns, fixed-width, valid XHTML and a right sidebar.

    \n

    \"birdsite\"

    \n

    BirdSITE is a simple photo blogging theme for WordPress.

    \n

    \"langit

    \n

    Langit Biru is a smooth blue 3 column fixed css layout theme.

    \n

    \"ultra\"

    \n

    Ultra is a black simple widget ready WordPress theme with two columns, fixed-width, valid XHTML and a right sidebar.

    \nTweet\";}i:36;a:7:{s:5:\"title\";s:51:\"Mark Jaquith: WordPress Q & A: Week of September 27\";s:4:\"guid\";s:39:\"http://markjaquith.wordpress.com/?p=539\";s:4:\"link\";s:77:\"http://markjaquith.wordpress.com/2010/09/27/wordpress-questions-september-27/\";s:11:\"description\";s:3266:\"

    Ricky asks:

    \n

    Thanks for your time. I’m working on a site where I’d like members to be able to submit posts, but I’d like to be able to moderate them first before they go live.

    \n

    Kinda similar to what WP can do for comments, I’d like to do for posts. Is that possible?

    \n

    Certainly! What you want is to open up registration and make the default role for new users “Contributor” instead of “Subscriber.” Contributors can submit posts for review, but not publish them. They’ll show up as “pending review” in the backend, and will require an Editor or Administrator to publish them. There are even plugins available to facilitate posting from the front end, such as Gravity Forms ($39 and up, GPL).

    \n

    Allan asks:

    \n

    I have hit an incredibly frustrating hitch with WP, and that is getting a text file with the content of my posts. I need a single file I can load into page layout software. I know about Blog Booker and Blurb but would like more layout control than those services offer.

    \n

    If you need this for a bunch of posts on an ongoing basis, I’d create a custom page template and just have it do query_posts(\'posts_per_page=9999\'); (or however many posts you want), and then do a basic loop. Look at a simple theme for inspiration on the template tags… it all depends on how you need it formatted.

    \n
    \"\" \"\" \"\" \"\" \"\" \"\" \"\" \"\"\";s:7:\"pubdate\";s:31:\"Mon, 27 Sep 2010 12:05:39 +0000\";s:2:\"dc\";a:1:{s:7:\"creator\";s:12:\"Mark Jaquith\";}s:7:\"summary\";s:3266:\"

    Ricky asks:

    \n

    Thanks for your time. I’m working on a site where I’d like members to be able to submit posts, but I’d like to be able to moderate them first before they go live.

    \n

    Kinda similar to what WP can do for comments, I’d like to do for posts. Is that possible?

    \n

    Certainly! What you want is to open up registration and make the default role for new users “Contributor” instead of “Subscriber.” Contributors can submit posts for review, but not publish them. They’ll show up as “pending review” in the backend, and will require an Editor or Administrator to publish them. There are even plugins available to facilitate posting from the front end, such as Gravity Forms ($39 and up, GPL).

    \n

    Allan asks:

    \n

    I have hit an incredibly frustrating hitch with WP, and that is getting a text file with the content of my posts. I need a single file I can load into page layout software. I know about Blog Booker and Blurb but would like more layout control than those services offer.

    \n

    If you need this for a bunch of posts on an ongoing basis, I’d create a custom page template and just have it do query_posts(\'posts_per_page=9999\'); (or however many posts you want), and then do a basic loop. Look at a simple theme for inspiration on the template tags… it all depends on how you need it formatted.

    \n
    \"\" \"\" \"\" \"\" \"\" \"\" \"\" \"\"\";}i:37;a:7:{s:5:\"title\";s:47:\"Weblog Tools Collection: IE9 Pinned Site Plugin\";s:4:\"guid\";s:76:\"http://weblogtoolscollection.com/archives/2010/09/26/ie9-pinned-site-plugin/\";s:4:\"link\";s:76:\"http://weblogtoolscollection.com/archives/2010/09/26/ie9-pinned-site-plugin/\";s:11:\"description\";s:5558:\"

    \"ie9\"Microsoft recently released a public beta of their newest web browser, IE9, that has quickly become very popular.  In its first 48 hours of availability it was  downloaded 2 million times.

    \n

    You know what that means – more users are visiting your WordPress site using IE9 everyday.

    \n

    So why not take advantage of a feature that combines new capabilities in IE9 and the Windows 7 Taskbar to ask visitors to place a permanent link to your site on their Windows 7 Taskbar?

    \n

    Some real quick background.  On the Windows 7 Taskbar any icon that is placed there can be programmed by the software’s author to have interactive menu items on what is called a Jumplist.  This Jumplist typically contains shortcuts to program features and commands to provide quick access to them.

    \n

    Well with the introduction of IE9 webpages can have code added to them that will allow a visitor to drag the favicon to their taskbar and that code then adds an interactive Jumplist to the favicon as it sits on the users Windows 7 Taskbar to create those interactive features.

    \n

    Well for those of us who use WordPress as our publishing platform we know that the easiest way to add features and functionality to our websites is through the use of plugins and the breadth of developers that are out there making them.

    \n

    Well you know it was only a matter of time before the plugins started to be built to take advantage of these new features in IE9 and Windows 7.

    \n

    Let me introduce you to the IE9 Pinned Site plugin by fatihboy.  This plugin is very fresh as it was published just yesterday for its initial release and it is his first WordPress plugin.

    \n

    So installation is straight forward like most plugins – just download it from the WordPress.org Plugin site and then activate it on your site.

    \n

    You will find the simple one page settings page for this plugin under the Settings > IE9 Pinned Site menu item.

    \n

    \"ie9pinnedsitesettingsinwordpress\"

    \n

    Here you just select whether to feature your posts, categories or tags on the Jumplist for your website and how many entries you want of each.  Using those settings above this is what the Jumplist looks like for my site WindowsObserver.com:

    \n

    \"ie9pinnedsitejumplistwindowsobserver\"

    \n

    As you can see my most recent 5 posts are at the top followed by the Tasks header which provides links to 5 of my website pages.

    \n

    An additional feature of Jumplists in Windows 7 on the taskbar is the ability to pin things to them. 

    \n

    \"ie9pinnedsitejumplistwindowsobserverpinnedsite\"

    \n

    This is the same Jumplist except I have pinned one post which you see under the Pinned header.  Just click the pin icon while hovering over a Jumplist entry to pin that item to the Jumplist on your system.  The ability to pin a site on the Jumplist is in Windows 7 and its new Taskbar not in the plugin itself.

    \n

    I see a lot of potential for this plugin for customization of the Jumplist such as the name of each header area, picking what entries you want on it as far as posts, tags and categories are concerned instead of just by a numerical number and allowing you to place something from each group on the Jumplist (i.e. categories, tags and posts all being represented instead of just one).

    \n

    Don’t get me wrong this is a great initial implementation of this capability and I am pleased once again that the strong community of developers has answered the need for this so quickly after the new features are available in a new browser.

    \n

    What do you think?  Any suggestions for the author of the plugin for future updates?  Looking forward to hearing from you in the comments.

    \nTweet\";s:7:\"pubdate\";s:31:\"Sun, 26 Sep 2010 15:59:00 +0000\";s:2:\"dc\";a:1:{s:7:\"creator\";s:11:\"Richard Hay\";}s:7:\"summary\";s:5558:\"

    \"ie9\"Microsoft recently released a public beta of their newest web browser, IE9, that has quickly become very popular.  In its first 48 hours of availability it was  downloaded 2 million times.

    \n

    You know what that means – more users are visiting your WordPress site using IE9 everyday.

    \n

    So why not take advantage of a feature that combines new capabilities in IE9 and the Windows 7 Taskbar to ask visitors to place a permanent link to your site on their Windows 7 Taskbar?

    \n

    Some real quick background.  On the Windows 7 Taskbar any icon that is placed there can be programmed by the software’s author to have interactive menu items on what is called a Jumplist.  This Jumplist typically contains shortcuts to program features and commands to provide quick access to them.

    \n

    Well with the introduction of IE9 webpages can have code added to them that will allow a visitor to drag the favicon to their taskbar and that code then adds an interactive Jumplist to the favicon as it sits on the users Windows 7 Taskbar to create those interactive features.

    \n

    Well for those of us who use WordPress as our publishing platform we know that the easiest way to add features and functionality to our websites is through the use of plugins and the breadth of developers that are out there making them.

    \n

    Well you know it was only a matter of time before the plugins started to be built to take advantage of these new features in IE9 and Windows 7.

    \n

    Let me introduce you to the IE9 Pinned Site plugin by fatihboy.  This plugin is very fresh as it was published just yesterday for its initial release and it is his first WordPress plugin.

    \n

    So installation is straight forward like most plugins – just download it from the WordPress.org Plugin site and then activate it on your site.

    \n

    You will find the simple one page settings page for this plugin under the Settings > IE9 Pinned Site menu item.

    \n

    \"ie9pinnedsitesettingsinwordpress\"

    \n

    Here you just select whether to feature your posts, categories or tags on the Jumplist for your website and how many entries you want of each.  Using those settings above this is what the Jumplist looks like for my site WindowsObserver.com:

    \n

    \"ie9pinnedsitejumplistwindowsobserver\"

    \n

    As you can see my most recent 5 posts are at the top followed by the Tasks header which provides links to 5 of my website pages.

    \n

    An additional feature of Jumplists in Windows 7 on the taskbar is the ability to pin things to them. 

    \n

    \"ie9pinnedsitejumplistwindowsobserverpinnedsite\"

    \n

    This is the same Jumplist except I have pinned one post which you see under the Pinned header.  Just click the pin icon while hovering over a Jumplist entry to pin that item to the Jumplist on your system.  The ability to pin a site on the Jumplist is in Windows 7 and its new Taskbar not in the plugin itself.

    \n

    I see a lot of potential for this plugin for customization of the Jumplist such as the name of each header area, picking what entries you want on it as far as posts, tags and categories are concerned instead of just by a numerical number and allowing you to place something from each group on the Jumplist (i.e. categories, tags and posts all being represented instead of just one).

    \n

    Don’t get me wrong this is a great initial implementation of this capability and I am pleased once again that the strong community of developers has answered the need for this so quickly after the new features are available in a new browser.

    \n

    What do you think?  Any suggestions for the author of the plugin for future updates?  Looking forward to hearing from you in the comments.

    \nTweet\";}i:38;a:7:{s:5:\"title\";s:52:\"Weblog Tools Collection: Code Snippets for WordPress\";s:4:\"guid\";s:40:\"http://weblogtoolscollection.com/?p=8707\";s:4:\"link\";s:81:\"http://weblogtoolscollection.com/archives/2010/09/26/code-snippets-for-wordpress/\";s:11:\"description\";s:1160:\"

    If you’re writing or editing your new WordPress plugin or theme, and you’re in need of a handy repository of cool and popular code snippets, WordPress Snippets is the place for you!

    \n

    Let’s pretend that you needed a way to identify logged in users.  You could hunt through the Codex for this function, or go to WordPress Snippets and quickly find this straight forward snippet.

    \n

    The incredibly simple WordPress Snippets is currently packed with forty-six useful code snippets, it appears to be growing steadily, and feedback and suggests are welcome.

    \nTweet\";s:7:\"pubdate\";s:31:\"Sun, 26 Sep 2010 13:00:48 +0000\";s:2:\"dc\";a:1:{s:7:\"creator\";s:10:\"James Huff\";}s:7:\"summary\";s:1160:\"

    If you’re writing or editing your new WordPress plugin or theme, and you’re in need of a handy repository of cool and popular code snippets, WordPress Snippets is the place for you!

    \n

    Let’s pretend that you needed a way to identify logged in users.  You could hunt through the Codex for this function, or go to WordPress Snippets and quickly find this straight forward snippet.

    \n

    The incredibly simple WordPress Snippets is currently packed with forty-six useful code snippets, it appears to be growing steadily, and feedback and suggests are welcome.

    \nTweet\";}i:39;a:7:{s:5:\"title\";s:60:\"Weblog Tools Collection: WordPress Plugin Releases for 09/25\";s:4:\"guid\";s:40:\"http://weblogtoolscollection.com/?p=8705\";s:4:\"link\";s:88:\"http://weblogtoolscollection.com/archives/2010/09/25/wordpress-plugin-releases-for-0925/\";s:11:\"description\";s:2230:\"

    New plugins

    \n

    Bungie.net Tools is a series of shortcodes for adding information from Bungie.net to WordPress sites.

    \n

    Haiku is an exceptionally simple HTML5-based audio player that inserts a text link to control playback.

    \n

    ImageMagick Engine improves the quality of re-sized images by replacing standard GD library with ImageMagick.

    \n

    Ozh’ Tweet Archiver allows you to import and archive your tweets and convert #hashtags into post tags.

    \n

    Simple URLs is a complete URL management system that allows you create, manage, and track outbound links from your site.

    \n

    Updated plugins

    \n

    DukaPress allows you to easily set up a fully featured online shop which can be used to sell digital or physical goods to customers all over the world.

    \n

    Facebook Like for Tags allows you to connect with your audience for ongoing updates and sharing based on user interest.

    \n

    Google Scribe allows you to enable Google Scribe on the WordPress comment input box.

    \n

    OSM displays maps in your WordPress blog using the OpenLayers technology.

    \n

    WP Super Cache is a static caching plugin for WordPress.

    \nTweet\";s:7:\"pubdate\";s:31:\"Sat, 25 Sep 2010 13:00:14 +0000\";s:2:\"dc\";a:1:{s:7:\"creator\";s:10:\"James Huff\";}s:7:\"summary\";s:2230:\"

    New plugins

    \n

    Bungie.net Tools is a series of shortcodes for adding information from Bungie.net to WordPress sites.

    \n

    Haiku is an exceptionally simple HTML5-based audio player that inserts a text link to control playback.

    \n

    ImageMagick Engine improves the quality of re-sized images by replacing standard GD library with ImageMagick.

    \n

    Ozh’ Tweet Archiver allows you to import and archive your tweets and convert #hashtags into post tags.

    \n

    Simple URLs is a complete URL management system that allows you create, manage, and track outbound links from your site.

    \n

    Updated plugins

    \n

    DukaPress allows you to easily set up a fully featured online shop which can be used to sell digital or physical goods to customers all over the world.

    \n

    Facebook Like for Tags allows you to connect with your audience for ongoing updates and sharing based on user interest.

    \n

    Google Scribe allows you to enable Google Scribe on the WordPress comment input box.

    \n

    OSM displays maps in your WordPress blog using the OpenLayers technology.

    \n

    WP Super Cache is a static caching plugin for WordPress.

    \nTweet\";}i:40;a:7:{s:5:\"title\";s:42:\"Publisher Blog: NOAA Mission Log on WP.com\";s:4:\"guid\";s:43:\"http://publisherblog.automattic.com/?p=1033\";s:4:\"link\";s:78:\"http://publisherblog.automattic.com/2010/09/24/noaa-mission-log-wordpress-com/\";s:11:\"description\";s:3009:\"

    The National Oceanic and Atmospheric Administration (NOAA) is now blogging on WordPress.com, with their new site missionlog.noaa.gov:
    \n\"http://missionlog.noaa.gov\"

    \n

    The goal of the site, as articulated in their first post is to provide:

    \n

    … regular updates to give you an inside look at our vessels and their crews, describe the work on board and the observations being made by the scientific personnel. Beginning today the NOAA Ship Pisces, operated by the NOAA Office of Marine and Aviation Operations will report from the Gulf of Mexico. Stay tuned!

    \n

    Recently they’ve been posting updates from the scientists at sea in the Gulf of Mexico. Those scientist are performing subsurface monitoring as part of the Deepwater Horizon oil spill response.

    \n

    [ Visit missionlog.noaa.gov ]

    \n
    \"\" \"\" \"\" \"\" \"\" \"\" \"\" \"\"\";s:7:\"pubdate\";s:31:\"Fri, 24 Sep 2010 18:55:21 +0000\";s:2:\"dc\";a:1:{s:7:\"creator\";s:16:\"Raanan Bar-Cohen\";}s:7:\"summary\";s:3009:\"

    The National Oceanic and Atmospheric Administration (NOAA) is now blogging on WordPress.com, with their new site missionlog.noaa.gov:
    \n\"http://missionlog.noaa.gov\"

    \n

    The goal of the site, as articulated in their first post is to provide:

    \n

    … regular updates to give you an inside look at our vessels and their crews, describe the work on board and the observations being made by the scientific personnel. Beginning today the NOAA Ship Pisces, operated by the NOAA Office of Marine and Aviation Operations will report from the Gulf of Mexico. Stay tuned!

    \n

    Recently they’ve been posting updates from the scientists at sea in the Gulf of Mexico. Those scientist are performing subsurface monitoring as part of the Deepwater Horizon oil spill response.

    \n

    [ Visit missionlog.noaa.gov ]

    \n
    \"\" \"\" \"\" \"\" \"\" \"\" \"\" \"\"\";}i:41;a:7:{s:5:\"title\";s:57:\"Weblog Tools Collection: Using a Native WordPress Gallery\";s:4:\"guid\";s:40:\"http://weblogtoolscollection.com/?p=8693\";s:4:\"link\";s:86:\"http://weblogtoolscollection.com/archives/2010/09/24/using-a-native-wordpress-gallery/\";s:11:\"description\";s:2368:\"

    There are many gallery plugins out there for WordPress, but did you know that WordPress has had its own gallery system since the release of version 2.5 over two years ago?

    \n

    To get started with a native WordPress gallery, you’ll need to create or edit the post or page that you want the gallery to appear in and then click the “Add an Image” button.

    \n

    \"add

    \n

    You can use this to upload all of your images at full size and WordPress will automatically generate the various sizes (including thumbnails) for you. Now, it’s important to note that once you add an image via this method while writing or editing a post or page, it will be assigned to that specific post or page, which is how WordPress keeps track of the gallery’s content. Once you have uploaded all the desired images, click the “Add an Image” button again, select the “Gallery” tab, choose your desired settings, and click the “Insert Gallery” button at the bottom to add the gallery to your post or page.

    \n

    \"gallery

    \n

    If you like getting your hands dirty, there are few more settings that you can tweak by altering the gallery shortcode in the HTML editor tab.

    \n

    Once you have your gallery setup, there are plenty of good plugins to further enhance it, like jQuery Lightbox For Native Galleries.

    \n

    What do you use to manage galleries on your blog?  If you use native WordPress galleries, what do you do to enhance them beyond their basic implementation?

    \nTweet\";s:7:\"pubdate\";s:31:\"Fri, 24 Sep 2010 13:00:43 +0000\";s:2:\"dc\";a:1:{s:7:\"creator\";s:10:\"James Huff\";}s:7:\"summary\";s:2368:\"

    There are many gallery plugins out there for WordPress, but did you know that WordPress has had its own gallery system since the release of version 2.5 over two years ago?

    \n

    To get started with a native WordPress gallery, you’ll need to create or edit the post or page that you want the gallery to appear in and then click the “Add an Image” button.

    \n

    \"add

    \n

    You can use this to upload all of your images at full size and WordPress will automatically generate the various sizes (including thumbnails) for you. Now, it’s important to note that once you add an image via this method while writing or editing a post or page, it will be assigned to that specific post or page, which is how WordPress keeps track of the gallery’s content. Once you have uploaded all the desired images, click the “Add an Image” button again, select the “Gallery” tab, choose your desired settings, and click the “Insert Gallery” button at the bottom to add the gallery to your post or page.

    \n

    \"gallery

    \n

    If you like getting your hands dirty, there are few more settings that you can tweak by altering the gallery shortcode in the HTML editor tab.

    \n

    Once you have your gallery setup, there are plenty of good plugins to further enhance it, like jQuery Lightbox For Native Galleries.

    \n

    What do you use to manage galleries on your blog?  If you use native WordPress galleries, what do you do to enhance them beyond their basic implementation?

    \nTweet\";}i:42;a:7:{s:5:\"title\";s:90:\"Weblog Tools Collection: What plugins do you find yourself using on every site you design?\";s:4:\"guid\";s:40:\"http://weblogtoolscollection.com/?p=8690\";s:4:\"link\";s:115:\"http://weblogtoolscollection.com/archives/2010/09/23/what-plugins-you-find-yourself-using-on-every-site-you-design/\";s:11:\"description\";s:722:\"

    I saw a similar post on the LinkedIn WordPress Group posted by Mary Ann and I was intrigued.

    \n

    So without further ado, I would love to read about and be linked to The Top 5 Plugins that you WordPress Genuises use in every one of your WordPress installs and why are they so important to you?

    \nTweet\";s:7:\"pubdate\";s:31:\"Thu, 23 Sep 2010 23:21:12 +0000\";s:2:\"dc\";a:1:{s:7:\"creator\";s:10:\"Mark Ghosh\";}s:7:\"summary\";s:722:\"

    I saw a similar post on the LinkedIn WordPress Group posted by Mary Ann and I was intrigued.

    \n

    So without further ado, I would love to read about and be linked to The Top 5 Plugins that you WordPress Genuises use in every one of your WordPress installs and why are they so important to you?

    \nTweet\";}i:43;a:7:{s:5:\"title\";s:26:\"Matt: Zuckerberg on Social\";s:4:\"guid\";s:21:\"http://ma.tt/?p=35752\";s:4:\"link\";s:42:\"http://ma.tt/2010/09/zuckerberg-on-social/\";s:11:\"description\";s:1160:\"

    One thing that I think is really important — that I think is context for this, is that I generally think that most other companies now are undervaluing how important social integration is. So even the companies that are starting to come around to thinking, ‘oh maybe we should do some social stuff’, I still think a lot of them are only thinking about it on a surface layer, where it’s like “OK, I have my product, maybe I’ll add two or three social features and we’ll check that box”. That’s not what social is.

    \n

    Social – you have to design it in from the ground up. These experiences, like what Zynga is doing or what a company like Quora is doing, I think that they have just a really good social integration. They’ve designed their whole product around the idea that your friends will be here with you. Everyone has a real identity for themselves. And those are fundamental building blocks.

    \n

    From TechCrunch’s Interview With Mark Zuckerberg On The “Facebook Phone”.

    \";s:7:\"pubdate\";s:31:\"Thu, 23 Sep 2010 19:47:14 +0000\";s:2:\"dc\";a:1:{s:7:\"creator\";s:4:\"Matt\";}s:7:\"summary\";s:1160:\"

    One thing that I think is really important — that I think is context for this, is that I generally think that most other companies now are undervaluing how important social integration is. So even the companies that are starting to come around to thinking, ‘oh maybe we should do some social stuff’, I still think a lot of them are only thinking about it on a surface layer, where it’s like “OK, I have my product, maybe I’ll add two or three social features and we’ll check that box”. That’s not what social is.

    \n

    Social – you have to design it in from the ground up. These experiences, like what Zynga is doing or what a company like Quora is doing, I think that they have just a really good social integration. They’ve designed their whole product around the idea that your friends will be here with you. Everyone has a real identity for themselves. And those are fundamental building blocks.

    \n

    From TechCrunch’s Interview With Mark Zuckerberg On The “Facebook Phone”.

    \";}i:44;a:7:{s:5:\"title\";s:15:\"Matt: Chartbeat\";s:4:\"guid\";s:21:\"http://ma.tt/?p=35748\";s:4:\"link\";s:31:\"http://ma.tt/2010/09/chartbeat/\";s:11:\"description\";s:449:\"

    Chartbeat is a cool real-time analytics service I’ve been enjoying using for a while, especially from the iPhone app. As just announced yesterday on AllThingsD, I’ve joined their latest round of funding and I’m looking forward to see what they do next.

    \";s:7:\"pubdate\";s:31:\"Thu, 23 Sep 2010 17:50:13 +0000\";s:2:\"dc\";a:1:{s:7:\"creator\";s:4:\"Matt\";}s:7:\"summary\";s:449:\"

    Chartbeat is a cool real-time analytics service I’ve been enjoying using for a while, especially from the iPhone app. As just announced yesterday on AllThingsD, I’ve joined their latest round of funding and I’m looking forward to see what they do next.

    \";}i:45;a:7:{s:5:\"title\";s:59:\"Weblog Tools Collection: WordPress Theme Releases for 09/23\";s:4:\"guid\";s:40:\"http://weblogtoolscollection.com/?p=8685\";s:4:\"link\";s:89:\"http://weblogtoolscollection.com/archives/2010/09/23/wordpress-theme-releases-for-0923-2/\";s:11:\"description\";s:1340:\"

    \"deep

    \n

    Deep Blue is an amazing blue style theme for WordPress with a theme options interface.

    \n

    \"gamelan\"

    \n

    Gamelan is a unique style with a custom image header, custom background, and more.

    \n

    \"news\"

    \n

    News is an advanced news theme created to highlight articles, videos, slideshows, and other media.

    \nTweet\";s:7:\"pubdate\";s:31:\"Thu, 23 Sep 2010 13:00:20 +0000\";s:2:\"dc\";a:1:{s:7:\"creator\";s:10:\"James Huff\";}s:7:\"summary\";s:1340:\"

    \"deep

    \n

    Deep Blue is an amazing blue style theme for WordPress with a theme options interface.

    \n

    \"gamelan\"

    \n

    Gamelan is a unique style with a custom image header, custom background, and more.

    \n

    \"news\"

    \n

    News is an advanced news theme created to highlight articles, videos, slideshows, and other media.

    \nTweet\";}i:46;a:7:{s:5:\"title\";s:55:\"Weblog Tools Collection: Six Apart Acquired by VideoEgg\";s:4:\"guid\";s:40:\"http://weblogtoolscollection.com/?p=8679\";s:4:\"link\";s:84:\"http://weblogtoolscollection.com/archives/2010/09/22/six-apart-acquired-by-videoegg/\";s:11:\"description\";s:2050:\"

    Six Apart has been acquired by advertising network VideoEgg and merged into the company’s rebrand as SAY Media.

    \n

    Six Apart is perhaps best known for their self-hosted blogging platform Movable Type and their hosted blogging service TypePad. Though SAY Media will not discontinue these products, it remains to be seen how the advertising network will influence their future.

    \n

    A former power-house in the blogging industry, Movable Type’s popularity began to falter when Six Apart released version 3 in 2004 with more restrictive licensing. In fact, the Google Trends graphs for Movable Type and WordPress are almost inverse of each other, showing a steady decrease in Movable Type popularity and a steady increase in WordPress popularity beginning at roughly the same time as Movable Type 3′s release.

    \n

    If you’re unsure about the future of your Movable Type or TypePad blog, now is as good a time as any to move to WordPress as your new self-hosted blogging platform or WordPress.com as your new hosted blogging service. After either installing WordPress or signing up with WordPress.com, go to Tools/Import in your admin panel and select “Movable Type and TypePad.”

    \n

    What’s your take on this acquisition? Is Six Apart’s legacy safe in the hands of SAY Media (formerly VideoEgg)?

    \nTweet\";s:7:\"pubdate\";s:31:\"Wed, 22 Sep 2010 13:00:30 +0000\";s:2:\"dc\";a:1:{s:7:\"creator\";s:10:\"James Huff\";}s:7:\"summary\";s:2050:\"

    Six Apart has been acquired by advertising network VideoEgg and merged into the company’s rebrand as SAY Media.

    \n

    Six Apart is perhaps best known for their self-hosted blogging platform Movable Type and their hosted blogging service TypePad. Though SAY Media will not discontinue these products, it remains to be seen how the advertising network will influence their future.

    \n

    A former power-house in the blogging industry, Movable Type’s popularity began to falter when Six Apart released version 3 in 2004 with more restrictive licensing. In fact, the Google Trends graphs for Movable Type and WordPress are almost inverse of each other, showing a steady decrease in Movable Type popularity and a steady increase in WordPress popularity beginning at roughly the same time as Movable Type 3′s release.

    \n

    If you’re unsure about the future of your Movable Type or TypePad blog, now is as good a time as any to move to WordPress as your new self-hosted blogging platform or WordPress.com as your new hosted blogging service. After either installing WordPress or signing up with WordPress.com, go to Tools/Import in your admin panel and select “Movable Type and TypePad.”

    \n

    What’s your take on this acquisition? Is Six Apart’s legacy safe in the hands of SAY Media (formerly VideoEgg)?

    \nTweet\";}i:47;a:7:{s:5:\"title\";s:20:\"Matt: iPad vs Kindle\";s:4:\"guid\";s:21:\"http://ma.tt/?p=35743\";s:4:\"link\";s:36:\"http://ma.tt/2010/09/ipad-vs-kindle/\";s:11:\"description\";s:155:\"

    iPad vs Kindle by Mark Jaquith. I endorse this blog post. It matches my experience exactly.

    \";s:7:\"pubdate\";s:31:\"Tue, 21 Sep 2010 15:47:11 +0000\";s:2:\"dc\";a:1:{s:7:\"creator\";s:4:\"Matt\";}s:7:\"summary\";s:155:\"

    iPad vs Kindle by Mark Jaquith. I endorse this blog post. It matches my experience exactly.

    \";}i:48;a:7:{s:5:\"title\";s:30:\"Matt: Social Network Detective\";s:4:\"guid\";s:21:\"http://ma.tt/?p=35741\";s:4:\"link\";s:46:\"http://ma.tt/2010/09/social-network-detective/\";s:11:\"description\";s:294:\"

    My relentless pursuit of the guy who robbed me. “A thief broke into my car. I used Craigslist, a dating site, MySpace and a fast food joint to track him down.”

    \";s:7:\"pubdate\";s:31:\"Tue, 21 Sep 2010 15:19:03 +0000\";s:2:\"dc\";a:1:{s:7:\"creator\";s:4:\"Matt\";}s:7:\"summary\";s:294:\"

    My relentless pursuit of the guy who robbed me. “A thief broke into my car. I used Craigslist, a dating site, MySpace and a fast food joint to track him down.”

    \";}i:49;a:7:{s:5:\"title\";s:60:\"Weblog Tools Collection: WordPress Plugin Releases for 09/21\";s:4:\"guid\";s:40:\"http://weblogtoolscollection.com/?p=8673\";s:4:\"link\";s:90:\"http://weblogtoolscollection.com/archives/2010/09/21/wordpress-plugin-releases-for-0921-2/\";s:11:\"description\";s:2337:\"

    New plugins

    \n

    One Sport Event allows you to easily get event listings for sporting events and athletic or multisport type races from your local region onto your own website.

    \n

    Simple WordPress Backup allows you to backup your WordPress database with just one click.

    \n

    WordPress Login Redirect redirects subscriber level users back to the homepage after they’ve logged in.

    \n

    WP Evernote Site Memory fully integrates Evernote’s Site Memory feature into your WordPress blog.

    \n

    WP Google Scribe provides autocomplete suggestions as you type.

    \n

    Updated plugins

    \n

    All in One Webmaster has options to add Google, Bing, Alexa, Blog Catalog, Yahoo’s Webmaster and Analytics code (meta tags).

    \n

    eShop is an accessible shopping cart plugin for WordPress, packed with various features.

    \n

    Redirection is a WordPress plugin to manage 301 redirections and keep track of 404 errors without requiring knowledge of Apache .htaccess files.

    \n

    Twitter Goodies will show your twitter tweets under the sidebar area (widget) and posts and/or pages.

    \n

    WP Social Blogroll adds a cool new blogroll that is able to display the freshness, author name and the latest post-title of your bookmarks.

    \nTweet\";s:7:\"pubdate\";s:31:\"Tue, 21 Sep 2010 13:00:25 +0000\";s:2:\"dc\";a:1:{s:7:\"creator\";s:10:\"James Huff\";}s:7:\"summary\";s:2337:\"

    New plugins

    \n

    One Sport Event allows you to easily get event listings for sporting events and athletic or multisport type races from your local region onto your own website.

    \n

    Simple WordPress Backup allows you to backup your WordPress database with just one click.

    \n

    WordPress Login Redirect redirects subscriber level users back to the homepage after they’ve logged in.

    \n

    WP Evernote Site Memory fully integrates Evernote’s Site Memory feature into your WordPress blog.

    \n

    WP Google Scribe provides autocomplete suggestions as you type.

    \n

    Updated plugins

    \n

    All in One Webmaster has options to add Google, Bing, Alexa, Blog Catalog, Yahoo’s Webmaster and Analytics code (meta tags).

    \n

    eShop is an accessible shopping cart plugin for WordPress, packed with various features.

    \n

    Redirection is a WordPress plugin to manage 301 redirections and keep track of 404 errors without requiring knowledge of Apache .htaccess files.

    \n

    Twitter Goodies will show your twitter tweets under the sidebar area (widget) and posts and/or pages.

    \n

    WP Social Blogroll adds a cool new blogroll that is able to display the freshness, author name and the latest post-title of your bookmarks.

    \nTweet\";}}s:7:\"channel\";a:5:{s:5:\"title\";s:16:\"WordPress Planet\";s:4:\"link\";s:28:\"http://planet.wordpress.org/\";s:8:\"language\";s:2:\"en\";s:11:\"description\";s:47:\"WordPress Planet - http://planet.wordpress.org/\";s:7:\"tagline\";s:47:\"WordPress Planet - http://planet.wordpress.org/\";}s:9:\"textinput\";a:0:{}s:5:\"image\";a:0:{}s:9:\"feed_type\";s:3:\"RSS\";s:12:\"feed_version\";s:3:\"2.0\";s:5:\"stack\";a:0:{}s:9:\"inchannel\";b:0;s:6:\"initem\";b:0;s:9:\"incontent\";b:0;s:11:\"intextinput\";b:0;s:7:\"inimage\";b:0;s:13:\"current_field\";s:0:\"\";s:17:\"current_namespace\";b:0;s:19:\"_CONTENT_CONSTRUCTS\";a:6:{i:0;s:7:\"content\";i:1;s:7:\"summary\";i:2;s:4:\"info\";i:3;s:5:\"title\";i:4;s:7:\"tagline\";i:5;s:9:\"copyright\";}s:4:\"etag\";s:26:\"\"22119-4cb08705-174c398\"\r\n\";s:13:\"last_modified\";s:31:\"Sat, 09 Oct 2010 15:15:17 GMT\r\n\";}',20,8,'',1,'no'),(70,0,'rss_867bd5c64f85878d03a060509cd2f92c_ts','Y',1,'1286638383',20,8,'',1,'no'),(71,0,'flickrRSS_flickrid','Y',1,'41825966@N00',20,8,'',1,'yes'),(72,0,'flickrRSS_display_type','Y',1,'user',20,8,'',1,'yes'),(73,0,'flickrRSS_display_numitems','Y',1,'6',20,8,'',1,'yes'),(74,0,'flickrRSS_display_imagesize','Y',1,'square',20,8,'',1,'yes'),(75,0,'rss_deb644104e36cfcb009457d5b2995163','Y',1,'O:9:\"MagpieRSS\":18:{s:6:\"parser\";i:0;s:12:\"current_item\";a:0:{}s:5:\"items\";a:20:{i:0;a:9:{s:5:\"title\";s:17:\"sf_X_MAMFrancisco\";s:4:\"link\";s:47:\"http://www.flickr.com/photos/mscmks/1315049732/\";s:11:\"description\";s:308:\"

    mscmks posted a photo:

    \n \n

    \"sf_X_MAMFrancisco\"

    \n\n\";s:7:\"pubdate\";s:31:\"Mon, 03 Sep 2007 13:17:50 -0700\";s:2:\"dc\";a:1:{s:10:\"date.taken\";s:25:\"2007-09-03T22:17:50-08:00\";}s:6:\"author\";s:26:\"nobody@flickr.com (mscmks)\";s:4:\"guid\";s:37:\"tag:flickr.com,2004:/photo/1315049732\";s:5:\"media\";a:2:{s:5:\"title\";s:17:\"sf_X_MAMFrancisco\";s:6:\"credit\";s:6:\"mscmks\";}s:7:\"summary\";s:308:\"

    mscmks posted a photo:

    \n \n

    \"sf_X_MAMFrancisco\"

    \n\n\";}i:1;a:9:{s:5:\"title\";s:20:\"sf_W_VictorianHouses\";s:4:\"link\";s:47:\"http://www.flickr.com/photos/mscmks/1314165875/\";s:11:\"description\";s:314:\"

    mscmks posted a photo:

    \n \n

    \"sf_W_VictorianHouses\"

    \n\n\";s:7:\"pubdate\";s:31:\"Mon, 03 Sep 2007 13:17:46 -0700\";s:2:\"dc\";a:1:{s:10:\"date.taken\";s:25:\"2007-09-03T22:17:46-08:00\";}s:6:\"author\";s:26:\"nobody@flickr.com (mscmks)\";s:4:\"guid\";s:37:\"tag:flickr.com,2004:/photo/1314165875\";s:5:\"media\";a:2:{s:5:\"title\";s:20:\"sf_W_VictorianHouses\";s:6:\"credit\";s:6:\"mscmks\";}s:7:\"summary\";s:314:\"

    mscmks posted a photo:

    \n \n

    \"sf_W_VictorianHouses\"

    \n\n\";}i:2;a:9:{s:5:\"title\";s:19:\"sf_W_VictorianHouse\";s:4:\"link\";s:47:\"http://www.flickr.com/photos/mscmks/1315048906/\";s:11:\"description\";s:312:\"

    mscmks posted a photo:

    \n \n

    \"sf_W_VictorianHouse\"

    \n\n\";s:7:\"pubdate\";s:31:\"Mon, 03 Sep 2007 13:17:42 -0700\";s:2:\"dc\";a:1:{s:10:\"date.taken\";s:25:\"2007-09-03T22:17:42-08:00\";}s:6:\"author\";s:26:\"nobody@flickr.com (mscmks)\";s:4:\"guid\";s:37:\"tag:flickr.com,2004:/photo/1315048906\";s:5:\"media\";a:2:{s:5:\"title\";s:19:\"sf_W_VictorianHouse\";s:6:\"credit\";s:6:\"mscmks\";}s:7:\"summary\";s:312:\"

    mscmks posted a photo:

    \n \n

    \"sf_W_VictorianHouse\"

    \n\n\";}i:3;a:9:{s:5:\"title\";s:11:\"sf_W_Street\";s:4:\"link\";s:47:\"http://www.flickr.com/photos/mscmks/1315048496/\";s:11:\"description\";s:296:\"

    mscmks posted a photo:

    \n \n

    \"sf_W_Street\"

    \n\n\";s:7:\"pubdate\";s:31:\"Mon, 03 Sep 2007 13:17:38 -0700\";s:2:\"dc\";a:1:{s:10:\"date.taken\";s:25:\"2007-09-03T22:17:38-08:00\";}s:6:\"author\";s:26:\"nobody@flickr.com (mscmks)\";s:4:\"guid\";s:37:\"tag:flickr.com,2004:/photo/1315048496\";s:5:\"media\";a:2:{s:5:\"title\";s:11:\"sf_W_Street\";s:6:\"credit\";s:6:\"mscmks\";}s:7:\"summary\";s:296:\"

    mscmks posted a photo:

    \n \n

    \"sf_W_Street\"

    \n\n\";}i:4;a:9:{s:5:\"title\";s:28:\"sf_W_PaintedLadies_AlamoPark\";s:4:\"link\";s:47:\"http://www.flickr.com/photos/mscmks/1314164595/\";s:11:\"description\";s:330:\"

    mscmks posted a photo:

    \n \n

    \"sf_W_PaintedLadies_AlamoPark\"

    \n\n\";s:7:\"pubdate\";s:31:\"Mon, 03 Sep 2007 13:17:34 -0700\";s:2:\"dc\";a:1:{s:10:\"date.taken\";s:25:\"2007-09-03T22:17:34-08:00\";}s:6:\"author\";s:26:\"nobody@flickr.com (mscmks)\";s:4:\"guid\";s:37:\"tag:flickr.com,2004:/photo/1314164595\";s:5:\"media\";a:2:{s:5:\"title\";s:28:\"sf_W_PaintedLadies_AlamoPark\";s:6:\"credit\";s:6:\"mscmks\";}s:7:\"summary\";s:330:\"

    mscmks posted a photo:

    \n \n

    \"sf_W_PaintedLadies_AlamoPark\"

    \n\n\";}i:5;a:9:{s:5:\"title\";s:10:\"IFA 446500\";s:4:\"link\";s:47:\"http://www.flickr.com/photos/mscmks/1315047588/\";s:11:\"description\";s:483:\"

    mscmks posted a photo:

    \n \n

    \"IFA

    \n\n

    Motivbeschreibung: San Francisco am Abend
    \nUSA, Kalifornien
    \nVG Reihe gleicher Holzhäuser, HG Hoch-
    \nhäuser, blaues Licht
    \nIFA-9192 SAN FRANCISCO,CALIFORNIA,USA

    \";s:7:\"pubdate\";s:31:\"Mon, 03 Sep 2007 13:17:30 -0700\";s:2:\"dc\";a:1:{s:10:\"date.taken\";s:25:\"2007-09-03T22:17:30-08:00\";}s:6:\"author\";s:26:\"nobody@flickr.com (mscmks)\";s:4:\"guid\";s:37:\"tag:flickr.com,2004:/photo/1315047588\";s:5:\"media\";a:4:{s:5:\"title\";s:10:\"IFA 446500\";s:11:\"description\";s:189:\"

    Motivbeschreibung: San Francisco am Abend
    \nUSA, Kalifornien
    \nVG Reihe gleicher Holzhäuser, HG Hoch-
    \nhäuser, blaues Licht
    \nIFA-9192 SAN FRANCISCO,CALIFORNIA,USA

    \";s:6:\"credit\";s:6:\"mscmks\";s:8:\"category\";s:10:\"california\";}s:7:\"summary\";s:483:\"

    mscmks posted a photo:

    \n \n

    \"IFA

    \n\n

    Motivbeschreibung: San Francisco am Abend
    \nUSA, Kalifornien
    \nVG Reihe gleicher Holzhäuser, HG Hoch-
    \nhäuser, blaues Licht
    \nIFA-9192 SAN FRANCISCO,CALIFORNIA,USA

    \";}i:6;a:9:{s:5:\"title\";s:30:\"sf_W_OceanBeach_CliffHouseView\";s:4:\"link\";s:47:\"http://www.flickr.com/photos/mscmks/1315047336/\";s:11:\"description\";s:334:\"

    mscmks posted a photo:

    \n \n

    \"sf_W_OceanBeach_CliffHouseView\"

    \n\n\";s:7:\"pubdate\";s:31:\"Mon, 03 Sep 2007 13:17:28 -0700\";s:2:\"dc\";a:1:{s:10:\"date.taken\";s:25:\"2007-09-03T22:17:28-08:00\";}s:6:\"author\";s:26:\"nobody@flickr.com (mscmks)\";s:4:\"guid\";s:37:\"tag:flickr.com,2004:/photo/1315047336\";s:5:\"media\";a:2:{s:5:\"title\";s:30:\"sf_W_OceanBeach_CliffHouseView\";s:6:\"credit\";s:6:\"mscmks\";}s:7:\"summary\";s:334:\"

    mscmks posted a photo:

    \n \n

    \"sf_W_OceanBeach_CliffHouseView\"

    \n\n\";}i:7;a:9:{s:5:\"title\";s:15:\"sf_W_Lighthouse\";s:4:\"link\";s:47:\"http://www.flickr.com/photos/mscmks/1314163567/\";s:11:\"description\";s:304:\"

    mscmks posted a photo:

    \n \n

    \"sf_W_Lighthouse\"

    \n\n\";s:7:\"pubdate\";s:31:\"Mon, 03 Sep 2007 13:17:25 -0700\";s:2:\"dc\";a:1:{s:10:\"date.taken\";s:25:\"2007-09-03T22:17:25-08:00\";}s:6:\"author\";s:26:\"nobody@flickr.com (mscmks)\";s:4:\"guid\";s:37:\"tag:flickr.com,2004:/photo/1314163567\";s:5:\"media\";a:2:{s:5:\"title\";s:15:\"sf_W_Lighthouse\";s:6:\"credit\";s:6:\"mscmks\";}s:7:\"summary\";s:304:\"

    mscmks posted a photo:

    \n \n

    \"sf_W_Lighthouse\"

    \n\n\";}i:8;a:9:{s:5:\"title\";s:17:\"sf_W_HouseEntries\";s:4:\"link\";s:47:\"http://www.flickr.com/photos/mscmks/1315046516/\";s:11:\"description\";s:308:\"

    mscmks posted a photo:

    \n \n

    \"sf_W_HouseEntries\"

    \n\n\";s:7:\"pubdate\";s:31:\"Mon, 03 Sep 2007 13:17:21 -0700\";s:2:\"dc\";a:1:{s:10:\"date.taken\";s:25:\"2007-09-03T22:17:21-08:00\";}s:6:\"author\";s:26:\"nobody@flickr.com (mscmks)\";s:4:\"guid\";s:37:\"tag:flickr.com,2004:/photo/1315046516\";s:5:\"media\";a:2:{s:5:\"title\";s:17:\"sf_W_HouseEntries\";s:6:\"credit\";s:6:\"mscmks\";}s:7:\"summary\";s:308:\"

    mscmks posted a photo:

    \n \n

    \"sf_W_HouseEntries\"

    \n\n\";}i:9;a:9:{s:5:\"title\";s:26:\"sf_W_GoldenGate_from_above\";s:4:\"link\";s:47:\"http://www.flickr.com/photos/mscmks/1314162743/\";s:11:\"description\";s:326:\"

    mscmks posted a photo:

    \n \n

    \"sf_W_GoldenGate_from_above\"

    \n\n\";s:7:\"pubdate\";s:31:\"Mon, 03 Sep 2007 13:17:17 -0700\";s:2:\"dc\";a:1:{s:10:\"date.taken\";s:25:\"2005-02-08T21:14:43-08:00\";}s:6:\"author\";s:26:\"nobody@flickr.com (mscmks)\";s:4:\"guid\";s:37:\"tag:flickr.com,2004:/photo/1314162743\";s:5:\"media\";a:2:{s:5:\"title\";s:26:\"sf_W_GoldenGate_from_above\";s:6:\"credit\";s:6:\"mscmks\";}s:7:\"summary\";s:326:\"

    mscmks posted a photo:

    \n \n

    \"sf_W_GoldenGate_from_above\"

    \n\n\";}i:10;a:9:{s:5:\"title\";s:49:\"sf_W_GoldenGate_from_BuenaVistaPark_looking_north\";s:4:\"link\";s:47:\"http://www.flickr.com/photos/mscmks/1315045888/\";s:11:\"description\";s:372:\"

    mscmks posted a photo:

    \n \n

    \"sf_W_GoldenGate_from_BuenaVistaPark_looking_north\"

    \n\n\";s:7:\"pubdate\";s:31:\"Mon, 03 Sep 2007 13:17:15 -0700\";s:2:\"dc\";a:1:{s:10:\"date.taken\";s:25:\"2007-09-03T22:17:15-08:00\";}s:6:\"author\";s:26:\"nobody@flickr.com (mscmks)\";s:4:\"guid\";s:37:\"tag:flickr.com,2004:/photo/1315045888\";s:5:\"media\";a:2:{s:5:\"title\";s:49:\"sf_W_GoldenGate_from_BuenaVistaPark_looking_north\";s:6:\"credit\";s:6:\"mscmks\";}s:7:\"summary\";s:372:\"

    mscmks posted a photo:

    \n \n

    \"sf_W_GoldenGate_from_BuenaVistaPark_looking_north\"

    \n\n\";}i:11;a:9:{s:5:\"title\";s:31:\"sf_W_GoldenGateBridge_from_down\";s:4:\"link\";s:47:\"http://www.flickr.com/photos/mscmks/1315045578/\";s:11:\"description\";s:336:\"

    mscmks posted a photo:

    \n \n

    \"sf_W_GoldenGateBridge_from_down\"

    \n\n\";s:7:\"pubdate\";s:31:\"Mon, 03 Sep 2007 13:17:13 -0700\";s:2:\"dc\";a:1:{s:10:\"date.taken\";s:25:\"2007-09-03T22:17:13-08:00\";}s:6:\"author\";s:26:\"nobody@flickr.com (mscmks)\";s:4:\"guid\";s:37:\"tag:flickr.com,2004:/photo/1315045578\";s:5:\"media\";a:2:{s:5:\"title\";s:31:\"sf_W_GoldenGateBridge_from_down\";s:6:\"credit\";s:6:\"mscmks\";}s:7:\"summary\";s:336:\"

    mscmks posted a photo:

    \n \n

    \"sf_W_GoldenGateBridge_from_down\"

    \n\n\";}i:12;a:9:{s:5:\"title\";s:60:\"sf_W_GoldenGateBridge_from_ThePalaceOfTheLegionOfHonorMuseum\";s:4:\"link\";s:47:\"http://www.flickr.com/photos/mscmks/1315045140/\";s:11:\"description\";s:394:\"

    mscmks posted a photo:

    \n \n

    \"sf_W_GoldenGateBridge_from_ThePalaceOfTheLegionOfHonorMuseum\"

    \n\n\";s:7:\"pubdate\";s:31:\"Mon, 03 Sep 2007 13:17:08 -0700\";s:2:\"dc\";a:1:{s:10:\"date.taken\";s:25:\"2007-09-03T22:17:08-08:00\";}s:6:\"author\";s:26:\"nobody@flickr.com (mscmks)\";s:4:\"guid\";s:37:\"tag:flickr.com,2004:/photo/1315045140\";s:5:\"media\";a:2:{s:5:\"title\";s:60:\"sf_W_GoldenGateBridge_from_ThePalaceOfTheLegionOfHonorMuseum\";s:6:\"credit\";s:6:\"mscmks\";}s:7:\"summary\";s:394:\"

    mscmks posted a photo:

    \n \n

    \"sf_W_GoldenGateBridge_from_ThePalaceOfTheLegionOfHonorMuseum\"

    \n\n\";}i:13;a:9:{s:5:\"title\";s:41:\"sf_W_GoldenGateBridge_from_TheMarinaGreen\";s:4:\"link\";s:47:\"http://www.flickr.com/photos/mscmks/1315044864/\";s:11:\"description\";s:356:\"

    mscmks posted a photo:

    \n \n

    \"sf_W_GoldenGateBridge_from_TheMarinaGreen\"

    \n\n\";s:7:\"pubdate\";s:31:\"Mon, 03 Sep 2007 13:17:05 -0700\";s:2:\"dc\";a:1:{s:10:\"date.taken\";s:25:\"2007-09-03T22:17:05-08:00\";}s:6:\"author\";s:26:\"nobody@flickr.com (mscmks)\";s:4:\"guid\";s:37:\"tag:flickr.com,2004:/photo/1315044864\";s:5:\"media\";a:2:{s:5:\"title\";s:41:\"sf_W_GoldenGateBridge_from_TheMarinaGreen\";s:6:\"credit\";s:6:\"mscmks\";}s:7:\"summary\";s:356:\"

    mscmks posted a photo:

    \n \n

    \"sf_W_GoldenGateBridge_from_TheMarinaGreen\"

    \n\n\";}i:14;a:9:{s:5:\"title\";s:40:\"sf_W_GoldenGateBridge_from_MarinCounty02\";s:4:\"link\";s:47:\"http://www.flickr.com/photos/mscmks/1314161063/\";s:11:\"description\";s:354:\"

    mscmks posted a photo:

    \n \n

    \"sf_W_GoldenGateBridge_from_MarinCounty02\"

    \n\n\";s:7:\"pubdate\";s:31:\"Mon, 03 Sep 2007 13:17:03 -0700\";s:2:\"dc\";a:1:{s:10:\"date.taken\";s:25:\"2007-09-03T22:17:03-08:00\";}s:6:\"author\";s:26:\"nobody@flickr.com (mscmks)\";s:4:\"guid\";s:37:\"tag:flickr.com,2004:/photo/1314161063\";s:5:\"media\";a:2:{s:5:\"title\";s:40:\"sf_W_GoldenGateBridge_from_MarinCounty02\";s:6:\"credit\";s:6:\"mscmks\";}s:7:\"summary\";s:354:\"

    mscmks posted a photo:

    \n \n

    \"sf_W_GoldenGateBridge_from_MarinCounty02\"

    \n\n\";}i:15;a:9:{s:5:\"title\";s:40:\"sf_W_GoldenGateBridge_from_MarinCounty01\";s:4:\"link\";s:47:\"http://www.flickr.com/photos/mscmks/1315044274/\";s:11:\"description\";s:354:\"

    mscmks posted a photo:

    \n \n

    \"sf_W_GoldenGateBridge_from_MarinCounty01\"

    \n\n\";s:7:\"pubdate\";s:31:\"Mon, 03 Sep 2007 13:16:59 -0700\";s:2:\"dc\";a:1:{s:10:\"date.taken\";s:25:\"2004-10-07T13:06:30-08:00\";}s:6:\"author\";s:26:\"nobody@flickr.com (mscmks)\";s:4:\"guid\";s:37:\"tag:flickr.com,2004:/photo/1315044274\";s:5:\"media\";a:2:{s:5:\"title\";s:40:\"sf_W_GoldenGateBridge_from_MarinCounty01\";s:6:\"credit\";s:6:\"mscmks\";}s:7:\"summary\";s:354:\"

    mscmks posted a photo:

    \n \n

    \"sf_W_GoldenGateBridge_from_MarinCounty01\"

    \n\n\";}i:16;a:9:{s:5:\"title\";s:39:\"sf_W_GoldenGateBridge_from_BakerBeach03\";s:4:\"link\";s:47:\"http://www.flickr.com/photos/mscmks/1314160297/\";s:11:\"description\";s:352:\"

    mscmks posted a photo:

    \n \n

    \"sf_W_GoldenGateBridge_from_BakerBeach03\"

    \n\n\";s:7:\"pubdate\";s:31:\"Mon, 03 Sep 2007 13:16:55 -0700\";s:2:\"dc\";a:1:{s:10:\"date.taken\";s:25:\"2006-09-21T20:24:15-08:00\";}s:6:\"author\";s:26:\"nobody@flickr.com (mscmks)\";s:4:\"guid\";s:37:\"tag:flickr.com,2004:/photo/1314160297\";s:5:\"media\";a:2:{s:5:\"title\";s:39:\"sf_W_GoldenGateBridge_from_BakerBeach03\";s:6:\"credit\";s:6:\"mscmks\";}s:7:\"summary\";s:352:\"

    mscmks posted a photo:

    \n \n

    \"sf_W_GoldenGateBridge_from_BakerBeach03\"

    \n\n\";}i:17;a:9:{s:5:\"title\";s:39:\"sf_W_GoldenGateBridge_from_BakerBeach02\";s:4:\"link\";s:47:\"http://www.flickr.com/photos/mscmks/1315043336/\";s:11:\"description\";s:352:\"

    mscmks posted a photo:

    \n \n

    \"sf_W_GoldenGateBridge_from_BakerBeach02\"

    \n\n\";s:7:\"pubdate\";s:31:\"Mon, 03 Sep 2007 13:16:51 -0700\";s:2:\"dc\";a:1:{s:10:\"date.taken\";s:25:\"2007-09-03T22:16:51-08:00\";}s:6:\"author\";s:26:\"nobody@flickr.com (mscmks)\";s:4:\"guid\";s:37:\"tag:flickr.com,2004:/photo/1315043336\";s:5:\"media\";a:2:{s:5:\"title\";s:39:\"sf_W_GoldenGateBridge_from_BakerBeach02\";s:6:\"credit\";s:6:\"mscmks\";}s:7:\"summary\";s:352:\"

    mscmks posted a photo:

    \n \n

    \"sf_W_GoldenGateBridge_from_BakerBeach02\"

    \n\n\";}i:18;a:9:{s:5:\"title\";s:39:\"sf_W_GoldenGateBridge_from_BakerBeach01\";s:4:\"link\";s:47:\"http://www.flickr.com/photos/mscmks/1314159679/\";s:11:\"description\";s:352:\"

    mscmks posted a photo:

    \n \n

    \"sf_W_GoldenGateBridge_from_BakerBeach01\"

    \n\n\";s:7:\"pubdate\";s:31:\"Mon, 03 Sep 2007 13:16:50 -0700\";s:2:\"dc\";a:1:{s:10:\"date.taken\";s:25:\"2006-02-11T10:45:00-08:00\";}s:6:\"author\";s:26:\"nobody@flickr.com (mscmks)\";s:4:\"guid\";s:37:\"tag:flickr.com,2004:/photo/1314159679\";s:5:\"media\";a:2:{s:5:\"title\";s:39:\"sf_W_GoldenGateBridge_from_BakerBeach01\";s:6:\"credit\";s:6:\"mscmks\";}s:7:\"summary\";s:352:\"

    mscmks posted a photo:

    \n \n

    \"sf_W_GoldenGateBridge_from_BakerBeach01\"

    \n\n\";}i:19;a:9:{s:5:\"title\";s:30:\"sf_W_GoldenGateBridge_foggy_bw\";s:4:\"link\";s:47:\"http://www.flickr.com/photos/mscmks/1315042870/\";s:11:\"description\";s:334:\"

    mscmks posted a photo:

    \n \n

    \"sf_W_GoldenGateBridge_foggy_bw\"

    \n\n\";s:7:\"pubdate\";s:31:\"Mon, 03 Sep 2007 13:16:47 -0700\";s:2:\"dc\";a:1:{s:10:\"date.taken\";s:25:\"2006-02-11T10:55:29-08:00\";}s:6:\"author\";s:26:\"nobody@flickr.com (mscmks)\";s:4:\"guid\";s:37:\"tag:flickr.com,2004:/photo/1315042870\";s:5:\"media\";a:2:{s:5:\"title\";s:30:\"sf_W_GoldenGateBridge_foggy_bw\";s:6:\"credit\";s:6:\"mscmks\";}s:7:\"summary\";s:334:\"

    mscmks posted a photo:

    \n \n

    \"sf_W_GoldenGateBridge_foggy_bw\"

    \n\n\";}}s:7:\"channel\";a:6:{s:5:\"title\";s:19:\"Uploads from mscmks\";s:4:\"link\";s:36:\"http://www.flickr.com/photos/mscmks/\";s:7:\"pubdate\";s:31:\"Mon, 03 Sep 2007 13:17:50 -0700\";s:13:\"lastbuilddate\";s:31:\"Mon, 03 Sep 2007 13:17:50 -0700\";s:9:\"generator\";s:22:\"http://www.flickr.com/\";s:7:\"tagline\";N;}s:9:\"textinput\";a:0:{}s:5:\"image\";a:3:{s:3:\"url\";s:84:\"http://farm1.staticflickr.com/40/buddyicons/41825966@N00.jpg?1136404987#41825966@N00\";s:5:\"title\";s:19:\"Uploads from mscmks\";s:4:\"link\";s:36:\"http://www.flickr.com/photos/mscmks/\";}s:9:\"feed_type\";s:3:\"RSS\";s:12:\"feed_version\";s:3:\"2.0\";s:5:\"stack\";a:0:{}s:9:\"inchannel\";b:0;s:6:\"initem\";b:0;s:9:\"incontent\";b:0;s:11:\"intextinput\";b:0;s:7:\"inimage\";b:0;s:13:\"current_field\";s:0:\"\";s:17:\"current_namespace\";b:0;s:19:\"_CONTENT_CONSTRUCTS\";a:6:{i:0;s:7:\"content\";i:1;s:7:\"summary\";i:2;s:4:\"info\";i:3;s:5:\"title\";i:4;s:7:\"tagline\";i:5;s:9:\"copyright\";}s:13:\"last_modified\";s:31:\"Mon, 03 Sep 2007 20:17:50 GMT\r\n\";}',20,8,'',1,'no'),(76,0,'rss_deb644104e36cfcb009457d5b2995163_ts','Y',1,'1378994700',20,8,'',1,'no'),(77,0,'gklpa_mydir','Y',1,'wp-content/uploads/icons/',20,8,'Location of images folder',1,'yes'),(78,0,'gklpa_showinwritepage','Y',1,'1',20,8,'Show image in Write Post Page?',1,'yes'),(79,0,'gklpa_scanrecursive','Y',1,'1',20,8,'Recursive scan of the images?',1,'yes'),(80,0,'gklpa_showincontent','Y',1,'1',20,8,'Show avatar with post content',1,'yes'); /*!40000 ALTER TABLE `mampress_options` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `mampress_post2cat` -- DROP TABLE IF EXISTS `mampress_post2cat`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `mampress_post2cat` ( `rel_id` bigint(20) NOT NULL AUTO_INCREMENT, `post_id` bigint(20) NOT NULL DEFAULT '0', `category_id` bigint(20) NOT NULL DEFAULT '0', PRIMARY KEY (`rel_id`), KEY `post_id` (`post_id`,`category_id`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `mampress_post2cat` -- LOCK TABLES `mampress_post2cat` WRITE; /*!40000 ALTER TABLE `mampress_post2cat` DISABLE KEYS */; INSERT INTO `mampress_post2cat` VALUES (1,1,1); /*!40000 ALTER TABLE `mampress_post2cat` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `mampress_postmeta` -- DROP TABLE IF EXISTS `mampress_postmeta`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `mampress_postmeta` ( `meta_id` bigint(20) NOT NULL AUTO_INCREMENT, `post_id` bigint(20) NOT NULL DEFAULT '0', `meta_key` varchar(255) DEFAULT NULL, `meta_value` text, PRIMARY KEY (`meta_id`), KEY `post_id` (`post_id`), KEY `meta_key` (`meta_key`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `mampress_postmeta` -- LOCK TABLES `mampress_postmeta` WRITE; /*!40000 ALTER TABLE `mampress_postmeta` DISABLE KEYS */; /*!40000 ALTER TABLE `mampress_postmeta` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `mampress_posts` -- DROP TABLE IF EXISTS `mampress_posts`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `mampress_posts` ( `ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `post_author` int(4) NOT NULL DEFAULT '0', `post_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `post_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `post_content` longtext NOT NULL, `post_title` text NOT NULL, `post_category` int(4) NOT NULL DEFAULT '0', `post_excerpt` text NOT NULL, `post_status` enum('publish','draft','private','static','object') NOT NULL DEFAULT 'publish', `comment_status` enum('open','closed','registered_only') NOT NULL DEFAULT 'open', `ping_status` enum('open','closed') NOT NULL DEFAULT 'open', `post_password` varchar(20) NOT NULL DEFAULT '', `post_name` varchar(200) NOT NULL DEFAULT '', `to_ping` text NOT NULL, `pinged` text NOT NULL, `post_modified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `post_modified_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `post_content_filtered` text NOT NULL, `post_parent` int(11) NOT NULL DEFAULT '0', `guid` varchar(255) NOT NULL DEFAULT '', `menu_order` int(11) NOT NULL DEFAULT '0', PRIMARY KEY (`ID`), KEY `post_name` (`post_name`), KEY `post_status` (`post_status`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `mampress_posts` -- LOCK TABLES `mampress_posts` WRITE; /*!40000 ALTER TABLE `mampress_posts` DISABLE KEYS */; INSERT INTO `mampress_posts` VALUES (1,1,'2006-10-26 23:57:59','2006-10-26 21:57:59','Welcome to WordPress. This is your first post. Edit or delete it, then start blogging!','Hello world!',0,'','publish','open','open','','hello-world','','','2006-10-26 23:57:59','2006-10-26 21:57:59','',0,'/?p=1',0); /*!40000 ALTER TABLE `mampress_posts` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `mampress_users` -- DROP TABLE IF EXISTS `mampress_users`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `mampress_users` ( `ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `user_login` varchar(60) NOT NULL DEFAULT '', `user_pass` varchar(64) NOT NULL DEFAULT '', `user_firstname` varchar(50) NOT NULL DEFAULT '', `user_lastname` varchar(50) NOT NULL DEFAULT '', `user_nickname` varchar(50) NOT NULL DEFAULT '', `user_nicename` varchar(50) NOT NULL DEFAULT '', `user_icq` int(10) unsigned NOT NULL DEFAULT '0', `user_email` varchar(100) NOT NULL DEFAULT '', `user_url` varchar(100) NOT NULL DEFAULT '', `user_ip` varchar(15) NOT NULL DEFAULT '', `user_domain` varchar(200) NOT NULL DEFAULT '', `user_browser` varchar(200) NOT NULL DEFAULT '', `user_registered` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `user_level` int(2) unsigned NOT NULL DEFAULT '0', `user_aim` varchar(50) NOT NULL DEFAULT '', `user_msn` varchar(100) NOT NULL DEFAULT '', `user_yim` varchar(50) NOT NULL DEFAULT '', `user_idmode` varchar(20) NOT NULL DEFAULT '', `user_activation_key` varchar(60) NOT NULL DEFAULT '', `user_status` int(11) NOT NULL DEFAULT '0', `user_description` longtext NOT NULL, PRIMARY KEY (`ID`), UNIQUE KEY `user_login` (`user_login`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `mampress_users` -- LOCK TABLES `mampress_users` WRITE; /*!40000 ALTER TABLE `mampress_users` DISABLE KEYS */; INSERT INTO `mampress_users` VALUES (1,'admin','5a9361b28ee51795f1e82d9054919034','','','Administrator','administrator',0,'mam@heimam.at','http://','','','','2006-10-26 23:57:59',10,'','','','nickname','',0,''); /*!40000 ALTER TABLE `mampress_users` ENABLE KEYS */; UNLOCK TABLES; -- -- Current Database: `xoops` -- CREATE DATABASE /*!32312 IF NOT EXISTS*/ `xoops` /*!40100 DEFAULT CHARACTER SET latin1 */; USE `xoops`; -- -- Table structure for table `xoops__avatar` -- DROP TABLE IF EXISTS `xoops__avatar`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `xoops__avatar` ( `avatar_id` mediumint(8) unsigned NOT NULL AUTO_INCREMENT, `avatar_file` varchar(30) NOT NULL DEFAULT '', `avatar_name` varchar(100) NOT NULL DEFAULT '', `avatar_mimetype` varchar(30) NOT NULL DEFAULT '', `avatar_created` int(10) NOT NULL DEFAULT '0', `avatar_display` tinyint(1) unsigned NOT NULL DEFAULT '0', `avatar_weight` smallint(5) unsigned NOT NULL DEFAULT '0', `avatar_type` char(1) NOT NULL DEFAULT '', PRIMARY KEY (`avatar_id`), KEY `avatar_type` (`avatar_type`,`avatar_display`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `xoops__avatar` -- LOCK TABLES `xoops__avatar` WRITE; /*!40000 ALTER TABLE `xoops__avatar` DISABLE KEYS */; /*!40000 ALTER TABLE `xoops__avatar` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `xoops__avatar_user_link` -- DROP TABLE IF EXISTS `xoops__avatar_user_link`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `xoops__avatar_user_link` ( `avatar_id` mediumint(8) unsigned NOT NULL DEFAULT '0', `user_id` mediumint(8) unsigned NOT NULL DEFAULT '0', KEY `avatar_user_id` (`avatar_id`,`user_id`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `xoops__avatar_user_link` -- LOCK TABLES `xoops__avatar_user_link` WRITE; /*!40000 ALTER TABLE `xoops__avatar_user_link` DISABLE KEYS */; /*!40000 ALTER TABLE `xoops__avatar_user_link` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `xoops__banner` -- DROP TABLE IF EXISTS `xoops__banner`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `xoops__banner` ( `bid` smallint(5) unsigned NOT NULL AUTO_INCREMENT, `cid` tinyint(3) unsigned NOT NULL DEFAULT '0', `imptotal` mediumint(8) unsigned NOT NULL DEFAULT '0', `impmade` mediumint(8) unsigned NOT NULL DEFAULT '0', `clicks` mediumint(8) unsigned NOT NULL DEFAULT '0', `imageurl` varchar(255) NOT NULL DEFAULT '', `clickurl` varchar(255) NOT NULL DEFAULT '', `date` int(10) NOT NULL DEFAULT '0', `htmlbanner` tinyint(1) NOT NULL DEFAULT '0', `htmlcode` text NOT NULL, PRIMARY KEY (`bid`), KEY `idxbannercid` (`cid`), KEY `idxbannerbidcid` (`bid`,`cid`) ) ENGINE=MyISAM AUTO_INCREMENT=4 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `xoops__banner` -- LOCK TABLES `xoops__banner` WRITE; /*!40000 ALTER TABLE `xoops__banner` DISABLE KEYS */; INSERT INTO `xoops__banner` VALUES (1,1,0,20,0,'http://xoops.mamweb.at/html/images/banners/xoops_banner.gif','http://www.xoops.org/',1008813250,0,''),(2,1,0,16,0,'http://xoops.mamweb.at/html/images/banners/xoops_banner_2.gif','http://www.xoops.org/',1008813250,0,''),(3,1,0,16,0,'http://xoops.mamweb.at/html/images/banners/banner.swf','http://www.xoops.org/',1008813250,0,''); /*!40000 ALTER TABLE `xoops__banner` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `xoops__bannerclient` -- DROP TABLE IF EXISTS `xoops__bannerclient`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `xoops__bannerclient` ( `cid` smallint(5) unsigned NOT NULL AUTO_INCREMENT, `name` varchar(60) NOT NULL DEFAULT '', `contact` varchar(60) NOT NULL DEFAULT '', `email` varchar(60) NOT NULL DEFAULT '', `login` varchar(10) NOT NULL DEFAULT '', `passwd` varchar(10) NOT NULL DEFAULT '', `extrainfo` text NOT NULL, PRIMARY KEY (`cid`), KEY `login` (`login`) ) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `xoops__bannerclient` -- LOCK TABLES `xoops__bannerclient` WRITE; /*!40000 ALTER TABLE `xoops__bannerclient` DISABLE KEYS */; INSERT INTO `xoops__bannerclient` VALUES (1,'XOOPS','XOOPS Dev Team','webmaster@xoops.org','','',''); /*!40000 ALTER TABLE `xoops__bannerclient` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `xoops__bannerfinish` -- DROP TABLE IF EXISTS `xoops__bannerfinish`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `xoops__bannerfinish` ( `bid` smallint(5) unsigned NOT NULL AUTO_INCREMENT, `cid` smallint(5) unsigned NOT NULL DEFAULT '0', `impressions` mediumint(8) unsigned NOT NULL DEFAULT '0', `clicks` mediumint(8) unsigned NOT NULL DEFAULT '0', `datestart` int(10) unsigned NOT NULL DEFAULT '0', `dateend` int(10) unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`bid`), KEY `cid` (`cid`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `xoops__bannerfinish` -- LOCK TABLES `xoops__bannerfinish` WRITE; /*!40000 ALTER TABLE `xoops__bannerfinish` DISABLE KEYS */; /*!40000 ALTER TABLE `xoops__bannerfinish` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `xoops__block_instance` -- DROP TABLE IF EXISTS `xoops__block_instance`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `xoops__block_instance` ( `instanceid` int(12) unsigned NOT NULL AUTO_INCREMENT, `bid` int(12) unsigned NOT NULL DEFAULT '0', `options` text NOT NULL, `title` varchar(255) NOT NULL DEFAULT '', `side` tinyint(1) unsigned NOT NULL DEFAULT '0', `weight` smallint(5) unsigned NOT NULL DEFAULT '0', `visible` tinyint(1) unsigned NOT NULL DEFAULT '0', `bcachetime` int(10) unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`instanceid`), KEY `join` (`instanceid`,`visible`,`weight`) ) ENGINE=MyISAM AUTO_INCREMENT=4 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `xoops__block_instance` -- LOCK TABLES `xoops__block_instance` WRITE; /*!40000 ALTER TABLE `xoops__block_instance` DISABLE KEYS */; INSERT INTO `xoops__block_instance` VALUES (1,1,'a:0:{}','User Menu',0,0,1,0),(2,2,'a:0:{}','Login',0,0,1,0),(3,5,'a:0:{}','Main Menu',0,0,1,0); /*!40000 ALTER TABLE `xoops__block_instance` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `xoops__block_module_link` -- DROP TABLE IF EXISTS `xoops__block_module_link`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `xoops__block_module_link` ( `block_id` mediumint(8) unsigned NOT NULL DEFAULT '0', `module_id` smallint(5) NOT NULL DEFAULT '0', `pageid` smallint(5) NOT NULL DEFAULT '0', PRIMARY KEY (`block_id`,`module_id`,`pageid`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `xoops__block_module_link` -- LOCK TABLES `xoops__block_module_link` WRITE; /*!40000 ALTER TABLE `xoops__block_module_link` DISABLE KEYS */; INSERT INTO `xoops__block_module_link` VALUES (1,0,0),(2,0,0),(3,0,0); /*!40000 ALTER TABLE `xoops__block_module_link` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `xoops__config` -- DROP TABLE IF EXISTS `xoops__config`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `xoops__config` ( `conf_id` mediumint(8) unsigned NOT NULL AUTO_INCREMENT, `conf_modid` smallint(5) unsigned NOT NULL DEFAULT '0', `conf_catid` smallint(5) unsigned NOT NULL DEFAULT '0', `conf_name` varchar(25) NOT NULL DEFAULT '', `conf_title` varchar(30) NOT NULL DEFAULT '', `conf_value` text NOT NULL, `conf_desc` varchar(50) NOT NULL DEFAULT '', `conf_formtype` varchar(15) NOT NULL DEFAULT '', `conf_valuetype` varchar(10) NOT NULL DEFAULT '', `conf_order` smallint(5) unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`conf_id`), KEY `conf_mod_cat_id` (`conf_modid`,`conf_catid`) ) ENGINE=MyISAM AUTO_INCREMENT=92 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `xoops__config` -- LOCK TABLES `xoops__config` WRITE; /*!40000 ALTER TABLE `xoops__config` DISABLE KEYS */; INSERT INTO `xoops__config` VALUES (1,1,1,'sitename','_MD_AM_SITENAME','mamXOOPX','_MD_AM_SITENAMEDSC','textbox','text',0),(2,1,1,'slogan','_MD_AM_SLOGAN','powered by mam','_MD_AM_SLOGANDSC','textbox','text',1),(3,1,1,'adminmail','_MD_AM_ADMINML','mam@heimam.at','_MD_AM_ADMINMLDSC','textbox','text',2),(4,1,1,'language','_MD_AM_LANGUAGE','english','_MD_AM_LANGUAGEDSC','language','other',3),(5,1,1,'startpage','_MD_AM_STARTPAGE','--','_MD_AM_STARTPAGEDSC','startpage','other',4),(6,1,1,'server_TZ','_MD_AM_SERVERTZ','1','_MD_AM_SERVERTZDSC','timezone','float',5),(7,1,1,'default_TZ','_MD_AM_DEFAULTTZ','5','_MD_AM_DEFAULTTZDSC','timezone','float',6),(8,1,1,'theme_set','_MD_AM_DTHEME','default','_MD_AM_DTHEMEDSC','theme','other',7),(9,1,1,'theme_set_admin','_MD_AM_ADMINTHEME','0','_MD_AM_ADMINTHEMEDSC','theme_admin','other',8),(10,1,1,'theme_fromfile','_MD_AM_THEMEFILE','0','_MD_AM_THEMEFILEDSC','yesno','int',9),(11,1,1,'theme_set_allowed','_MD_AM_THEMEOK','a:4:{i:0;s:7:\"default\";i:1;s:7:\"phpkaox\";i:2;s:3:\"x2t\";i:3;s:3:\"xmt\";}','_MD_AM_THEMEOKDSC','theme_multi','array',10),(12,1,1,'template_set','_MD_AM_DTPLSET','default','_MD_AM_DTPLSETDSC','tplset','other',11),(13,1,1,'anonymous','_MD_AM_ANONNAME','Anonymous','_MD_AM_ANONNAMEDSC','textbox','text',12),(14,1,1,'gzip_compression','_MD_AM_USEGZIP','0','_MD_AM_USEGZIPDSC','yesno','int',13),(15,1,1,'usercookie','_MD_AM_USERCOOKIE','xoops_user','_MD_AM_USERCOOKIEDSC','textbox','text',14),(16,1,1,'use_mysession','_MD_AM_USEMYSESS','0','_MD_AM_USEMYSESSDSC','yesno','int',15),(17,1,1,'session_expire','_MD_AM_SESSEXPIRE','15','_MD_AM_SESSEXPIREDSC','textbox','int',16),(18,1,1,'session_name','_MD_AM_SESSNAME','xoops_session','_MD_AM_SESSNAMEDSC','textbox','text',17),(19,1,1,'debug_mode','_MD_AM_DEBUGMODE','a:1:{i:0;s:1:\"1\";}','_MD_AM_DEBUGMODEDSC','select_multi','array',18),(20,1,1,'banners','_MD_AM_BANNERS','1','_MD_AM_BANNERSDSC','yesno','int',19),(21,1,1,'closesite','_MD_AM_CLOSESITE','0','_MD_AM_CLOSESITEDSC','yesno','int',20),(22,1,1,'closesite_okgrp','_MD_AM_CLOSESITEOK','a:1:{i:0;s:1:\"1\";}','_MD_AM_CLOSESITEOKDSC','group_multi','array',21),(23,1,1,'closesite_text','_MD_AM_CLOSESITETXT','The site is currently closed for maintainance. Please come back later.','_MD_AM_CLOSESITETXTDSC','textarea','text',22),(24,1,1,'my_ip','_MD_AM_MYIP','127.0.0.1','_MD_AM_MYIPDSC','textbox','text',23),(25,1,1,'use_ssl','_MD_AM_USESSL','0','_MD_AM_USESSLDSC','yesno','int',24),(26,1,1,'sslpost_name','_MD_AM_SSLPOST','xoops_ssl','_MD_AM_SSLPOSTDSC','textbox','text',25),(27,1,1,'sslloginlink','_MD_AM_SSLLINK','https://','_MD_AM_SSLLINKDSC','textbox','text',26),(28,1,1,'com_mode','_MD_AM_COMMODE','nest','_MD_AM_COMMODEDSC','select','text',27),(29,1,1,'com_order','_MD_AM_COMORDER','0','_MD_AM_COMORDERDSC','select','int',28),(30,1,1,'enable_badips','_MD_AM_DOBADIPS','0','_MD_AM_DOBADIPSDSC','yesno','int',29),(31,1,1,'bad_ips','_MD_AM_BADIPS','a:1:{i:0;s:9:\"127.0.0.1\";}','_MD_AM_BADIPSDSC','textarea','array',30),(32,1,1,'module_cache','_MD_AM_MODCACHE','a:2:{i:2;s:1:\"0\";i:3;s:1:\"0\";}','_MD_AM_MODCACHEDSC','module_cache','array',31),(33,1,3,'meta_keywords','_MD_AM_METAKEY','news, technology, headlines, xoops, xoop, nuke, myphpnuke, myphp-nuke, phpnuke, SE, geek, geeks, hacker, hackers, linux, software, download, downloads, free, community, mp3, forum, forums, bulletin, board, boards, bbs, php, survey, poll, polls, kernel, comment, comments, portal, odp, open, source, opensource, FreeSoftware, gnu, gpl, license, Unix, *nix, mysql, sql, database, databases, web site, weblog, guru, module, modules, theme, themes, cms, content management','_MD_AM_METAKEYDSC','textarea','text',32),(34,1,3,'footer','_MD_AM_FOOTER','Powered by XOOPS 2.2.3 Final © 2001-2006 The XOOPS Project','_MD_AM_FOOTERDSC','textarea','text',33),(35,1,4,'censor_enable','_MD_AM_DOCENSOR','0','_MD_AM_DOCENSORDSC','yesno','int',34),(36,1,4,'censor_words','_MD_AM_CENSORWRD','a:2:{i:0;s:4:\"fuck\";i:1;s:4:\"shit\";}','_MD_AM_CENSORWRDDSC','textarea','array',35),(37,1,4,'censor_replace','_MD_AM_CENSORRPLC','#OOPS#','_MD_AM_CENSORRPLCDSC','textbox','text',36),(38,1,3,'meta_rating','_MD_AM_METARATING','general','_MD_AM_METARATINGDSC','select','text',37),(39,1,3,'meta_author','_MD_AM_METAAUTHOR','XOOPS','_MD_AM_METAAUTHORDSC','textbox','text',38),(40,1,3,'meta_copyright','_MD_AM_METACOPYR','Copyright © 2001-2006','_MD_AM_METACOPYRDSC','textbox','text',39),(41,1,3,'meta_description','_MD_AM_METADESC','XOOPS is a dynamic Object Oriented based open source portal script written in PHP.','_MD_AM_METADESCDSC','textarea','text',40),(42,1,3,'meta_robots','_MD_AM_METAROBOTS','index,follow','_MD_AM_METAROBOTSDSC','select','text',41),(43,1,5,'enable_search','_MD_AM_DOSEARCH','1','_MD_AM_DOSEARCHDSC','yesno','int',42),(44,1,5,'keyword_min','_MD_AM_MINSEARCH','5','_MD_AM_MINSEARCHDSC','textbox','int',43),(45,1,6,'mailmethod','_MD_AM_MAILERMETHOD','mail','_MD_AM_MAILERMETHODDESC','select','text',44),(46,1,6,'sendmailpath','_MD_AM_SENDMAILPATH','/usr/sbin/sendmail','_MD_AM_SENDMAILPATHDESC','textbox','text',45),(47,1,6,'smtphost','_MD_AM_SMTPHOST','','_MD_AM_SMTPHOSTDESC','textarea','text',46),(48,1,6,'smtpuser','_MD_AM_SMTPUSER','','_MD_AM_SMTPUSERDESC','textbox','text',47),(49,1,6,'smtppass','_MD_AM_SMTPPASS','','_MD_AM_SMTPPASSDESC','password','text',48),(50,1,6,'from','_MD_AM_MAILFROM','','_MD_AM_MAILFROMDESC','textbox','text',49),(51,1,6,'fromname','_MD_AM_MAILFROMNAME','','_MD_AM_MAILFROMNAMEDESC','textbox','text',50),(52,1,6,'fromuid','_MD_AM_MAILFROMUID','1','_MD_AM_MAILFROMUIDDESC','user','int',51),(53,1,7,'auth_method','_MD_AM_AUTHMETHOD','xoops','_MD_AM_AUTHMETHODDESC','select','text',52),(54,1,7,'ldap_mail_attr','_MD_AM_LDAP_MAIL_ATTR','mail','_MD_AM_LDAP_MAIL_ATTR_DESC','textbox','text',53),(55,1,7,'ldap_name_attr','_MD_AM_LDAP_NAME_ATTR','cn','_MD_AM_LDAP_NAME_ATTR_DESC','textbox','text',54),(56,1,7,'ldap_surname_attr','_MD_AM_LDAP_SURNAME_ATTR','sn','_MD_AM_LDAP_SURNAME_ATTR_DESC','textbox','text',55),(57,1,7,'ldap_givenname_attr','_MD_AM_LDAP_GIVENNAME_ATTR','givenname','_MD_AM_LDAP_GIVENNAME_ATTR_DSC','textbox','text',56),(58,1,7,'ldap_port','_MD_AM_LDAP_PORT','389','_MD_AM_LDAP_PORT','textbox','int',57),(59,1,7,'ldap_server','_MD_AM_LDAP_SERVER','your directory server','_MD_AM_LDAP_SERVER_DESC','textbox','text',58),(60,1,7,'ldap_base_dn','_MD_AM_LDAP_BASE_DN','ou=Employees,o=Company','_MD_AM_LDAP_BASE_DN_DESC','textbox','text',59),(61,1,7,'ldap_uid_attr','_MD_AM_LDAP_UID_ATTR','uid','_MD_AM_LDAP_UID_ATTR_DESC','textbox','text',60),(62,1,7,'ldap_uid_asdn','_MD_AM_LDAP_UID_ASDN','uid_asdn','_MD_AM_LDAP_UID_ASDN_DESC','yesno','int',61),(63,1,7,'ldap_manager_dn','_MD_AM_LDAP_MANAGER_DN','manager_dn','_MD_AM_LDAP_MANAGER_DN_DESC','textbox','text',62),(64,1,7,'ldap_manager_pass','_MD_AM_LDAP_MANAGER_PASS','manager_pass','_MD_AM_LDAP_MANAGER_PASS_DESC','textbox','text',63),(65,1,7,'ldap_version','_MD_AM_LDAP_VERSION','3','_MD_AM_LDAP_VERSION_DESC','textbox','text',64),(66,2,0,'perpage','_PM_MI_PERPAGE','50','_PM_MI_PERPAGE_DESC','textbox','int',0),(67,2,0,'max_save','_PM_MI_MAXSAVE','30','_PM_MI_MAXSAVE_DESC','textbox','int',1),(68,2,0,'prunesubject','_PM_MI_PRUNESUBJECT','Messages deleted during cleanup','_PM_MI_PRUNESUBJECT_DESC','textbox','text',2),(69,2,0,'prunemessage','_PM_MI_PRUNEMESSAGE','During a cleanup of the Private Messaging, we have deleted {PM_COUNT} of the messages in your inbox to save space and resources','_PM_MI_PRUNEMESSAGE_DESC','textarea','text',3),(70,3,1,'profile_search','_PROFILE_MI_PROFILE_SEARCH','1','_PROFILE_MI_PROFILE_SEARCH_DSC','yesno','int',0),(71,3,2,'max_uname','_PROFILE_MI_MAX_UNAME','30','_PROFILE_MI_MAX_UNAME_DESC','textbox','int',1),(72,3,2,'min_uname','_PROFILE_MI_MIN_UNAME','3','_PROFILE_MI_MIN_UNAME_DESC','textbox','int',2),(73,3,1,'display_disclaimer','_PROFILE_MI_DISPLAY_DISCLAIMER','0','_PROFILE_MI_DISPLAY_DISCLAIMER_DESC','yesno','int',3),(74,3,1,'disclaimer','_PROFILE_MI_DISCLAIMER','','_PROFILE_MI_DISCLAIMER_DESC','textarea','text',4),(75,3,2,'bad_unames','_PROFILE_MI_BAD_UNAMES','a:3:{i:0;s:9:\"webmaster\";i:1;s:6:\"^xoops\";i:2;s:6:\"^admin\";}','_PROFILE_MI_BAD_UNAMES_DESC','textarea','array',5),(76,3,2,'bad_emails','_PROFILE_MI_BAD_EMAILS','a:1:{i:0;s:10:\"xoops.org$\";}','_PROFILE_MI_BAD_EMAILS_DESC','textarea','array',6),(77,3,2,'minpass','_PROFILE_MI_MINPASS','3','_PROFILE_MI_MINPASS_DESC','textbox','int',7),(78,3,1,'new_user_notify','_PROFILE_MI_NEWUNOTIFY','1','_PROFILE_MI_NEWUNOTIFY_DESC','yesno','int',8),(79,3,1,'new_user_notify_group','_PROFILE_MI_NOTIFYTO','1','_PROFILE_MI_NOTIFYTO_DESC','group','int',9),(80,3,1,'activation_type','_PROFILE_MI_ACTVTYPE','0','_PROFILE_MI_ACTVTYPE_DESC','select','int',10),(81,3,1,'activation_group','_PROFILE_MI_ACTVGROUP','1','_PROFILE_MI_ACTVGROUP_DESC','group','int',11),(82,3,2,'uname_test_level','_PROFILE_MI_UNAMELVL','0','_PROFILE_MI_UNAMELVL_DESC','select','int',12),(83,3,1,'allow_register','_PROFILE_MI_ALLOWREG','1','_PROFILE_MI_ALLOWREG_DESC','yesno','int',13),(84,3,2,'avatar_allow_upload','_PROFILE_MI_AVATARALLOW','1','_PROFILE_MI_AVATARALLOW_DESC','yesno','int',14),(85,3,2,'avatar_width','_PROFILE_MI_AVATARWIDTH','80','_PROFILE_MI_AVATARWIDTH_DESC','textbox','int',15),(86,3,2,'avatar_height','_PROFILE_MI_AVATARHEIGHT','80','_PROFILE_MI_AVATARHEIGHT_DESC','textbox','int',16),(87,3,2,'avatar_maxsize','_PROFILE_MI_AVATARMAX','35000','_PROFILE_MI_AVATARMAX_DESC','textbox','int',17),(88,3,1,'self_delete','_PROFILE_MI_SELFDELETE','1','_PROFILE_MI_SELFDELETE_DESC','yesno','int',18),(89,3,2,'avatar_minposts','_PROFILE_MI_AVATARMINPOSTS','0','_PROFILE_MI_AVATARMINPOSTS_DESC','textbox','int',19),(90,3,1,'allow_chgmail','_PROFILE_MI_ALLOWCHGMAIL','1','_PROFILE_MI_ALLOWCHGMAIL_DESC','yesno','int',20),(91,3,1,'allowed_groups','_PROFILE_MI_ALLOWVIEWACC','a:2:{i:0;s:1:\"2\";i:1;s:1:\"1\";}','_PROFILE_MI_ALLOWVIEWACC_DESC','group_multi','array',21); /*!40000 ALTER TABLE `xoops__config` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `xoops__configcategory` -- DROP TABLE IF EXISTS `xoops__configcategory`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `xoops__configcategory` ( `confcat_id` smallint(5) unsigned NOT NULL DEFAULT '0', `confcat_modid` smallint(5) unsigned NOT NULL DEFAULT '0', `confcat_name` varchar(25) NOT NULL DEFAULT '', `confcat_order` smallint(5) unsigned NOT NULL DEFAULT '0', `confcat_nameid` varchar(255) NOT NULL DEFAULT '', `confcat_description` text NOT NULL, PRIMARY KEY (`confcat_id`,`confcat_modid`), KEY `module` (`confcat_modid`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `xoops__configcategory` -- LOCK TABLES `xoops__configcategory` WRITE; /*!40000 ALTER TABLE `xoops__configcategory` DISABLE KEYS */; INSERT INTO `xoops__configcategory` VALUES (1,1,'_MD_AM_GENERAL',1,'general',''),(3,1,'_MD_AM_METAFOOTER',3,'meta',''),(4,1,'_MD_AM_CENSOR',4,'censor',''),(5,1,'_MD_AM_SEARCH',5,'search',''),(6,1,'_MD_AM_MAILER',6,'mail',''),(7,1,'_MD_AM_AUTHENTICATION',7,'auth',''),(0,2,'_MD_AM_MODULEPREF',0,'xoops_default',''),(1,3,'_PROFILE_MI_CAT_SETTINGS',1,'settings','_PROFILE_MI_CAT_SETTINGS_DSC'),(2,3,'_PROFILE_MI_CAT_USER',2,'user','_PROFILE_MI_CAT_USER_DSC'); /*!40000 ALTER TABLE `xoops__configcategory` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `xoops__configoption` -- DROP TABLE IF EXISTS `xoops__configoption`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `xoops__configoption` ( `confop_id` mediumint(8) unsigned NOT NULL AUTO_INCREMENT, `confop_name` varchar(255) NOT NULL DEFAULT '', `confop_value` varchar(255) NOT NULL DEFAULT '', `conf_id` smallint(5) unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`confop_id`), KEY `conf_id` (`conf_id`) ) ENGINE=MyISAM AUTO_INCREMENT=31 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `xoops__configoption` -- LOCK TABLES `xoops__configoption` WRITE; /*!40000 ALTER TABLE `xoops__configoption` DISABLE KEYS */; INSERT INTO `xoops__configoption` VALUES (1,'_MD_AM_DEBUGMODE0','0',19),(2,'_MD_AM_DEBUGMODE1','1',19),(3,'_MD_AM_DEBUGMODE2','2',19),(4,'_MD_AM_DEBUGMODE3','3',19),(5,'_NESTED','nest',28),(6,'_FLAT','flat',28),(7,'_THREADED','thread',28),(8,'_OLDESTFIRST','0',29),(9,'_NEWESTFIRST','1',29),(10,'_MD_AM_METAOGEN','general',38),(11,'_MD_AM_METAO14YRS','14 years',38),(12,'_MD_AM_METAOREST','restricted',38),(13,'0','_MD_AM_METAOMAT',38),(14,'1','mature',38),(15,'_MD_AM_INDEXFOLLOW','index,follow',42),(16,'_MD_AM_NOINDEXFOLLOW','noindex,follow',42),(17,'_MD_AM_INDEXNOFOLLOW','index,nofollow',42),(18,'_MD_AM_NOINDEXNOFOLLOW','noindex,nofollow',42),(19,'PHP mail()','mail',45),(20,'sendmail','sendmail',45),(21,'SMTP','smtp',45),(22,'SMTPAuth','smtpauth',45),(23,'XOOPS','xoops',53),(24,'LDAP','ldap',53),(25,'_PROFILE_MI_USERACTV','0',80),(26,'_PROFILE_MI_AUTOACTV','1',80),(27,'_PROFILE_MI_ADMINACTV','2',80),(28,'_PROFILE_MI_STRICT','0',82),(29,'_PROFILE_MI_MEDIUM','1',82),(30,'_PROFILE_MI_LIGHT','2',82); /*!40000 ALTER TABLE `xoops__configoption` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `xoops__group_permission` -- DROP TABLE IF EXISTS `xoops__group_permission`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `xoops__group_permission` ( `gperm_id` int(10) unsigned NOT NULL AUTO_INCREMENT, `gperm_groupid` smallint(5) unsigned NOT NULL DEFAULT '0', `gperm_itemid` mediumint(8) unsigned NOT NULL DEFAULT '0', `gperm_modid` mediumint(5) unsigned NOT NULL DEFAULT '0', `gperm_name` varchar(50) NOT NULL DEFAULT '', PRIMARY KEY (`gperm_id`), KEY `groupid` (`gperm_groupid`), KEY `itemid` (`gperm_itemid`), KEY `gperm_modid` (`gperm_modid`,`gperm_name`(10)) ) ENGINE=MyISAM AUTO_INCREMENT=62 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `xoops__group_permission` -- LOCK TABLES `xoops__group_permission` WRITE; /*!40000 ALTER TABLE `xoops__group_permission` DISABLE KEYS */; INSERT INTO `xoops__group_permission` VALUES (1,1,1,1,'module_admin'),(2,1,1,1,'module_read'),(3,2,1,1,'module_read'),(4,3,1,1,'module_read'),(5,1,1,1,'system_admin'),(6,1,2,1,'system_admin'),(7,1,3,1,'system_admin'),(8,1,4,1,'system_admin'),(9,1,5,1,'system_admin'),(10,1,6,1,'system_admin'),(11,1,7,1,'system_admin'),(12,1,8,1,'system_admin'),(13,1,9,1,'system_admin'),(14,1,10,1,'system_admin'),(15,1,11,1,'system_admin'),(16,1,12,1,'system_admin'),(17,1,13,1,'system_admin'),(18,1,14,1,'system_admin'),(19,1,15,1,'system_admin'),(20,1,1,1,'module_admin'),(21,1,1,1,'module_read'),(22,2,1,1,'module_read'),(23,3,1,1,'module_read'),(24,1,1,1,'block_read'),(25,2,1,1,'block_read'),(26,3,1,1,'block_read'),(27,1,2,1,'block_read'),(28,2,2,1,'block_read'),(29,3,2,1,'block_read'),(30,1,3,1,'block_read'),(31,2,3,1,'block_read'),(32,3,3,1,'block_read'),(33,1,2,1,'module_admin'),(34,1,2,1,'module_read'),(35,2,2,1,'module_read'),(36,3,2,1,'module_read'),(37,2,14,3,'profile_show'),(38,2,14,3,'profile_edit'),(39,2,15,3,'profile_show'),(40,2,15,3,'profile_edit'),(41,2,16,3,'profile_show'),(42,2,16,3,'profile_edit'),(43,2,17,3,'profile_show'),(44,2,17,3,'profile_edit'),(45,2,18,3,'profile_edit'),(46,2,19,3,'profile_show'),(47,2,19,3,'profile_edit'),(48,2,20,3,'profile_show'),(49,2,20,3,'profile_edit'),(50,2,21,3,'profile_show'),(51,2,21,3,'profile_edit'),(52,2,22,3,'profile_show'),(53,2,22,3,'profile_edit'),(54,2,23,3,'profile_show'),(55,2,23,3,'profile_edit'),(56,2,24,3,'profile_show'),(57,2,24,3,'profile_edit'),(58,1,3,1,'module_admin'),(59,1,3,1,'module_read'),(60,2,3,1,'module_read'),(61,3,3,1,'module_read'); /*!40000 ALTER TABLE `xoops__group_permission` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `xoops__groups` -- DROP TABLE IF EXISTS `xoops__groups`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `xoops__groups` ( `groupid` smallint(5) unsigned NOT NULL AUTO_INCREMENT, `name` varchar(50) NOT NULL DEFAULT '', `description` text NOT NULL, `group_type` varchar(10) NOT NULL DEFAULT '', PRIMARY KEY (`groupid`), KEY `group_type` (`group_type`) ) ENGINE=MyISAM AUTO_INCREMENT=4 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `xoops__groups` -- LOCK TABLES `xoops__groups` WRITE; /*!40000 ALTER TABLE `xoops__groups` DISABLE KEYS */; INSERT INTO `xoops__groups` VALUES (1,'Webmasters','Webmasters of this site','Admin'),(2,'Registered Users','Registered Users Group','User'),(3,'Anonymous Users','Anonymous Users Group','Anonymous'); /*!40000 ALTER TABLE `xoops__groups` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `xoops__groups_users_link` -- DROP TABLE IF EXISTS `xoops__groups_users_link`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `xoops__groups_users_link` ( `linkid` mediumint(8) unsigned NOT NULL AUTO_INCREMENT, `groupid` smallint(5) unsigned NOT NULL DEFAULT '0', `uid` mediumint(8) unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`linkid`), KEY `groupid_uid` (`groupid`,`uid`) ) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `xoops__groups_users_link` -- LOCK TABLES `xoops__groups_users_link` WRITE; /*!40000 ALTER TABLE `xoops__groups_users_link` DISABLE KEYS */; INSERT INTO `xoops__groups_users_link` VALUES (1,1,1),(2,2,1); /*!40000 ALTER TABLE `xoops__groups_users_link` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `xoops__image` -- DROP TABLE IF EXISTS `xoops__image`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `xoops__image` ( `image_id` mediumint(8) unsigned NOT NULL AUTO_INCREMENT, `image_name` varchar(30) NOT NULL DEFAULT '', `image_nicename` varchar(255) NOT NULL DEFAULT '', `image_mimetype` varchar(30) NOT NULL DEFAULT '', `image_created` int(10) unsigned NOT NULL DEFAULT '0', `image_display` tinyint(1) unsigned NOT NULL DEFAULT '0', `image_weight` smallint(5) unsigned NOT NULL DEFAULT '0', `imgcat_id` smallint(5) unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`image_id`), KEY `imgcat_id` (`imgcat_id`), KEY `image_display` (`image_display`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `xoops__image` -- LOCK TABLES `xoops__image` WRITE; /*!40000 ALTER TABLE `xoops__image` DISABLE KEYS */; /*!40000 ALTER TABLE `xoops__image` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `xoops__imagebody` -- DROP TABLE IF EXISTS `xoops__imagebody`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `xoops__imagebody` ( `image_id` mediumint(8) unsigned NOT NULL DEFAULT '0', `image_body` mediumblob, KEY `image_id` (`image_id`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `xoops__imagebody` -- LOCK TABLES `xoops__imagebody` WRITE; /*!40000 ALTER TABLE `xoops__imagebody` DISABLE KEYS */; /*!40000 ALTER TABLE `xoops__imagebody` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `xoops__imagecategory` -- DROP TABLE IF EXISTS `xoops__imagecategory`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `xoops__imagecategory` ( `imgcat_id` smallint(5) unsigned NOT NULL AUTO_INCREMENT, `imgcat_name` varchar(100) NOT NULL DEFAULT '', `imgcat_maxsize` int(8) unsigned NOT NULL DEFAULT '0', `imgcat_maxwidth` smallint(3) unsigned NOT NULL DEFAULT '0', `imgcat_maxheight` smallint(3) unsigned NOT NULL DEFAULT '0', `imgcat_display` tinyint(1) unsigned NOT NULL DEFAULT '0', `imgcat_weight` smallint(3) unsigned NOT NULL DEFAULT '0', `imgcat_type` char(1) NOT NULL DEFAULT '', `imgcat_storetype` varchar(5) NOT NULL DEFAULT '', PRIMARY KEY (`imgcat_id`), KEY `imgcat_display` (`imgcat_display`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `xoops__imagecategory` -- LOCK TABLES `xoops__imagecategory` WRITE; /*!40000 ALTER TABLE `xoops__imagecategory` DISABLE KEYS */; /*!40000 ALTER TABLE `xoops__imagecategory` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `xoops__imgset` -- DROP TABLE IF EXISTS `xoops__imgset`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `xoops__imgset` ( `imgset_id` smallint(5) unsigned NOT NULL AUTO_INCREMENT, `imgset_name` varchar(50) NOT NULL DEFAULT '', `imgset_refid` mediumint(8) unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`imgset_id`), KEY `imgset_refid` (`imgset_refid`) ) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `xoops__imgset` -- LOCK TABLES `xoops__imgset` WRITE; /*!40000 ALTER TABLE `xoops__imgset` DISABLE KEYS */; INSERT INTO `xoops__imgset` VALUES (1,'default',0); /*!40000 ALTER TABLE `xoops__imgset` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `xoops__imgset_tplset_link` -- DROP TABLE IF EXISTS `xoops__imgset_tplset_link`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `xoops__imgset_tplset_link` ( `imgset_id` smallint(5) unsigned NOT NULL DEFAULT '0', `tplset_name` varchar(50) NOT NULL DEFAULT '', KEY `tplset_name` (`tplset_name`(10)) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `xoops__imgset_tplset_link` -- LOCK TABLES `xoops__imgset_tplset_link` WRITE; /*!40000 ALTER TABLE `xoops__imgset_tplset_link` DISABLE KEYS */; INSERT INTO `xoops__imgset_tplset_link` VALUES (1,'default'); /*!40000 ALTER TABLE `xoops__imgset_tplset_link` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `xoops__imgsetimg` -- DROP TABLE IF EXISTS `xoops__imgsetimg`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `xoops__imgsetimg` ( `imgsetimg_id` mediumint(8) unsigned NOT NULL AUTO_INCREMENT, `imgsetimg_file` varchar(50) NOT NULL DEFAULT '', `imgsetimg_body` blob NOT NULL, `imgsetimg_imgset` smallint(5) unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`imgsetimg_id`), KEY `imgsetimg_imgset` (`imgsetimg_imgset`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `xoops__imgsetimg` -- LOCK TABLES `xoops__imgsetimg` WRITE; /*!40000 ALTER TABLE `xoops__imgsetimg` DISABLE KEYS */; /*!40000 ALTER TABLE `xoops__imgsetimg` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `xoops__modules` -- DROP TABLE IF EXISTS `xoops__modules`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `xoops__modules` ( `mid` smallint(5) unsigned NOT NULL AUTO_INCREMENT, `name` varchar(150) NOT NULL DEFAULT '', `version` smallint(5) unsigned NOT NULL DEFAULT '100', `last_update` int(10) unsigned NOT NULL DEFAULT '0', `weight` smallint(3) unsigned NOT NULL DEFAULT '0', `isactive` tinyint(1) unsigned NOT NULL DEFAULT '0', `dirname` varchar(25) NOT NULL DEFAULT '', `hasmain` tinyint(1) unsigned NOT NULL DEFAULT '0', `hasadmin` tinyint(1) unsigned NOT NULL DEFAULT '0', `hassearch` tinyint(1) unsigned NOT NULL DEFAULT '0', `hasconfig` tinyint(1) unsigned NOT NULL DEFAULT '0', `hascomments` tinyint(1) unsigned NOT NULL DEFAULT '0', `hasnotification` tinyint(1) unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`mid`), KEY `hasmain` (`hasmain`), KEY `hasadmin` (`hasadmin`), KEY `hassearch` (`hassearch`), KEY `hasnotification` (`hasnotification`), KEY `dirname` (`dirname`), KEY `name` (`name`(15)) ) ENGINE=MyISAM AUTO_INCREMENT=4 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `xoops__modules` -- LOCK TABLES `xoops__modules` WRITE; /*!40000 ALTER TABLE `xoops__modules` DISABLE KEYS */; INSERT INTO `xoops__modules` VALUES (1,'System',213,1149505020,1,1,'system',0,1,0,1,0,0),(2,'Private Messaging',10,1149505033,1,1,'pm',1,1,0,1,0,0),(3,'Extended Profiles',10,1149505034,1,1,'profile',1,1,0,1,0,0); /*!40000 ALTER TABLE `xoops__modules` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `xoops__newblocks` -- DROP TABLE IF EXISTS `xoops__newblocks`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `xoops__newblocks` ( `bid` mediumint(8) unsigned NOT NULL AUTO_INCREMENT, `mid` smallint(5) unsigned NOT NULL DEFAULT '0', `options` varchar(255) NOT NULL DEFAULT '', `name` varchar(255) NOT NULL DEFAULT '', `c_type` char(1) NOT NULL DEFAULT '', `isactive` tinyint(1) unsigned NOT NULL DEFAULT '0', `dirname` varchar(50) NOT NULL DEFAULT '', `func_file` varchar(50) NOT NULL DEFAULT '', `show_func` varchar(50) NOT NULL DEFAULT '', `edit_func` varchar(50) NOT NULL DEFAULT '', `template` varchar(50) NOT NULL DEFAULT '', `last_modified` int(10) unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`bid`), KEY `mid` (`mid`), KEY `active` (`bid`,`isactive`) ) ENGINE=MyISAM AUTO_INCREMENT=14 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `xoops__newblocks` -- LOCK TABLES `xoops__newblocks` WRITE; /*!40000 ALTER TABLE `xoops__newblocks` DISABLE KEYS */; INSERT INTO `xoops__newblocks` VALUES (1,1,'a:1:{i:0;s:0:\"\";}','User Menu','',1,'system','system_blocks.php','b_system_user_show','','system_block_user.html',1149505020),(2,1,'a:1:{i:0;s:0:\"\";}','Login','',1,'system','system_blocks.php','b_system_login_show','','system_block_login.html',1149505020),(3,1,'a:1:{i:0;s:0:\"\";}','Search','',1,'system','system_blocks.php','b_system_search_show','','system_block_search.html',1149505020),(4,1,'a:1:{i:0;s:0:\"\";}','Waiting Contents','',1,'system','system_blocks.php','b_system_waiting_show','','system_block_waiting.html',1149505020),(5,1,'a:1:{i:0;s:0:\"\";}','Main Menu','',1,'system','system_blocks.php','b_system_main_show','','system_block_mainmenu.html',1149505020),(6,1,'a:4:{i:0;s:3:\"320\";i:1;s:3:\"190\";i:2;s:15:\"s_poweredby.gif\";i:3;s:1:\"1\";}','Site Info','',1,'system','system_blocks.php','b_system_info_show','b_system_info_edit','system_block_siteinfo.html',1149505020),(7,1,'a:1:{i:0;s:0:\"\";}','Who\'s Online','',1,'system','system_blocks.php','b_system_online_show','','system_block_online.html',1149505020),(8,1,'a:2:{i:0;s:2:\"10\";i:1;s:1:\"1\";}','Top Posters','',1,'system','system_blocks.php','b_system_topposters_show','b_system_topposters_edit','system_block_topusers.html',1149505020),(9,1,'a:2:{i:0;s:2:\"10\";i:1;s:1:\"1\";}','New Members','',1,'system','system_blocks.php','b_system_newmembers_show','b_system_newmembers_edit','system_block_newusers.html',1149505020),(10,1,'a:1:{i:0;s:2:\"10\";}','Recent Comments','',1,'system','system_blocks.php','b_system_comments_show','b_system_comments_edit','system_block_comments.html',1149505020),(11,1,'a:1:{i:0;s:0:\"\";}','Notification Options','',1,'system','system_blocks.php','b_system_notification_show','','system_block_notification.html',1149505020),(12,1,'a:2:{i:0;s:1:\"0\";i:1;s:2:\"80\";}','Themes','',1,'system','system_blocks.php','b_system_themes_show','b_system_themes_edit','system_block_themes.html',1149505020),(13,1,'a:2:{i:0;s:0:\"\";i:1;s:1:\"1\";}','Custom Block','',1,'system','system_blocks.php','b_system_custom_show','b_system_custom_edit','system_block_dummy.html',1149505020); /*!40000 ALTER TABLE `xoops__newblocks` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `xoops__online` -- DROP TABLE IF EXISTS `xoops__online`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `xoops__online` ( `online_uid` mediumint(8) unsigned NOT NULL DEFAULT '0', `online_uname` varchar(25) NOT NULL DEFAULT '', `online_updated` int(10) unsigned NOT NULL DEFAULT '0', `online_module` smallint(5) unsigned NOT NULL DEFAULT '0', `online_ip` varchar(15) NOT NULL DEFAULT '', KEY `online_module` (`online_module`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `xoops__online` -- LOCK TABLES `xoops__online` WRITE; /*!40000 ALTER TABLE `xoops__online` DISABLE KEYS */; /*!40000 ALTER TABLE `xoops__online` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `xoops__priv_msgs` -- DROP TABLE IF EXISTS `xoops__priv_msgs`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `xoops__priv_msgs` ( `msg_id` mediumint(8) unsigned NOT NULL AUTO_INCREMENT, `msg_image` varchar(100) DEFAULT NULL, `subject` varchar(255) NOT NULL DEFAULT '', `from_userid` mediumint(8) unsigned NOT NULL DEFAULT '0', `to_userid` mediumint(8) unsigned NOT NULL DEFAULT '0', `msg_time` int(10) unsigned NOT NULL DEFAULT '0', `msg_text` text NOT NULL, `read_msg` tinyint(1) unsigned NOT NULL DEFAULT '0', `from_delete` tinyint(1) unsigned NOT NULL DEFAULT '0', `from_save` tinyint(1) unsigned NOT NULL DEFAULT '0', `to_delete` tinyint(1) unsigned NOT NULL DEFAULT '0', `to_save` tinyint(1) unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`msg_id`), KEY `to_userid` (`to_userid`), KEY `inbox` (`to_userid`,`read_msg`), KEY `outbox` (`from_userid`,`read_msg`), KEY `prune` (`msg_time`,`read_msg`,`from_save`,`to_delete`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `xoops__priv_msgs` -- LOCK TABLES `xoops__priv_msgs` WRITE; /*!40000 ALTER TABLE `xoops__priv_msgs` DISABLE KEYS */; /*!40000 ALTER TABLE `xoops__priv_msgs` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `xoops__profile_category` -- DROP TABLE IF EXISTS `xoops__profile_category`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `xoops__profile_category` ( `catid` int(12) unsigned NOT NULL AUTO_INCREMENT, `cat_title` varchar(255) NOT NULL DEFAULT '', `cat_description` text NOT NULL, `cat_weight` tinyint(4) unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`catid`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `xoops__profile_category` -- LOCK TABLES `xoops__profile_category` WRITE; /*!40000 ALTER TABLE `xoops__profile_category` DISABLE KEYS */; /*!40000 ALTER TABLE `xoops__profile_category` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `xoops__profile_fieldcategory` -- DROP TABLE IF EXISTS `xoops__profile_fieldcategory`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `xoops__profile_fieldcategory` ( `fieldid` int(12) unsigned NOT NULL DEFAULT '0', `catid` int(12) unsigned NOT NULL DEFAULT '0', `field_weight` tinyint(6) unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`fieldid`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `xoops__profile_fieldcategory` -- LOCK TABLES `xoops__profile_fieldcategory` WRITE; /*!40000 ALTER TABLE `xoops__profile_fieldcategory` DISABLE KEYS */; /*!40000 ALTER TABLE `xoops__profile_fieldcategory` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `xoops__ranks` -- DROP TABLE IF EXISTS `xoops__ranks`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `xoops__ranks` ( `rank_id` smallint(5) unsigned NOT NULL AUTO_INCREMENT, `rank_title` varchar(50) NOT NULL DEFAULT '', `rank_min` mediumint(8) unsigned NOT NULL DEFAULT '0', `rank_max` mediumint(8) unsigned NOT NULL DEFAULT '0', `rank_special` tinyint(1) unsigned NOT NULL DEFAULT '0', `rank_image` varchar(255) DEFAULT NULL, PRIMARY KEY (`rank_id`), KEY `rank_min` (`rank_min`), KEY `rank_max` (`rank_max`), KEY `rankminrankmaxranspecial` (`rank_min`,`rank_max`,`rank_special`), KEY `rankspecial` (`rank_special`) ) ENGINE=MyISAM AUTO_INCREMENT=8 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `xoops__ranks` -- LOCK TABLES `xoops__ranks` WRITE; /*!40000 ALTER TABLE `xoops__ranks` DISABLE KEYS */; INSERT INTO `xoops__ranks` VALUES (1,'Just popping in',0,20,0,'rank3e632f95e81ca.gif'),(2,'Not too shy to talk',21,40,0,'rank3dbf8e94a6f72.gif'),(3,'Quite a regular',41,70,0,'rank3dbf8e9e7d88d.gif'),(4,'Just can\'t stay away',71,150,0,'rank3dbf8ea81e642.gif'),(5,'Home away from home',151,10000,0,'rank3dbf8eb1a72e7.gif'),(6,'Moderator',0,0,1,'rank3dbf8edf15093.gif'),(7,'Webmaster',0,0,1,'rank3dbf8ee8681cd.gif'); /*!40000 ALTER TABLE `xoops__ranks` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `xoops__session` -- DROP TABLE IF EXISTS `xoops__session`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `xoops__session` ( `sess_id` varchar(32) NOT NULL DEFAULT '', `sess_updated` int(10) unsigned NOT NULL DEFAULT '0', `sess_ip` varchar(15) NOT NULL DEFAULT '', `sess_data` mediumblob NOT NULL, PRIMARY KEY (`sess_id`), KEY `updated` (`sess_updated`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `xoops__session` -- LOCK TABLES `xoops__session` WRITE; /*!40000 ALTER TABLE `xoops__session` DISABLE KEYS */; INSERT INTO `xoops__session` VALUES ('b98a7f997581c0790bfe29f8fdf0a659',1149511927,'62.178.39.180',''),('65db19e42030952d8bef5a1c6b8fd3c3',1162117648,'62.178.39.180','xoopsUserId|s:1:\"1\";xoopsUserGroups|a:2:{i:0;s:1:\"1\";i:1;s:1:\"2\";}xoopsUserLastLogin|s:10:\"1149505099\";'),('0f11fbae395ea7a25241b1d1ffd0e6cf',1162118336,'62.178.39.180',''),('d7388390237cf1c89732a424319e146f',1162142940,'62.178.39.180',''),('8ffefe87c25b583a72586bbe1cc97c77',1163279205,'62.178.39.180',''),('a02113ff7a44f22323573079a9becab0',1165361762,'62.178.39.180',''),('1a8ee54c7ce8a4e8002bb90dd3921545',1209532633,'84.112.198.40',''),('1467b09259528ef66ddddfe923000293',1244788863,'84.112.198.40',''),('a24ceb3bce95bf75cb0ca2f6e9d25bed',1251218548,'193.80.57.6',''),('3cc6081d62412690417d52acb48bedac',1254849042,'193.80.57.6',''),('4404c3dc5c24be1fe4e465ffc69af352',1308780561,'80.109.8.108',''),('8591d7a9095640da051e84da9e7ef2be',1310587225,'80.108.9.245',''),('d8dd89d81e35838327b836bf57dc5121',1310690816,'80.109.8.108',''),('dd5840328db98f9d80bb1155e209347d',1344320655,'80.108.9.245',''); /*!40000 ALTER TABLE `xoops__session` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `xoops__smiles` -- DROP TABLE IF EXISTS `xoops__smiles`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `xoops__smiles` ( `id` smallint(5) unsigned NOT NULL AUTO_INCREMENT, `code` varchar(50) NOT NULL DEFAULT '', `smile_url` varchar(100) NOT NULL DEFAULT '', `emotion` varchar(75) NOT NULL DEFAULT '', `display` tinyint(1) NOT NULL DEFAULT '0', PRIMARY KEY (`id`) ) ENGINE=MyISAM AUTO_INCREMENT=18 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `xoops__smiles` -- LOCK TABLES `xoops__smiles` WRITE; /*!40000 ALTER TABLE `xoops__smiles` DISABLE KEYS */; INSERT INTO `xoops__smiles` VALUES (1,':-D','smil3dbd4d4e4c4f2.gif','Very Happy',1),(2,':-)','smil3dbd4d6422f04.gif','Smile',1),(3,':-(','smil3dbd4d75edb5e.gif','Sad',1),(4,':-o','smil3dbd4d8676346.gif','Surprised',1),(5,':-?','smil3dbd4d99c6eaa.gif','Confused',1),(6,'8-)','smil3dbd4daabd491.gif','Cool',1),(7,':lol:','smil3dbd4dbc14f3f.gif','Laughing',1),(8,':-x','smil3dbd4dcd7b9f4.gif','Mad',1),(9,':-P','smil3dbd4ddd6835f.gif','Razz',1),(10,':oops:','smil3dbd4df1944ee.gif','Embaressed',0),(11,':cry:','smil3dbd4e02c5440.gif','Crying (very sad)',0),(12,':evil:','smil3dbd4e1748cc9.gif','Evil or Very Mad',0),(13,':roll:','smil3dbd4e29bbcc7.gif','Rolling Eyes',0),(14,';-)','smil3dbd4e398ff7b.gif','Wink',0),(15,':pint:','smil3dbd4e4c2e742.gif','Another pint of beer',0),(16,':hammer:','smil3dbd4e5e7563a.gif','ToolTimes at work',0),(17,':idea:','smil3dbd4e7853679.gif','I have an idea',0); /*!40000 ALTER TABLE `xoops__smiles` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `xoops__tplfile` -- DROP TABLE IF EXISTS `xoops__tplfile`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `xoops__tplfile` ( `tpl_id` mediumint(7) unsigned NOT NULL AUTO_INCREMENT, `tpl_refid` smallint(5) unsigned NOT NULL DEFAULT '0', `tpl_module` varchar(25) NOT NULL DEFAULT '', `tpl_tplset` varchar(50) NOT NULL DEFAULT '', `tpl_file` varchar(50) NOT NULL DEFAULT '', `tpl_desc` varchar(255) NOT NULL DEFAULT '', `tpl_lastmodified` int(10) unsigned NOT NULL DEFAULT '0', `tpl_lastimported` int(10) unsigned NOT NULL DEFAULT '0', `tpl_type` varchar(20) NOT NULL DEFAULT '', PRIMARY KEY (`tpl_id`), KEY `tpl_refid` (`tpl_refid`,`tpl_type`), KEY `tpl_tplset` (`tpl_tplset`,`tpl_file`(10)) ) ENGINE=MyISAM AUTO_INCREMENT=40 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `xoops__tplfile` -- LOCK TABLES `xoops__tplfile` WRITE; /*!40000 ALTER TABLE `xoops__tplfile` DISABLE KEYS */; INSERT INTO `xoops__tplfile` VALUES (1,1,'system','default','system_imagemanager.html','',1149505020,0,'module'),(2,1,'system','default','system_imagemanager2.html','',1149505020,0,'module'),(3,1,'system','default','system_userinfo.html','',1149505020,0,'module'),(4,1,'system','default','system_userform.html','',1149505020,0,'module'),(5,1,'system','default','system_rss.html','',1149505020,0,'module'),(6,1,'system','default','system_redirect.html','',1149505020,0,'module'),(7,1,'system','default','system_comment.html','',1149505020,0,'module'),(8,1,'system','default','system_comments_flat.html','',1149505020,0,'module'),(9,1,'system','default','system_comments_thread.html','',1149505020,0,'module'),(10,1,'system','default','system_comments_nest.html','',1149505020,0,'module'),(11,1,'system','default','system_siteclosed.html','',1149505020,0,'module'),(12,1,'system','default','system_dummy.html','Dummy template file for holding non-template contents. This should not be edited.',1149505020,0,'module'),(13,1,'system','default','system_notification_list.html','',1149505020,0,'module'),(14,1,'system','default','system_notification_select.html','',1149505020,0,'module'),(15,1,'system','default','system_error.html','Template for error pages',1149505020,0,'module'),(16,1,'system','default','system_plain.html','Plain template for displaying only page content (no logo, no banner, no blocks)',1149505020,0,'module'),(17,1,'system','default','system_admin_block.html','Blocks Administration Template',1149505020,0,'module'),(18,1,'system','default','system_block_user.html','Shows user block',1149505020,0,'block'),(19,2,'system','default','system_block_login.html','Shows login form',1149505020,0,'block'),(20,3,'system','default','system_block_search.html','Shows search form block',1149505020,0,'block'),(21,4,'system','default','system_block_waiting.html','Shows contents waiting for approval',1149505020,0,'block'),(22,5,'system','default','system_block_mainmenu.html','Shows the main navigation menu of the site',1149505020,0,'block'),(23,6,'system','default','system_block_siteinfo.html','Shows basic info about the site and a link to Recommend Us pop up window',1149505020,0,'block'),(24,7,'system','default','system_block_online.html','Displays users/guests currently online',1149505020,0,'block'),(25,8,'system','default','system_block_topusers.html','Top posters',1149505020,0,'block'),(26,9,'system','default','system_block_newusers.html','Shows most recent users',1149505020,0,'block'),(27,10,'system','default','system_block_comments.html','Shows most recent comments',1149505020,0,'block'),(28,11,'system','default','system_block_notification.html','Shows notification options',1149505020,0,'block'),(29,12,'system','default','system_block_themes.html','Shows theme selection box',1149505020,0,'block'),(30,13,'system','default','system_block_dummy.html','Custom block for manual content input',1149505020,0,'block'),(31,2,'pm','default','pm_pmlite.html','',1149505033,0,'module'),(32,2,'pm','default','pm_readpmsg.html','',1149505033,0,'module'),(33,2,'pm','default','pm_lookup.html','',1149505033,0,'module'),(34,2,'pm','default','pm_viewpmsg.html','',1149505033,0,'module'),(35,3,'profile','default','profile_admin_fieldlist.html','',1149505034,0,'module'),(36,3,'profile','default','profile_userinfo.html','',1149505034,0,'module'),(37,3,'profile','default','profile_admin_categorylist.html','',1149505034,0,'module'),(38,3,'profile','default','profile_search.html','',1149505034,0,'module'),(39,3,'profile','default','profile_results.html','',1149505034,0,'module'); /*!40000 ALTER TABLE `xoops__tplfile` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `xoops__tplset` -- DROP TABLE IF EXISTS `xoops__tplset`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `xoops__tplset` ( `tplset_id` int(7) unsigned NOT NULL AUTO_INCREMENT, `tplset_name` varchar(50) NOT NULL DEFAULT '', `tplset_desc` varchar(255) NOT NULL DEFAULT '', `tplset_credits` text NOT NULL, `tplset_created` int(10) unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`tplset_id`) ) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `xoops__tplset` -- LOCK TABLES `xoops__tplset` WRITE; /*!40000 ALTER TABLE `xoops__tplset` DISABLE KEYS */; INSERT INTO `xoops__tplset` VALUES (1,'default','XOOPS Default Template Set','',1149505020); /*!40000 ALTER TABLE `xoops__tplset` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `xoops__tplsource` -- DROP TABLE IF EXISTS `xoops__tplsource`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `xoops__tplsource` ( `tpl_id` mediumint(7) unsigned NOT NULL DEFAULT '0', `tpl_source` mediumtext NOT NULL, KEY `tpl_id` (`tpl_id`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `xoops__tplsource` -- LOCK TABLES `xoops__tplsource` WRITE; /*!40000 ALTER TABLE `xoops__tplsource` DISABLE KEYS */; INSERT INTO `xoops__tplsource` VALUES (1,'\r\n\" lang=\"<{$xoops_langcode}>\">\r\n\r\n\" />\r\n\" />\r\n<{$sitename}> <{$lang_imgmanager}>\r\n\r\n\r\n\r\n\r\n\r\n, <{$ysize}>);\">\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
    /\">/images/logo.gif\" width=\"150\" height=\"80\" alt=\"\" />
    \r\n\r\n
    \r\n \r\n \r\n \r\n\r\n <{if $show_cat > 0}>\r\n \r\n <{/if}>\r\n\r\n \r\n
    \r\n \" />\" />\r\n /imagemanager.php?target=<{$target}>&op=upload&imgcat_id=<{$show_cat}>&wysiwyg=<{$wysiwyg}>\"><{$lang_addimage}>
    \r\n
    \r\n\r\n <{if $image_total > 0}>\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n <{section name=i loop=$images}>\r\n \r\n \r\n \r\n \r\n \r\n \r\n <{/section}>\r\n
    <{$lang_imagename}><{$lang_image}><{$lang_imagemime}><{$lang_align}>
    \" /><{$images[i].nicename}>\" alt=\"\" /><{$images[i].mimetype}>\");\'>/images/alignleft.gif\" alt=\"Left\" /> \");\'>/images/aligncenter.gif\" alt=\"Center\" /> \");\'>/images/alignright.gif\" alt=\"Right\" />
    \r\n\r\n <{/if}>\r\n\r\n
    <{$pagenav}>
    \r\n\r\n
    \r\n \" type=\"button\" onclick=\"javascript:window.close();\" />\r\n
    \r\n\r\n \r\n'),(2,'\r\n\" lang=\"<{$xoops_langcode}>\">\r\n\r\n\" />\r\n\" />\r\n<{$xoops_sitename}> <{$lang_imgmanager}>\r\n<{$image_form.javascript}>\r\n\r\n\r\n\r\n, <{$ysize}>);\">\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
    /\">/images/logo.gif\" width=\"150\" height=\"80\" alt=\"\" />
    \r\n\r\n \r\n \r\n \r\n \r\n
    /imagemanager.php?target=<{$target}>&cat_id=<{$show_cat}>\"><{$lang_imgmanager}>
    \r\n\r\n
    \" id=\"<{$image_form.name}>\" action=\"<{$image_form.action}>\" method=\"<{$image_form.method}>\" <{$image_form.extra}>>\r\n \r\n \r\n <{foreach item=element from=$image_form.elements}>\r\n <{if $element.hidden != true}>\r\n \r\n \r\n \r\n \r\n <{else}>\r\n <{$element.body}>\r\n <{/if}>\r\n <{/foreach}>\r\n \r\n
    <{$element.caption}><{$element.body}>
    \r\n
    \r\n\r\n\r\n
    \r\n \" type=\"button\" onclick=\"javascript:window.close();\" />\r\n
    \r\n\r\n \r\n'),(3,'<{if $user_ownpage == true}>\r\n\r\n
    \r\n\r\n

    \r\n\r\n\r\n \r\n \r\n \r\n
    \" onclick=\"location=\'edituser.php\'\" />\r\n \" onclick=\"location=\'edituser.php?op=avatarform\'\" />\r\n \" onclick=\"location=\'viewpmsg.php\'\" />\r\n\r\n <{if $user_candelete == true}>\r\n \" onclick=\"location=\'user.php?op=delete\'\" />\r\n <{/if}>\r\n\r\n \" onclick=\"location=\'user.php?op=logout\'\" />
    \r\n
    \r\n\r\n

    \r\n<{elseif $xoops_isadmin != false}>\r\n\r\n

    \r\n\r\n\r\n \r\n \r\n
    \" onclick=\"location=\'<{$xoops_url}>/modules/system/admin.php?fct=users&uid=<{$user_uid}>&op=modifyUser\'\" />\r\n \" onclick=\"location=\'<{$xoops_url}>/modules/system/admin.php?fct=users&op=delUser&uid=<{$user_uid}>\'\" />\r\n
    \r\n\r\n

    \r\n<{/if}>\r\n\r\n\r\n \r\n \r\n \r\n \r\n
    \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
    <{$lang_allaboutuser}>
    <{$lang_avatar}>\" alt=\"Avatar\" />
    <{$lang_realname}><{$user_realname}>
    <{$lang_website}><{$user_websiteurl}>
    <{$lang_email}><{$user_email}>
    <{$lang_privmsg}><{$user_pmlink}>
    <{$lang_icq}><{$user_icq}>
    <{$lang_aim}><{$user_aim}>
    <{$lang_yim}><{$user_yim}>
    <{$lang_msnm}><{$user_msnm}>
    <{$lang_location}><{$user_location}>
    <{$lang_occupation}><{$user_occupation}>
    <{$lang_interest}><{$user_interest}>
    <{$lang_extrainfo}><{$user_extrainfo}>
    \r\n
    \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
    <{$lang_statistics}>
    <{$lang_membersince}><{$user_joindate}>
    <{$lang_rank}><{$user_rankimage}>
    <{$user_ranktitle}>
    <{$lang_posts}><{$user_posts}>
    <{$lang_lastlogin}><{$user_lastlogin}>
    \r\n
    \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
    <{$lang_signature}>
    <{$user_signature}>
    \r\n
    \r\n\r\n<{if $fields}>\r\n \r\n \r\n \r\n \r\n
    \r\n \r\n <{foreach item=field from=$fields}>\r\n \r\n \r\n \r\n \r\n <{/foreach}>\r\n
    <{$field.title}><{$field.value}>
    \r\n
    \r\n<{/if}>\r\n\r\n\r\n<{foreach item=module from=$modules}>\r\n\r\n

    \r\n

    <{$module.name}>

    \r\n\r\n \r\n <{foreach item=result from=$module.results}>\r\n\r\n \" alt=\"<{$module.name}>\" />\"><{$result.title}>
    (<{$result.time}>)
    \r\n\r\n <{/foreach}>\r\n \r\n\r\n<{$module.showall_link}>\r\n

    \r\n\r\n<{/foreach}>\r\n'),(4,'
    \r\n <{$lang_login}>\r\n
    \r\n <{$lang_username}> \" />
    \r\n <{$lang_password}>
    \r\n \r\n \" />\r\n \" />\r\n
    \r\n \r\n
    <{$lang_notregister}>
    \r\n
    \r\n\r\n
    \r\n\r\n
    \r\n <{$lang_lostpassword}>\r\n

    <{$lang_noproblem}>
    \r\n
    /lostpass.php\" method=\"post\">\r\n <{$lang_youremail}>   \" />\" />\r\n
    \r\n
    \r\n
    \r\n/modules/profile/activate.php\" title=\"<{$smarty.const._US_RESENDACTIVATIONMAIL}>\"><{$smarty.const._US_RESENDACTIVATIONMAIL}>'),(5,'\r\n<{if $xoops_rsscss}>\r\n \"?>\r\n<{/if}>\r\n\r\n \r\n <{$channel_title}>\r\n <{$channel_link}>\r\n <{$channel_desc}>\r\n <{$channel_lastbuild}>\r\n http://backend.userland.com/rss/\r\n <{$channel_generator}>\r\n <{$channel_category}>\r\n <{$channel_editor}>\r\n <{$channel_webmaster}>\r\n <{$channel_language}>\r\n <{if $image_url != \"\"}>\r\n \r\n <{$channel_title}>\r\n <{$image_url}>\r\n <{$channel_link}>\r\n <{$image_width}>\r\n <{$image_height}>\r\n \r\n <{/if}>\r\n <{foreach item=item from=$items}>\r\n \r\n <{$item.title}>\r\n <{$item.link}>\r\n <{$item.description}>\r\n <{$item.pubdate}>\r\n <{$item.guid}>\r\n \r\n <{/foreach}>\r\n \r\n'),(6,'
    \r\n

    <{$message}>

    \r\n

    <{$lang_ifnotreload}>

    \r\n
    '),(7,'
    \r\n
    \r\n

    \"><{$comment.image}><{$comment.title}>

    \r\n \r\n \r\n
    \r\n <{$lang_posted}>: <{$comment.date_posted}>  <{$lang_updated}>: <{$comment.date_modified}>\r\n
    \r\n\r\n <{if $comment.poster.id != 0}>\r\n
    \r\n /<{$comment.poster.avatar}>\" alt=\"\" />
    \r\n <{$comment.poster.uname}>
    \r\n /<{$comment.poster.rank_image}>\" alt=\"\" />
    \r\n <{$comment.poster.rank_title}>
    \r\n <{$lang_joined}>: <{$comment.poster.regdate}>
    \r\n <{$lang_from}>: <{$comment.poster.from}>
    \r\n <{$lang_posts}>: <{$comment.poster.postnum}>
    \r\n <{$comment.poster.status}>\r\n
    \r\n <{/if}>\r\n \r\n
    \r\n <{$comment.text}>\r\n
    \r\n\r\n
    '),(8,'\r\n\r\n\r\n\r\n
    \r\n <{foreach item=comment from=$comments}>\r\n <{include file=\"db:system_comment.html\" comment=$comment}>\r\n <{/foreach}>\r\n
    '),(9,'<{section name=i loop=$comments}>\r\n
    \r\n\r\n \r\n \r\n\r\n
    \r\n <{include file=\"db:system_comment.html\" comment=$comments[i]}>\r\n
    \r\n\r\n<{if $show_threadnav == true}>\r\n\r\n<{/if}>\r\n\r\n<{if $comments[i].show_replies == true}>\r\n\r\n
    \r\n\r\n \r\n \r\n \r\n \r\n \r\n <{foreach item=reply from=$comments[i].replies}>\r\n \r\n \r\n \r\n \r\n \r\n <{/foreach}>\r\n
    <{$lang_subject}><{$lang_poster}><{$lang_posted}>
    <{$reply.prefix}> &com_id=<{$reply.id}>&com_rootid=<{$reply.root_id}>\"><{$reply.title}><{$reply.poster.uname}><{$reply.date_posted}>
    \r\n\r\n<{/if}>\r\n\r\n<{/section}>'),(10,'<{section name=i loop=$comments}>\r\n
    \r\n\r\n \r\n \r\n\r\n
    \r\n <{include file=\"db:system_comment.html\" comment=$comments[i]}>\r\n
    \r\n\r\n\r\n<{foreach item=reply from=$comments[i].replies}>\r\n
    \r\n\r\n \r\n \r\n \r\n \r\n
    \">\r\n \r\n \r\n \r\n \r\n
    \r\n <{include file=\"db:system_comment.html\" comment=$reply}>\r\n
    \r\n
    \r\n<{/foreach}>\r\n\r\n<{/section}>'),(11,'\r\n \r\n \r\n \r\n
    <{$lang_siteclosemsg}>
    \r\n \r\n
    /user.php\" method=\"post\">\r\n \r\n \r\n \r\n \r\n
    \r\n
    \r\n <{$lang_login}>\r\n <{$lang_username}> \" />
    \r\n <{$lang_password}>
    \r\n \r\n \" />\r\n
    \r\n
    \r\n
    '),(12,'<{$dummy_content}>'),(13,'

    <{$lang_activenotifications}>

    \r\n
    \r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n <{foreach item=module from=$modules}>\r\n \r\n \r\n \r\n \r\n <{foreach item=category from=$module.categories}>\r\n <{foreach item=item from=$category.items}>\r\n <{foreach item=notification from=$item.notifications}>\r\n \r\n <{cycle values=odd,even assign=class}>\r\n \r\n \r\n \r\n \r\n \r\n \r\n <{/foreach}>\r\n <{/foreach}>\r\n <{/foreach}>\r\n <{/foreach}>\r\n \r\n \r\n \r\n
    \" /><{$lang_event}><{$lang_category}><{$lang_itemid}><{$lang_itemname}>
    ]\" id=\"del_mod[]\" onclick=\"xoopsCheckGroup(\'notificationlist\', \'del_mod[<{$module.id}>]\', \'del_not[<{$module.id}>][]\');\" type=\"checkbox\" value=\"<{$module.id}>\" /><{$lang_module}>: <{$module.name}>
    \">][]\" id=\"del_not[<{$module.id}>][]\" value=\"<{$notification.id}>\" />\"><{$notification.event_title}>\"><{$notification.category_title}>\"><{if $item.id != 0}><{$item.id}><{/if}>\"><{if $item.id != 0}><{if $item.url != \'\'}>\"><{/if}><{$item.name}><{if $item.url != \'\'}><{/if}><{/if}>
    \r\n \" />\r\n \" />\r\n \" />\r\n \" />\r\n
    \r\n
    '),(14,'<{if $xoops_notification.show}>\r\n

    \r\n\r\n/themes/default/images/plus.gif\" onClick=\"toggle(\'notifs_form\');swapimage(\'swap\');\" />\r\n\r\n<{$lang_notificationoptions}>

    \r\n\r\n
    \" method=\"post\">\r\n\" />\r\n<{$xoops_notification.token}>\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n <{foreach name=outer item=category from=$xoops_notification.categories}>\r\n <{foreach name=inner item=event from=$category.events}>\r\n \r\n <{if $smarty.foreach.inner.first}>\r\n \r\n <{/if}>\r\n \r\n \r\n \r\n <{/foreach}>\r\n <{/foreach}>\r\n \r\n \r\n \r\n
    <{$lang_notificationoptions}>
    <{$lang_category}>\" /><{$lang_events}>
    \"><{$category.title}>\r\n <{counter assign=index}>\r\n ][params]\" value=\"<{$category.name}>,<{$category.itemid}>,<{$event.name}>\" />\r\n \" name=\"not_list[<{$index}>][status]\" value=\"1\" <{if $event.subscribed}>checked=\"checked\"<{/if}> />\r\n <{$event.caption}>
    \" />
    \r\n
    \r\n<{$lang_notificationmethodis}>: <{$user_method}>  [\"><{$lang_change}>]\r\n
    \r\n
    \r\n<{/if}>'),(15,'
    <{$errormsg}>
    '),(16,'\r\n\" lang=\"<{$xoops_langcode}>\">\r\n\r\n\" />\r\n\" />\r\n\" />\r\n\" />\r\n\" />\r\n\" />\r\n\" />\r\n\" />\r\n\r\n<{$xoops_sitename}> - <{$xoops_pagetitle}>\r\n/xoops.css\" />\r\n\" />\r\n\r\n<{$xoops_module_header}>\r\n\r\n\r\n\r\n
    \r\n <{$xoops_contents}>\r\n
    \r\n\r\n'),(17,'

    <{$smarty.const._AM_BADMIN}>

    \r\n\r\n
    \r\n
    \" id=\"<{$newform.name}>\" action=\"<{$newform.action}>\" method=\"<{$newform.method}>\" <{$newform.extra}> >\r\n <{foreach item=element from=$newform.elements}>\r\n <{if $element.hidden != true}>\r\n <{$element.caption}> <{$element.body}>\r\n <{else}>\r\n <{$element.body}>\r\n <{/if}>\r\n <{/foreach}>\r\n
    \r\n
    \r\n\r\n
    \" id=\"<{$blockform.name}>\" action=\"<{$blockform.action}>\" method=\"<{$blockform.method}>\" <{$blockform.extra}> >\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n <{foreach item=instance from=$instances}>\r\n \'>\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n <{/foreach}>\r\n \r\n \r\n \r\n \r\n
    <{$smarty.const._AM_BLKDESC}><{$smarty.const._AM_TITLE}><{$smarty.const._AM_MODULE}><{$smarty.const._AM_SIDE}><{$smarty.const._AM_WEIGHT}><{$smarty.const._AM_VISIBLEIN}><{$smarty.const._AM_ACTION}>
    <{$instance.title}><{$instance.block_name}><{$instance.module_name}>\r\n \r\n \r\n ]\' value=\'<{$instance.weight}>\' size=\'5\' maxlength=\'5\' />\r\n \r\n \r\n &selmod=<{$selmod}>\'><{$smarty.const._EDIT}>\r\n  &selmod=<{$selmod}>\'><{$smarty.const._DELETE}>\r\n
    \r\n <{foreach item=element from=$blockform.elements}>\r\n <{if $element.hidden != true}>\r\n <{$element.caption}> <{$element.body}>\r\n <{else}>\r\n <{$element.body}>\r\n <{/if}>\r\n <{/foreach}>\r\n
    \r\n
    '),(18,'\r\n \r\n \r\n \r\n
    \r\n /user.php\"><{$block.lang_youraccount}>\r\n /edituser.php\"><{$block.lang_editaccount}>\r\n <{if $block.lang_inbox}>\r\n /modules/pm/\"><{$block.lang_inbox}>\r\n <{/if}>\r\n /notifications.php\"><{$block.lang_notifications}>\r\n /user.php?op=logout\"><{$block.lang_logout}>\r\n <{if $block.admin}>\r\n /admin.php\"><{$block.lang_adminmenu}>\r\n <{/if}>\r\n
    '),(19,'
    /user.php\" method=\"post\">\r\n <{$block.lang_username}>
    \r\n \" maxlength=\"25\" />
    \r\n <{$block.lang_password}>
    \r\n
    \r\n \r\n \" />\r\n \r\n \" />
    \r\n <{$block.sslloginlink}>\r\n
    \r\n/user.php#lost\"><{$block.lang_lostpass}>\r\n

    \r\n/register.php\"><{$block.lang_registernow}>'),(20,'
    /search.php\" method=\"get\">\r\n
    \" />\r\n <{if $block.modid > 1}>\r\n \" />\r\n <{/if}>\r\n
    \r\n/search.php\"><{$block.lang_advsearch}>'),(21,''),(22,'\r\n \r\n \r\n \r\n
    \r\n /\"><{$block.lang_home}>\r\n \r\n <{foreach item=module from=$block.modules}>\r\n /modules/<{$module.directory}>/\"><{$module.name}>\r\n <{foreach item=sublink from=$module.sublinks}>\r\n \"><{$sublink.name}>\r\n <{/foreach}>\r\n <{/foreach}>\r\n \r\n
    '),(23,'\r\n\r\n <{if $block.showgroups == true}>\r\n\r\n \r\n <{foreach item=group from=$block.groups}>\r\n \r\n \r\n \r\n\r\n \r\n <{foreach item=user from=$group.users}>\r\n \r\n \r\n \r\n <{/foreach}>\r\n \r\n\r\n <{/foreach}>\r\n \r\n <{/if}>\r\n
    <{$group.name}>
    \" alt=\"\" width=\"32\" />
    /userinfo.php?uid=<{$user.id}>\"><{$user.name}>
    <{$user.msglink}>
    \r\n\r\n
    \r\n\r\n
    \r\n \" alt=\"\" border=\"0\" />
    <{$block.recommendlink}>\r\n
    '),(24,'<{$block.online_total}>

    <{$block.lang_members}>: <{$block.online_members}>
    <{$block.lang_guests}>: <{$block.online_guests}>

    <{$block.online_names}> /misc.php?action=showpopups&type=online\',\'Online\',420,350);\"><{$block.lang_more}>'),(25,'\r\n <{foreach item=user from=$block.users}>\r\n \" valign=\"middle\">\r\n \r\n \r\n \r\n \r\n <{/foreach}>\r\n
    <{$user.rank}>\r\n <{if $user.avatar != \"\"}>\r\n \" alt=\"\" width=\"32\" />
    \r\n <{/if}>\r\n /userinfo.php?uid=<{$user.id}>\"><{$user.name}>\r\n
    <{$user.posts}>
    '),(26,'\r\n <{foreach item=user from=$block.users}>\r\n \" valign=\"middle\">\r\n \r\n \r\n \r\n <{/foreach}>\r\n
    \r\n <{if $user.avatar != \"\"}>\r\n \" alt=\"\" width=\"32\" />
    \r\n <{/if}>\r\n /userinfo.php?uid=<{$user.id}>\"><{$user.name}>\r\n
    <{$user.joindate}>
    '),(27,'\r\n <{foreach item=comment from=$block.comments}>\r\n \">\r\n \r\n \r\n \r\n \r\n \r\n \r\n <{/foreach}>\r\n
    /images/<{$comment.icon}>\" alt=\"\" /><{$comment.title}><{$comment.module}><{$comment.poster}><{$comment.time}>
    '),(28,'
    \" method=\"post\">\r\n\r\n <{foreach item=category from=$block.categories}>\r\n <{foreach name=inner item=event from=$category.events}>\r\n <{if $smarty.foreach.inner.first}>\r\n \r\n \r\n \r\n <{/if}>\r\n \r\n \r\n \r\n \r\n <{/foreach}>\r\n <{/foreach}>\r\n \r\n \r\n \r\n
    <{$category.title}>
    <{counter assign=index}>][params]\" value=\"<{$category.name}>,<{$category.itemid}>,<{$event.name}>\" />][status]\" value=\"1\" <{if $event.subscribed}>checked=\"checked\"<{/if}> /><{$event.caption}>
    \">\" name=\"XOOPS_TOKEN_REQUEST\" />\" />
    \r\n
    '),(29,'
    \r\n
    \r\n<{$block.theme_select}>\r\n
    \r\n
    '),(30,'<{$block.content}>'),(31,'<{$pmform.javascript}>\r\n
    \" id=\"<{$pmform.name}>\" action=\"<{$pmform.action}>\" method=\"<{$pmform.method}>\" <{$pmform.extra}> >\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
    <{$smarty.const._PM_TO}><{if $pmform.elements.to_userid.hidden != 1}><{$pmform.elements.to_userid.body}><{/if}><{$to_username}>
    <{$smarty.const._PM_SUBJECTC}><{$pmform.elements.subject.body}>
    <{$smarty.const._PM_MESSAGEC}><{$pmform.elements.message.body}>
    <{$smarty.const._PM_SAVEINOUTBOX}><{$pmform.elements.savecopy.body}>
     \r\n <{foreach item=element from=$pmform.elements}>\r\n <{if $element.hidden == 1}>\r\n <{$element.body}>\r\n <{/if}>\r\n <{/foreach}>\r\n <{$pmform.elements.submit.body}> \r\n <{$pmform.elements.reset.body}> \r\n <{$pmform.elements.cancel.body}>\r\n
    \r\n
    '),(32,'
    \r\n

    <{$smarty.const._PM_PRIVATEMESSAGE}>

    \r\n

    \r\n<{if $op==out}>\r\n <{$smarty.const._PM_OUTBOX}> \r\n<{elseif $op == \"save\"}>\r\n <{$smarty.const._PM_SAVEBOX}> \r\n<{else}>\r\n <{$smarty.const._PM_INBOX}> \r\n<{/if}>\r\n\r\n<{if $message}>\r\n »» <{$message.subject}>
    \r\n
    \" id=\"<{$pmform.name}>\" action=\"<{$pmform.action}>\" method=\"<{$pmform.method}>\" <{$pmform.extra}> >\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
    <{if $op==out}><{$smarty.const._PM_TO}><{else}><{$smarty.const._PM_FROM}><{/if}>
    \r\n <{if ( $poster != false ) }>\r\n /userinfo.php?uid=<{$poster->getVar(\"uid\")}>\'><{$poster->getVar(\"uname\")}>
    \r\n <{if ( $poster->getVar(\"user_avatar\") != \"\" ) }>\r\n /uploads/<{$poster->getVar(\"user_avatar\")}>\' alt=\'\' />
    \r\n <{/if}>\r\n <{if ( $poster->getVar(\"user_from\") != \"\" ) }>\r\n <{$smarty.const._PM_FROMC}><{$poster->getVar(\"user_from\")}>

    \r\n <{/if}>\r\n <{if ( $poster->isOnline() ) }>\r\n <{$smarty.const._PM_ONLINE}>

    \r\n <{/if}>\r\n <{else}>\r\n <{$anonymous}>\r\n <{/if}>\r\n
    \r\n /images/subject/<{$message.msg_image}>\' alt=\'\' /> <{$smarty.const._PM_SENTC}><{$message.msg_time}>\r\n
    \r\n <{$message.subject}>
    \r\n
    \r\n <{$message.msg_text}>
    \r\n
    \r\n
    \r\n <{foreach item=element from=$pmform.elements}>\r\n <{$element.body}>\r\n <{/foreach}>\r\n
    \r\n <{if ( $previous >= 0 ) }>\r\n &total_messages=<{$total_messages}>&op=<{$op}>\'>\r\n <{$smarty.const._PM_PREVIOUS}>\r\n  | \r\n <{else}>\r\n <{$smarty.const._PM_PREVIOUS}> | \r\n <{/if}>\r\n <{if ( $next < $total_messages ) }>\r\n &total_messages=<{$total_messages}>&op=<{$op}>\'>\r\n <{$smarty.const._PM_NEXT}>\r\n \r\n <{else}>\r\n <{$smarty.const._PM_NEXT}>\r\n <{/if}>\r\n
    \r\n
    \r\n<{else}>\r\n

    <{$smarty.const._PM_YOUDONTHAVE}>\r\n<{/if}>'),(34,'

    <{$smarty.const._PM_PRIVATEMESSAGE}>


    \r\n
    \r\n <{if $op == \"out\"}>\r\n <{$smarty.const._PM_INBOX}> | <{$smarty.const._PM_SAVEBOX}>\r\n <{elseif $op == \"save\"}>\r\n <{$smarty.const._PM_INBOX}> | <{$smarty.const._PM_OUTBOX}>\r\n <{elseif $op == \"in\"}>\r\n <{$smarty.const._PM_OUTBOX}> | <{$smarty.const._PM_SAVEBOX}>\r\n <{/if}>\r\n
    \r\n
    \r\n <{if $op == \"out\"}><{$smarty.const._PM_OUTBOX}>\r\n <{elseif $op == \"save\"}><{$smarty.const._PM_SAVEBOX}>\r\n <{else}><{$smarty.const._PM_INBOX}><{/if}>\r\n
    \r\n
    \r\n
    \r\n<{if $msg}>\r\n
    <{$msg}>
    \r\n<{/if}>\r\n<{if $errormsg}>\r\n
    <{$errormsg}>
    \r\n<{/if}>\r\n<{if $pagenav}>\r\n
    \r\n<{$pagenav}>\r\n
    \r\n
    \r\n<{/if}>\r\n
    \" id=\"<{$pmform.name}>\" action=\"<{$pmform.action}>\" method=\"<{$pmform.method}>\" <{$pmform.extra}> >\r\n \r\n \r\n \r\n \r\n \r\n \r\n <{if $op == \"out\"}>\r\n \r\n <{else}>\r\n \r\n <{/if}>\r\n \r\n \r\n \r\n \r\n <{if $total_messages == 0}>\r\n \r\n \r\n \r\n <{/if}>\r\n <{foreach item=message from=$messages}>\r\n \'>\r\n \r\n <{if $message.read_msg == 1}>\r\n \r\n <{else}>\r\n \r\n <{/if}>\r\n \r\n \r\n \r\n \r\n \r\n <{/foreach}>\r\n \r\n \r\n \r\n
    \", \"allbox\");\' type=\'checkbox\' value=\'Check All\' />/images/download.gif\' alt=\'\' border=\'0\' /> <{$smarty.const._PM_TO}><{$smarty.const._PM_FROM}><{$smarty.const._PM_SUBJECT}><{$smarty.const._PM_DATE}>
    <{$smarty.const._PM_YOUDONTHAVE}>
    \r\n \' name=\'msg_id[]\' value=\'<{$message.msg_id}>\' />\r\n  \'<{$smarty.const._PM_NOTREAD}\' />\r\n <{if $message.msg_image != \"\"}>\r\n /images/subject/<{$message.msg_image}>\' alt=\'\' />\r\n <{/if}>\r\n \r\n <{if $message.postername != \"\"}>\r\n /userinfo.php?uid=<{$message.posteruid}>\'><{$message.postername}>\r\n <{else}>\r\n <{$anonymous}>\r\n <{/if}>\r\n \r\n start=<{$message.msg_no}>&total_messages=<{$total_messages}>&op=<{$op}>\'>\r\n <{$message.subject}>\r\n \r\n \r\n <{$message.msg_time}>\r\n
    \r\n <{$pmform.elements.send.body}>\r\n <{if $display}>\r\n  <{$pmform.elements.move_messages.body}>\r\n  <{$pmform.elements.delete_messages.body}>\r\n  <{$pmform.elements.empty_messages.body}>\r\n <{/if}>\r\n <{foreach item=element from=$pmform.elements}>\r\n <{if $element.hidden == 1}>\r\n <{$element.body}>\r\n <{/if}>\r\n <{/foreach}>\r\n
    \r\n
    \r\n<{if $pagenav}>\r\n
    \r\n<{$pagenav}>\r\n
    \r\n<{/if}>'),(35,'\r\n
    \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n <{foreach item=category from=$fieldcategories}>\r\n <{foreach item=field from=$category}>\r\n \">\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n <{/foreach}>\r\n <{/foreach}>\r\n \">\r\n \r\n \r\n \r\n \r\n
    <{$smarty.const._PROFILE_AM_NAME}><{$smarty.const._PROFILE_AM_TITLE}><{$smarty.const._PROFILE_AM_DESCRIPTION}><{$smarty.const._PROFILE_AM_MODULE}><{$smarty.const._PROFILE_AM_TYPE}><{$smarty.const._PROFILE_AM_CATEGORY}><{$smarty.const._PROFILE_AM_WEIGHT}>
    <{$field.field_name}><{$field.field_title}><{$field.field_description}><{$field.module}><{$field.fieldtype}>\r\n <{if $field.canEdit}>\r\n \r\n <{/if}>\r\n \r\n <{if $field.canEdit}>\r\n ]\" size=\"5\" maxlength=\"5\" value=\"<{$field.field_weight}>\" />\r\n <{/if}>\r\n \r\n <{if $field.canEdit}>\r\n ]\" value=\"<{$field.field_weight}>\" />\r\n ]\" value=\"<{$field.catid}>\" />\r\n \" />\r\n \" title=\"<{$smarty.const._EDIT}>\"><{$smarty.const._EDIT}>\r\n <{/if}>\r\n <{if $field.canDelete}>\r\n  \" title=\"<{$smarty.const._DELETE}>\"><{$smarty.const._DELETE}>\r\n <{/if}>\r\n
    \r\n \r\n <{$token}>\r\n \r\n \" />\r\n \r\n
    \r\n
    '),(36,'<{if $user_ownpage == true}>\r\n\r\n
    \r\n\r\n

    \r\n\r\n \r\n \r\n \r\n \r\n
    \" onclick=\"location=\'edituser.php\'\" />\r\n \" onclick=\"location=\'changepass.php\'\" />\r\n \" onclick=\"location=\'edituser.php?op=avatarform\'\" />\r\n\r\n <{if $user_candelete == true}>\r\n \" onclick=\"location=\'edituser.php?op=delete\'\" />\r\n <{/if}>\r\n\r\n \" onclick=\"location=\'<{$xoops_url}>/user.php?op=logout\'\" />
    \r\n
    \r\n\r\n

    \r\n<{elseif $xoops_isadmin != false}>\r\n\r\n

    \r\n\r\n \r\n \r\n \r\n
    \" onclick=\"location=\'<{$xoops_url}>/modules/profile/admin/user.php?op=edit&id=<{$user_uid}>\'\" />\r\n \" onclick=\"location=\'<{$xoops_url}>/modules/profile/admin/user.php?op=delete&id=<{$user_uid}>\'\" />\r\n
    \r\n\r\n

    \r\n<{/if}>\r\n\r\n<{foreach item=category from=$categories name=catcount}>\r\n <{if isset($category.fields)}>\r\n
    \r\n \r\n \r\n \r\n \r\n <{foreach item=field from=$category.fields}>\r\n \r\n \r\n \r\n \r\n <{/foreach}>\r\n
    <{$category.cat_title}>
    <{$field.title}><{$field.value}>
    \r\n
    \r\n <{/if}>\r\n<{/foreach}>\r\n\r\n<{if $modules}>\r\n
    \r\n \r\n <{foreach item=module from=$modules}>\r\n\r\n

    \r\n

    <{$module.name}>

    \r\n\r\n \r\n <{foreach item=result from=$module.results}>\r\n\r\n \" alt=\"<{$module.name}>\" /> \"><{$result.title}>
    (<{$result.time}>)
    \r\n\r\n <{/foreach}>\r\n \r\n\r\n <{$module.showall_link}>\r\n

    \r\n\r\n <{/foreach}>\r\n \r\n<{/if}>'),(37,'\r\n\r\n \r\n \r\n \r\n \r\n <{foreach item=category from=$categories}>\r\n \">\r\n \r\n \r\n \r\n \r\n \r\n <{/foreach}>\r\n
    <{$smarty.const._PROFILE_AM_TITLE}><{$smarty.const._PROFILE_AM_DESCRIPTION}><{$smarty.const._PROFILE_AM_WEIGHT}>
    <{$category.cat_title}><{$category.cat_description}><{$category.cat_weight}>\r\n \" title=\"<{$smarty.const._EDIT}>\"><{$smarty.const._EDIT}>\r\n  \" title=\"<{$smarty.const._DELETE}>\"><{$smarty.const._DELETE}>\r\n
    '),(38,'
    \" id=\"<{$searchform.name}>\" action=\"<{$searchform.action}>\" method=\"<{$searchform.method}>\" <{$searchform.extra}> >\r\n \r\n \r\n <{foreach item=element from=$searchform.elements}>\r\n <{if $element.hidden != true}>\r\n \r\n \r\n \r\n \r\n <{/if}>\r\n <{/foreach}>\r\n \r\n
    <{$element.caption}><{$element.body}>
    \r\n <{foreach item=element from=$searchform.elements}>\r\n <{if $element.hidden == true}>\r\n <{$element.body}>\r\n <{/if}>\r\n <{/foreach}>\r\n
    '),(39,'\r\n
    \r\n<{if $users}>\r\n \r\n \r\n <{foreach item=caption from=$captions}>\r\n \r\n <{/foreach}>\r\n \r\n <{foreach item=user from=$users}>\r\n \">\r\n <{foreach item=fieldvalue from=$user.output}>\r\n \r\n <{/foreach}>\r\n \r\n <{/foreach}>\r\n
    <{$caption}>
    <{$fieldvalue}>
    \r\n \r\n <{$nav}>\r\n<{else}>\r\n
    \r\n <{$smarty.const._PROFILE_MA_NOUSERSFOUND}>\r\n
    \r\n<{/if}>'); /*!40000 ALTER TABLE `xoops__tplsource` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `xoops__user_profile` -- DROP TABLE IF EXISTS `xoops__user_profile`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `xoops__user_profile` ( `profileid` int(12) unsigned NOT NULL AUTO_INCREMENT, `umode` text NOT NULL, `uorder` text NOT NULL, `notify_method` text NOT NULL, `notify_mode` text NOT NULL, `user_regdate` int(10) NOT NULL DEFAULT '0', `posts` int(10) NOT NULL DEFAULT '0', `attachsig` int(1) NOT NULL DEFAULT '0', `timezone_offset` varchar(255) NOT NULL DEFAULT '', `user_mailok` int(1) NOT NULL DEFAULT '1', `theme` varchar(255) NOT NULL DEFAULT '', `actkey` varchar(255) NOT NULL DEFAULT '', `last_login` int(10) NOT NULL DEFAULT '0', `pm_link` text NOT NULL, `user_aim` varchar(255) NOT NULL DEFAULT '', `user_icq` varchar(255) NOT NULL DEFAULT '', `user_from` varchar(255) NOT NULL DEFAULT '', `user_sig` text NOT NULL, `user_viewemail` int(1) NOT NULL DEFAULT '0', `user_yim` varchar(255) NOT NULL DEFAULT '', `user_msnm` varchar(255) NOT NULL DEFAULT '', `bio` text NOT NULL, `user_intrest` varchar(150) NOT NULL DEFAULT '', `user_occ` varchar(100) NOT NULL DEFAULT '', `url` varchar(100) NOT NULL DEFAULT '', `newemail` varchar(100) NOT NULL DEFAULT '', PRIMARY KEY (`profileid`) ) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `xoops__user_profile` -- LOCK TABLES `xoops__user_profile` WRITE; /*!40000 ALTER TABLE `xoops__user_profile` DISABLE KEYS */; INSERT INTO `xoops__user_profile` VALUES (1,'','','','',1149505021,0,0,'',1,'0','',1162117425,'\"Write','','','','',0,'','','','','','',''); /*!40000 ALTER TABLE `xoops__user_profile` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `xoops__user_profile_field` -- DROP TABLE IF EXISTS `xoops__user_profile_field`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `xoops__user_profile_field` ( `fieldid` int(12) unsigned NOT NULL AUTO_INCREMENT, `field_type` varchar(30) NOT NULL DEFAULT '', `field_valuetype` tinyint(2) unsigned NOT NULL DEFAULT '0', `field_name` varchar(255) NOT NULL DEFAULT '', `field_title` varchar(255) NOT NULL DEFAULT '', `field_description` text NOT NULL, `field_required` tinyint(2) unsigned NOT NULL DEFAULT '0', `field_maxlength` tinyint(6) unsigned NOT NULL DEFAULT '0', `field_default` text NOT NULL, `field_moduleid` int(12) unsigned NOT NULL DEFAULT '0', `field_notnull` tinyint(2) unsigned NOT NULL DEFAULT '0', `field_edit` tinyint(2) unsigned NOT NULL DEFAULT '0', `field_show` tinyint(2) unsigned NOT NULL DEFAULT '0', `field_config` tinyint(2) unsigned NOT NULL DEFAULT '0', `field_options` text NOT NULL, `field_register` tinyint(2) unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`fieldid`), UNIQUE KEY `field_name` (`field_name`) ) ENGINE=MyISAM AUTO_INCREMENT=26 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `xoops__user_profile_field` -- LOCK TABLES `xoops__user_profile_field` WRITE; /*!40000 ALTER TABLE `xoops__user_profile_field` DISABLE KEYS */; INSERT INTO `xoops__user_profile_field` VALUES (1,'select',7,'umode','Comments Display Mode','',0,0,'',1,1,1,0,0,'a:3:{s:4:\"nest\";s:6:\"Nested\";s:4:\"flat\";s:4:\"Flat\";s:6:\"thread\";s:8:\"Threaded\";}',0),(2,'select',7,'uorder','Comments Sort Order','',0,0,'',1,1,1,0,0,'a:2:{i:0;s:12:\"Oldest First\";i:1;s:12:\"Newest First\";}',0),(3,'select',7,'notify_method','Notification Method','When you monitor e.g. a forum, how would you like to receive notifications of updates?',0,0,'',1,1,1,0,0,'a:3:{i:0;s:19:\"Temporarily Disable\";i:1;s:15:\"Private Message\";i:2;s:33:\"Email (use address in my profile)\";}',0),(4,'select',7,'notify_mode','Default Notification Mode','',0,0,'',1,1,1,0,0,'a:3:{i:0;s:33:\"Notify me of all selected updates\";i:1;s:19:\"Notify me only once\";i:2;s:48:\"Notify me once then disable until I log in again\";}',0),(5,'date',3,'user_regdate','Member Since','',0,10,'0',1,1,0,1,0,'a:0:{}',0),(6,'textbox',3,'posts','Posts','',0,10,'0',1,1,0,1,0,'a:0:{}',0),(7,'yesno',3,'attachsig','Always attach my signature','',0,1,'',1,1,1,0,0,'a:0:{}',0),(8,'timezone',1,'timezone_offset','Time Zone','',0,255,'',1,1,1,0,0,'a:0:{}',0),(9,'yesno',3,'user_mailok','Receive occasional email notices?','By enabling this, administrators and moderators are allowed to send you notices occasionally via email',0,1,'1',1,1,1,0,0,'a:0:{}',0),(10,'theme',1,'theme','Theme','',0,255,'0',1,1,1,0,0,'a:0:{}',0),(11,'textbox',1,'actkey','User activation key','',0,255,'',1,1,0,0,0,'a:0:{}',0),(12,'date',3,'last_login','Last Login','',0,10,'',1,1,0,1,0,'a:0:{}',0),(13,'autotext',2,'pm_link','PM Link','Shows a link to send a private message to the user',0,0,'\"Write',2,1,0,1,0,'a:0:{}',0),(14,'textbox',1,'user_aim','AIM','America Online Instant Messenger Client ID',0,255,'',3,1,1,1,1,'a:0:{}',0),(15,'textbox',1,'user_icq','ICQ','ICQ Instant Messenger ID',0,255,'',3,1,1,1,1,'a:0:{}',0),(16,'textbox',1,'user_from','Location','',0,255,'',3,1,1,1,1,'a:0:{}',0),(17,'dhtml',2,'user_sig','Signature','Here, you can write a signature that can be displayed in your forum posts, comments etc.',0,0,'',3,1,1,1,1,'a:0:{}',0),(18,'yesno',3,'user_viewemail','Allow other users to view my email address','',0,1,'0',3,1,1,0,0,'a:0:{}',0),(19,'textbox',1,'user_yim','YIM','Yahoo! Instant Messenger ID',0,255,'',3,1,1,1,1,'a:0:{}',0),(20,'textbox',1,'user_msnm','MSN','Microsoft Messenger ID',0,255,'',3,1,1,1,1,'a:0:{}',0),(21,'textarea',2,'bio','Extra Info','',0,0,'',3,1,1,1,1,'a:0:{}',0),(22,'textbox',1,'user_intrest','Interests','',0,150,'',3,1,1,1,1,'a:0:{}',0),(23,'textbox',1,'user_occ','Occupation','',0,100,'',3,1,1,1,1,'a:0:{}',0),(24,'textbox',1,'url','Website','',0,100,'',3,1,1,1,1,'a:0:{}',0),(25,'textbox',1,'newemail','New Email','Variable for storing a proposed new email address until confirmation comes from a mail sent to the old one. See modules/profile/changemail.php',0,100,'',3,1,0,0,0,'a:0:{}',0); /*!40000 ALTER TABLE `xoops__user_profile_field` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `xoops__users` -- DROP TABLE IF EXISTS `xoops__users`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `xoops__users` ( `uid` mediumint(8) unsigned NOT NULL AUTO_INCREMENT, `uname` varchar(55) NOT NULL DEFAULT '', `loginname` varchar(25) NOT NULL DEFAULT '', `name` varchar(75) NOT NULL DEFAULT '', `email` varchar(60) NOT NULL DEFAULT '', `user_avatar` varchar(30) NOT NULL DEFAULT 'blank.gif', `pass` varchar(32) NOT NULL DEFAULT '', `rank` smallint(5) unsigned NOT NULL DEFAULT '0', `level` tinyint(3) NOT NULL DEFAULT '1', PRIMARY KEY (`uid`), KEY `uname` (`uname`), KEY `email` (`email`), KEY `uiduname` (`uid`,`uname`), KEY `unamepass` (`uname`,`pass`) ) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `xoops__users` -- LOCK TABLES `xoops__users` WRITE; /*!40000 ALTER TABLE `xoops__users` DISABLE KEYS */; INSERT INTO `xoops__users` VALUES (1,'Admin','admin','','mam@heimam.at','blank.gif','5a9361b28ee51795f1e82d9054919034',7,5); /*!40000 ALTER TABLE `xoops__users` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `xoops__xoopscomments` -- DROP TABLE IF EXISTS `xoops__xoopscomments`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `xoops__xoopscomments` ( `com_id` mediumint(8) unsigned NOT NULL AUTO_INCREMENT, `com_pid` mediumint(8) unsigned NOT NULL DEFAULT '0', `com_rootid` mediumint(8) unsigned NOT NULL DEFAULT '0', `com_modid` smallint(5) unsigned NOT NULL DEFAULT '0', `com_itemid` mediumint(8) unsigned NOT NULL DEFAULT '0', `com_icon` varchar(25) NOT NULL DEFAULT '', `com_created` int(10) unsigned NOT NULL DEFAULT '0', `com_modified` int(10) unsigned NOT NULL DEFAULT '0', `com_uid` mediumint(8) unsigned NOT NULL DEFAULT '0', `com_ip` varchar(15) NOT NULL DEFAULT '', `com_title` varchar(255) NOT NULL DEFAULT '', `com_text` text NOT NULL, `com_sig` tinyint(1) unsigned NOT NULL DEFAULT '0', `com_status` tinyint(1) unsigned NOT NULL DEFAULT '0', `com_exparams` varchar(255) NOT NULL DEFAULT '', `dohtml` tinyint(1) unsigned NOT NULL DEFAULT '0', `dosmiley` tinyint(1) unsigned NOT NULL DEFAULT '0', `doxcode` tinyint(1) unsigned NOT NULL DEFAULT '0', `doimage` tinyint(1) unsigned NOT NULL DEFAULT '0', `dobr` tinyint(1) unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`com_id`), KEY `com_pid` (`com_pid`), KEY `com_itemid` (`com_itemid`), KEY `com_uid` (`com_uid`), KEY `com_title` (`com_title`(40)) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `xoops__xoopscomments` -- LOCK TABLES `xoops__xoopscomments` WRITE; /*!40000 ALTER TABLE `xoops__xoopscomments` DISABLE KEYS */; /*!40000 ALTER TABLE `xoops__xoopscomments` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `xoops__xoopsnotifications` -- DROP TABLE IF EXISTS `xoops__xoopsnotifications`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `xoops__xoopsnotifications` ( `not_id` mediumint(8) unsigned NOT NULL AUTO_INCREMENT, `not_modid` smallint(5) unsigned NOT NULL DEFAULT '0', `not_itemid` mediumint(8) unsigned NOT NULL DEFAULT '0', `not_category` varchar(30) NOT NULL DEFAULT '', `not_event` varchar(30) NOT NULL DEFAULT '', `not_uid` mediumint(8) unsigned NOT NULL DEFAULT '0', `not_mode` tinyint(1) NOT NULL DEFAULT '0', PRIMARY KEY (`not_id`), KEY `not_modid` (`not_modid`), KEY `not_itemid` (`not_itemid`), KEY `not_class` (`not_category`), KEY `not_uid` (`not_uid`), KEY `not_event` (`not_event`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `xoops__xoopsnotifications` -- LOCK TABLES `xoops__xoopsnotifications` WRITE; /*!40000 ALTER TABLE `xoops__xoopsnotifications` DISABLE KEYS */; /*!40000 ALTER TABLE `xoops__xoopsnotifications` ENABLE KEYS */; UNLOCK TABLES; -- -- Current Database: `zomplog` -- CREATE DATABASE /*!32312 IF NOT EXISTS*/ `zomplog` /*!40100 DEFAULT CHARACTER SET latin1 */; USE `zomplog`; -- -- Table structure for table `zomplog_cat` -- DROP TABLE IF EXISTS `zomplog_cat`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `zomplog_cat` ( `id` int(5) NOT NULL AUTO_INCREMENT, `name` text NOT NULL, `permissions` text NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `zomplog_cat` -- LOCK TABLES `zomplog_cat` WRITE; /*!40000 ALTER TABLE `zomplog_cat` DISABLE KEYS */; /*!40000 ALTER TABLE `zomplog_cat` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `zomplog_comments` -- DROP TABLE IF EXISTS `zomplog_comments`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `zomplog_comments` ( `id` int(10) NOT NULL AUTO_INCREMENT, `entry_id` int(10) NOT NULL DEFAULT '0', `name` varchar(100) NOT NULL DEFAULT '', `comment` text NOT NULL, `date` varchar(25) NOT NULL DEFAULT '', PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `zomplog_comments` -- LOCK TABLES `zomplog_comments` WRITE; /*!40000 ALTER TABLE `zomplog_comments` DISABLE KEYS */; /*!40000 ALTER TABLE `zomplog_comments` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `zomplog_db` -- DROP TABLE IF EXISTS `zomplog_db`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `zomplog_db` ( `id` int(10) NOT NULL AUTO_INCREMENT, `title` varchar(100) NOT NULL DEFAULT '', `text` text NOT NULL, `extended` text NOT NULL, `image` text NOT NULL, `catid` int(10) NOT NULL DEFAULT '0', `date` varchar(25) NOT NULL DEFAULT '', `username` text NOT NULL, `userid` int(10) NOT NULL DEFAULT '0', PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `zomplog_db` -- LOCK TABLES `zomplog_db` WRITE; /*!40000 ALTER TABLE `zomplog_db` DISABLE KEYS */; /*!40000 ALTER TABLE `zomplog_db` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `zomplog_users` -- DROP TABLE IF EXISTS `zomplog_users`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `zomplog_users` ( `id` int(5) NOT NULL AUTO_INCREMENT, `login` varchar(15) DEFAULT '0', `password` varchar(15) DEFAULT '0', `permissions` int(10) NOT NULL DEFAULT '0', PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `zomplog_users` -- LOCK TABLES `zomplog_users` WRITE; /*!40000 ALTER TABLE `zomplog_users` DISABLE KEYS */; INSERT INTO `zomplog_users` VALUES (1,'admin','mscmks',1); /*!40000 ALTER TABLE `zomplog_users` ENABLE KEYS */; UNLOCK TABLES; /*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */; /*!40101 SET SQL_MODE=@OLD_SQL_MODE */; /*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */; /*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */; /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; /*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */; -- Dump completed on 2018-02-01 2:01:01