# MySQL dump 8.12 # # Host: localhost Database: phpBB_tchsalumni #-------------------------------------------------------- # Server version 3.23.31-log # # Table structure for table 'phpbb_auth_access' # DROP TABLE IF EXISTS phpbb_auth_access; CREATE TABLE phpbb_auth_access ( group_id mediumint(8) NOT NULL default '0', forum_id smallint(5) unsigned NOT NULL default '0', auth_view tinyint(1) NOT NULL default '0', auth_read tinyint(1) NOT NULL default '0', auth_post tinyint(1) NOT NULL default '0', auth_reply tinyint(1) NOT NULL default '0', auth_edit tinyint(1) NOT NULL default '0', auth_delete tinyint(1) NOT NULL default '0', auth_sticky tinyint(1) NOT NULL default '0', auth_announce tinyint(1) NOT NULL default '0', auth_vote tinyint(1) NOT NULL default '0', auth_pollcreate tinyint(1) NOT NULL default '0', auth_attachments tinyint(1) NOT NULL default '0', auth_mod tinyint(1) NOT NULL default '0', KEY group_id(group_id), KEY forum_id(forum_id) ) TYPE=MyISAM; # # Dumping data for table 'phpbb_auth_access' # LOCK TABLES phpbb_auth_access WRITE; UNLOCK TABLES; # # Table structure for table 'phpbb_banlist' # DROP TABLE IF EXISTS phpbb_banlist; CREATE TABLE phpbb_banlist ( ban_id mediumint(8) unsigned NOT NULL auto_increment, ban_userid mediumint(8) NOT NULL default '0', ban_ip varchar(8) NOT NULL default '', ban_email varchar(255) default NULL, PRIMARY KEY (ban_id), KEY ban_ip_user_id(ban_ip,ban_userid) ) TYPE=MyISAM; # # Dumping data for table 'phpbb_banlist' # LOCK TABLES phpbb_banlist WRITE; UNLOCK TABLES; # # Table structure for table 'phpbb_categories' # DROP TABLE IF EXISTS phpbb_categories; CREATE TABLE phpbb_categories ( cat_id mediumint(8) unsigned NOT NULL auto_increment, cat_title varchar(100) default NULL, cat_order mediumint(8) unsigned NOT NULL default '0', PRIMARY KEY (cat_id), KEY cat_order(cat_order) ) TYPE=MyISAM; # # Dumping data for table 'phpbb_categories' # LOCK TABLES phpbb_categories WRITE; INSERT INTO phpbb_categories VALUES (4,'Special Events',10),(2,'Reunions, Looking for...',20),(3,'General Discussion',30); UNLOCK TABLES; # # Table structure for table 'phpbb_config' # DROP TABLE IF EXISTS phpbb_config; CREATE TABLE phpbb_config ( config_name varchar(255) NOT NULL default '', config_value varchar(255) NOT NULL default '', PRIMARY KEY (config_name) ) TYPE=MyISAM; # # Dumping data for table 'phpbb_config' # LOCK TABLES phpbb_config WRITE; INSERT INTO phpbb_config VALUES ('config_id','1'),('board_disable','0'),('sitename','TCHS Alumni Forums'),('site_desc',''),('cookie_name','phpbb2mysql'),('cookie_path','/'),('cookie_domain','www.tchsalumni.org'),('cookie_secure','0'),('session_length','3600'),('allow_html','0'),('allow_html_tags','b,i,u,pre'),('allow_bbcode','1'),('allow_smilies','1'),('allow_sig','1'),('allow_namechange','1'),('allow_theme_create','0'),('allow_avatar_local','1'),('allow_avatar_remote','1'),('allow_avatar_upload','0'),('override_user_style','0'),('posts_per_page','15'),('topics_per_page','50'),('hot_threshold','25'),('max_poll_options','10'),('max_sig_chars','255'),('max_inbox_privmsgs','50'),('max_sentbox_privmsgs','25'),('max_savebox_privmsgs','50'),('board_email_sig','Thanks, The Editors'),('board_email','forums@tchsalumni.org'),('smtp_delivery','0'),('smtp_host',''),('smtp_username',''),('smtp_password',''),('require_activation','0'),('flood_interval','15'),('board_email_form','0'),('avatar_filesize','6144'),('avatar_max_width','80'),('avatar_max_height','80'),('avatar_path','images/avatars'),('avatar_gallery_path','images/avatars/gallery'),('smilies_path','images/smiles'),('default_style','2'),('default_dateformat','D M d, Y g:i a'),('board_timezone','-8'),('prune_enable','0'),('privmsg_disable','0'),('gzip_compress','0'),('coppa_fax',''),('coppa_mail',''),('record_online_users','13'),('record_online_date','1033149143'),('server_name','www.tchsalumni.org'),('server_port','80'),('script_path','/webdocs/features/forum/'),('version','.0.4'),('board_startdate','1017961961'),('default_lang','english'); UNLOCK TABLES; # # Table structure for table 'phpbb_disallow' # DROP TABLE IF EXISTS phpbb_disallow; CREATE TABLE phpbb_disallow ( disallow_id mediumint(8) unsigned NOT NULL auto_increment, disallow_username varchar(25) default NULL, PRIMARY KEY (disallow_id) ) TYPE=MyISAM; # # Dumping data for table 'phpbb_disallow' # LOCK TABLES phpbb_disallow WRITE; INSERT INTO phpbb_disallow VALUES (1,'%shit%'),(2,'%fuck%'); UNLOCK TABLES; # # Table structure for table 'phpbb_forum_prune' # DROP TABLE IF EXISTS phpbb_forum_prune; CREATE TABLE phpbb_forum_prune ( prune_id mediumint(8) unsigned NOT NULL auto_increment, forum_id smallint(5) unsigned NOT NULL default '0', prune_days smallint(5) unsigned NOT NULL default '0', prune_freq smallint(5) unsigned NOT NULL default '0', PRIMARY KEY (prune_id), KEY forum_id(forum_id) ) TYPE=MyISAM; # # Dumping data for table 'phpbb_forum_prune' # LOCK TABLES phpbb_forum_prune WRITE; INSERT INTO phpbb_forum_prune VALUES (1,6,14,1),(2,13,30,7); UNLOCK TABLES; # # Table structure for table 'phpbb_forums' # DROP TABLE IF EXISTS phpbb_forums; CREATE TABLE phpbb_forums ( forum_id smallint(5) unsigned NOT NULL default '0', cat_id mediumint(8) unsigned NOT NULL default '0', forum_name varchar(150) default NULL, forum_desc text, forum_status tinyint(4) NOT NULL default '0', forum_order mediumint(8) unsigned NOT NULL default '1', forum_posts mediumint(8) unsigned NOT NULL default '0', forum_topics mediumint(8) unsigned NOT NULL default '0', forum_last_post_id mediumint(8) unsigned NOT NULL default '0', prune_next int(11) default NULL, prune_enable tinyint(1) NOT NULL default '0', auth_view tinyint(2) NOT NULL default '0', auth_read tinyint(2) NOT NULL default '0', auth_post tinyint(2) NOT NULL default '0', auth_reply tinyint(2) NOT NULL default '0', auth_edit tinyint(2) NOT NULL default '0', auth_delete tinyint(2) NOT NULL default '0', auth_sticky tinyint(2) NOT NULL default '0', auth_announce tinyint(2) NOT NULL default '0', auth_vote tinyint(2) NOT NULL default '0', auth_pollcreate tinyint(2) NOT NULL default '0', auth_attachments tinyint(2) NOT NULL default '0', PRIMARY KEY (forum_id), KEY forums_order(forum_order), KEY cat_id(cat_id), KEY forum_last_post_id(forum_last_post_id) ) TYPE=MyISAM; # # Dumping data for table 'phpbb_forums' # LOCK TABLES phpbb_forums WRITE; INSERT INTO phpbb_forums VALUES (1,2,'Lost Classmates, Teachers, Friends...','Together we can find those missing friends. (Unless, of course, they\'re in the alumni protection program.)',0,20,10,6,166,NULL,0,0,0,0,0,1,1,3,3,3,3,3),(13,3,'Everything Else','Please use topics under Reunions and Looking_for for specific inquiries. Guests may post here.',0,10,23,9,168,NULL,1,0,0,0,0,1,1,3,3,3,3,0),(4,3,'High school trivia & legends','What do you remember? Did it really happen?',0,20,42,10,143,NULL,0,0,0,0,0,1,3,3,3,3,3,0),(5,3,'Forum Help','Ask the user community about how to use the Forums most effectively. BECOME A FORUM MODERATOR!',0,60,6,4,136,NULL,0,0,0,0,0,1,3,3,3,1,3,0),(15,4,'Mike Coghlan \'57 Mystery Hour -- 2/12/03','CBS 48 Hours will air a program featuring a TCHS alumnus, Mike Coghlan \'57. The program, scheduled for Feb. 12, 2003, presents a murder case and trial, and Coghlan is the defense attorney. Please use this forum to discuss the case. (If you\'re ahead of Pacific time, don\'t give away the ending, please.) You can vote in the poll throughout the program. (We\'ll enable the poll the day of the program.) In case the program is rescheduled again, we\'ll announce the new date in TCHS Alumni News.',0,10,15,4,164,NULL,0,0,0,0,0,1,1,3,3,1,3,0),(6,3,'On Campus','This forum is for the exclusive use of students now enrolled at TCHS.',0,40,1,1,12,1018112076,1,0,0,0,0,1,1,3,3,3,3,0),(9,2,'Is there a reunion planned for...?','Get the group together and buy the t-shirts!',0,10,6,3,165,NULL,0,0,0,0,0,1,1,3,3,3,3,0),(14,3,'Who Are We?','In the People section and/or Front Page we often feature pictures of alumni as they were then (to test your memory) or now (to test your guesswork). Correct guesses will win you the admiration of your friends and...?',0,30,14,4,139,NULL,0,0,0,0,0,1,3,3,3,1,3,0); UNLOCK TABLES; # # Table structure for table 'phpbb_groups' # DROP TABLE IF EXISTS phpbb_groups; CREATE TABLE phpbb_groups ( group_id mediumint(8) NOT NULL auto_increment, group_type tinyint(4) NOT NULL default '1', group_name varchar(40) NOT NULL default '', group_description varchar(255) NOT NULL default '', group_moderator mediumint(8) NOT NULL default '0', group_single_user tinyint(1) NOT NULL default '1', PRIMARY KEY (group_id), KEY group_single_user(group_single_user) ) TYPE=MyISAM; # # Dumping data for table 'phpbb_groups' # LOCK TABLES phpbb_groups WRITE; INSERT INTO phpbb_groups VALUES (1,1,'Anonymous','Personal User',0,1),(3,1,'','Personal User',0,1),(4,1,'','Personal User',0,1),(5,1,'','Personal User',0,1),(6,1,'','Personal User',0,1),(7,1,'','Personal User',0,1),(8,1,'','Personal User',0,1),(9,1,'','Personal User',0,1),(10,0,'Class of 1960','This was TCHS\'s first four-year class. C/60 and spouses only, please. This group will become a private group on May 1, after which you\'ll need to join to post messags.',5,0),(11,0,'Athletics, then...','Remember the time I..., and then you... That was cool!',2,0),(12,0,'Athletics, now...','What\'s happening in TCHS sports today?',2,0),(13,1,'','Personal User',0,1),(14,0,'Class of 1957','First to tread Burma Road.',5,0),(15,1,'','Personal User',0,1),(16,1,'','Personal User',0,1),(17,1,'','Personal User',0,1),(18,1,'','Personal User',0,1),(19,1,'','Personal User',0,1),(20,1,'','Personal User',0,1),(21,1,'','Personal User',0,1),(22,1,'','Personal User',0,1),(23,1,'','Personal User',0,1),(24,1,'','Personal User',0,1),(25,1,'','Personal User',0,1),(26,1,'','Personal User',0,1),(27,1,'','Personal User',0,1),(28,1,'','Personal User',0,1),(29,1,'','Personal User',0,1),(30,1,'','Personal User',0,1),(31,1,'','Personal User',0,1),(32,1,'','Personal User',0,1),(33,1,'','Personal User',0,1),(34,1,'','Personal User',0,1),(35,1,'','Personal User',0,1),(36,1,'','Personal User',0,1),(37,1,'','Personal User',0,1),(38,1,'','Personal User',0,1),(39,1,'','Personal User',0,1),(40,1,'','Personal User',0,1),(41,1,'','Personal User',0,1),(42,1,'','Personal User',0,1),(43,1,'','Personal User',0,1),(44,1,'','Personal User',0,1),(45,1,'','Personal User',0,1),(46,1,'','Personal User',0,1),(47,1,'','Personal User',0,1),(48,1,'','Personal User',0,1),(49,1,'','Personal User',0,1),(50,1,'','Personal User',0,1),(51,1,'','Personal User',0,1),(52,1,'','Personal User',0,1),(53,1,'','Personal User',0,1),(54,1,'','Personal User',0,1),(55,1,'','Personal User',0,1),(56,1,'','Personal User',0,1),(57,1,'','Personal User',0,1),(58,1,'','Personal User',0,1),(59,1,'','Personal User',0,1),(60,1,'','Personal User',0,1),(61,1,'','Personal User',0,1),(62,1,'','Personal User',0,1),(63,1,'','Personal User',0,1),(64,1,'','Personal User',0,1),(65,1,'','Personal User',0,1),(66,1,'','Personal User',0,1),(67,1,'','Personal User',0,1),(68,1,'','Personal User',0,1),(69,1,'','Personal User',0,1),(70,1,'','Personal User',0,1),(71,1,'','Personal User',0,1),(72,1,'','Personal User',0,1),(73,1,'','Personal User',0,1),(74,1,'','Personal User',0,1),(75,1,'','Personal User',0,1),(76,1,'','Personal User',0,1),(77,1,'','Personal User',0,1),(78,1,'','Personal User',0,1); UNLOCK TABLES; # # Table structure for table 'phpbb_posts' # DROP TABLE IF EXISTS phpbb_posts; CREATE TABLE phpbb_posts ( post_id mediumint(8) unsigned NOT NULL auto_increment, topic_id mediumint(8) unsigned NOT NULL default '0', forum_id smallint(5) unsigned NOT NULL default '0', poster_id mediumint(8) NOT NULL default '0', post_time int(11) NOT NULL default '0', poster_ip varchar(8) NOT NULL default '', post_username varchar(25) default NULL, enable_bbcode tinyint(1) NOT NULL default '1', enable_html tinyint(1) NOT NULL default '0', enable_smilies tinyint(1) NOT NULL default '1', enable_sig tinyint(1) NOT NULL default '1', post_edit_time int(11) default NULL, post_edit_count smallint(5) unsigned NOT NULL default '0', PRIMARY KEY (post_id), KEY forum_id(forum_id), KEY topic_id(topic_id), KEY poster_id(poster_id), KEY post_time(post_time) ) TYPE=MyISAM; # # Dumping data for table 'phpbb_posts' # LOCK TABLES phpbb_posts WRITE; INSERT INTO phpbb_posts VALUES (140,58,9,-1,1041262926,'430381c2','erin_post@msn.com',1,0,1,0,NULL,0),(133,54,13,-1,1037903747,'3fd60cdb','TCHS_forum_editor',1,0,1,0,NULL,0),(6,6,4,5,1018022338,'409aba29','',1,0,1,1,NULL,0),(7,7,4,5,1018022547,'409aba29','',1,0,1,1,NULL,0),(10,9,5,5,1018024674,'409aba29','',1,0,1,1,NULL,0),(11,9,5,-1,1018024955,'409aba29','TCHS_forum_editor',1,0,1,0,NULL,0),(12,10,6,-1,1018025753,'409aba29','TCHS_forum_editor',1,0,1,0,NULL,0),(13,11,4,5,1018038532,'d1f5ad16','',1,0,1,1,NULL,0),(14,7,4,-1,1018051258,'c65111a3','jdjnkns',1,0,1,0,NULL,0),(139,55,14,-1,1040409578,'44917f0a','Bob Morton',1,0,0,0,NULL,0),(17,14,5,8,1018107461,'cdbcc12f','',1,0,1,0,NULL,0),(19,15,7,-1,1018153540,'409abdee','TCHS_forum_editor',1,0,1,0,NULL,0),(20,16,1,-1,1018221956,'409abfeb','TCHS_forum_editor',1,0,1,0,NULL,0),(21,17,4,11,1018282803,'3fcd80a9','',1,0,1,0,NULL,0),(22,17,4,5,1018283671,'3fd60ea6','',1,0,1,1,NULL,0),(24,6,4,-1,1018287135,'a3961201','Donna Godfrey',1,0,1,0,NULL,0),(132,50,1,-1,1037776650,'44441de5','maxcindy',1,0,1,0,NULL,0),(26,19,4,13,1018807486,'c65110b7','',1,0,1,1,NULL,0),(46,29,9,-1,1020804198,'409ab917','TCHS_forum_editor',1,0,1,0,NULL,0),(28,19,4,14,1019061282,'c64e6f4a','',0,0,0,0,NULL,0),(29,19,4,5,1019422205,'d1b2bf6c','',1,0,1,1,NULL,0),(138,57,4,-1,1039392155,'41ef1c59','',1,0,1,0,NULL,0),(116,24,4,-1,1031268546,'a227b8fd','Maynard Peterie',1,0,1,0,NULL,0),(33,23,4,5,1020059454,'d1f5a687','',1,0,1,1,NULL,0),(34,23,4,19,1020266699,'a25d0e49','',1,0,1,1,NULL,0),(35,23,4,6,1020309097,'c651109d','',1,0,1,1,NULL,0),(39,24,4,5,1020464125,'d1f5a086','',1,0,1,1,NULL,0),(38,14,5,5,1020364012,'3fd60f09','',1,0,1,1,NULL,0),(40,19,4,-1,1020713968,'409ab89f','TCHS_forum_editor',1,0,1,0,NULL,0),(41,24,4,19,1020714348,'a25d0e49','',1,0,1,1,NULL,0),(42,25,11,-1,1020715206,'409ab89f','TCHS_forum_editor',1,0,1,0,1022856632,1),(43,26,12,-1,1020716197,'409ab89f','TCHS_forum_editor',1,0,1,0,1022184934,1),(117,48,1,-1,1031276341,'424b9ba9','Brad Fagan',1,0,1,0,NULL,0),(115,33,13,-1,1030835721,'3f326070','',1,0,1,0,NULL,0),(50,24,4,5,1021421775,'d1f5a081','',1,0,1,1,NULL,0),(51,26,12,27,1021857266,'181e7ced','',1,0,1,1,NULL,0),(114,33,13,44,1030727651,'0ff68f2d','',1,0,1,1,NULL,0),(53,17,4,-1,1022105056,'94401b45','Tim Randall',1,0,1,0,NULL,0),(113,48,1,-1,1030654284,'899617e8','gina',1,0,1,0,NULL,0),(55,17,4,5,1022175795,'43fa5298','',1,0,1,1,NULL,0),(56,17,4,-1,1022183279,'94401b45','Tim Randall',1,0,1,0,NULL,0),(57,17,4,5,1022184701,'43fa5298','',1,0,1,1,NULL,0),(58,17,4,-1,1022245444,'94401b45','Tim Randall',1,0,1,0,NULL,0),(59,31,13,-1,1022349305,'43fa520f','TCHS_forum_editor',1,0,1,0,NULL,0),(60,32,13,-1,1022349867,'43fa520f','',1,0,1,0,NULL,0),(61,33,13,5,1022366378,'43fa523c','',1,0,1,0,NULL,0),(62,25,11,13,1022376879,'c651119d','',1,0,1,0,NULL,0),(63,34,5,-1,1022547804,'43fa5306','TCHS_forum_editor',1,0,1,0,NULL,0),(64,17,4,7,1022727557,'44318c94','',1,0,1,0,NULL,0),(65,6,4,27,1023259134,'181e7ced','',1,0,1,1,NULL,0),(66,35,4,27,1023259491,'181e7ced','',1,0,1,1,NULL,0),(67,35,4,-1,1023298405,'416ba532','',1,0,1,0,NULL,0),(68,26,12,-1,1023298746,'416ba532','TCHS_forum_editor',1,0,1,0,NULL,0),(137,57,4,-1,1039373451,'40aea5bc','lisa uriarte',1,0,1,0,NULL,0),(70,35,4,-1,1023402992,'443189c2','',1,0,1,0,NULL,0),(71,36,14,-1,1024014909,'43fab403','TCHS_forum_editor',1,0,1,0,NULL,0),(73,35,4,5,1024016278,'43fab403','',1,0,1,1,NULL,0),(74,35,4,7,1024020212,'443189c2','',1,0,1,0,NULL,0),(75,36,14,7,1024020417,'443189c2','',1,0,1,0,NULL,0),(76,36,14,19,1024514851,'a25d0e49','',1,0,1,1,NULL,0),(77,36,14,5,1024533768,'43fab0cb','',1,0,1,1,NULL,0),(78,37,13,-1,1024621895,'43fabd52','',1,0,1,0,NULL,0),(96,40,14,5,1026343456,'3f325fcb','',1,0,1,1,NULL,0),(98,41,4,32,1026363572,'d1b3cdbb','',1,0,1,1,NULL,0),(97,40,14,-1,1026343955,'cc1fe4ca','',1,0,1,0,NULL,0),(95,40,14,19,1026335512,'a25d0e47','',1,0,1,1,NULL,0),(94,40,14,-1,1026246450,'3f325f4b','TCHS_forum_editor',1,0,1,0,NULL,0),(93,31,13,-1,1025911036,'042304da','test',1,0,1,0,NULL,0),(136,56,5,-1,1038767761,'41ef1c66','TCHS_forum_editor',1,0,1,0,NULL,0),(91,37,13,5,1025886240,'3f32649c','',1,0,1,1,NULL,0),(99,40,14,5,1026409999,'3f325f52','',1,0,1,1,NULL,0),(100,40,14,-1,1026493728,'c65110b3','grandpagball@aol.com',1,0,1,0,NULL,0),(101,41,4,6,1026622658,'cdbcd10e','',1,0,1,1,NULL,0),(102,35,4,6,1026705599,'400c60cc','',1,0,1,1,NULL,0),(103,42,14,-1,1027360227,'3f326037','TCHS_forum_editor',1,0,1,0,NULL,0),(104,31,13,-1,1027741178,'3f326069','TCHS_forum_editor',1,0,1,0,NULL,0),(130,55,14,-1,1037732817,'d1f5aa14','TCHS_forum_editor',1,0,1,0,NULL,0),(106,44,9,23,1028841519,'0c2aa183','',1,0,1,0,NULL,0),(129,33,13,-1,1037509805,'043c6147','',1,0,1,0,NULL,0),(108,35,4,5,1029264388,'3f32601b','',1,0,1,1,NULL,0),(109,45,13,-1,1029310009,'425133a1','katfish',1,0,1,0,NULL,0),(110,45,13,-1,1029339588,'3f326021','TCHS_forum_editor',1,0,1,0,NULL,0),(131,33,13,5,1037755730,'04236a49','',1,0,1,1,NULL,0),(118,49,13,5,1031952814,'3f326442','',1,0,1,1,NULL,0),(119,32,13,-1,1032153861,'c65111a8','',1,0,1,0,NULL,0),(120,50,1,-1,1032927679,'42d6c553','ChrisM70',1,0,1,0,NULL,0),(121,36,14,50,1033063367,'0cdbf3ac','',1,0,1,0,NULL,0),(122,51,1,52,1033270953,'cf8838aa','',1,0,1,0,NULL,0),(123,52,1,-1,1033935693,'187ec68b','Cheryl Kehrmeyer',1,0,1,0,NULL,0),(124,53,1,52,1034229738,'cf881768','',1,0,1,0,NULL,0),(125,54,13,-1,1034232171,'d8f41455','Janice Helmer',1,0,1,0,NULL,0),(126,50,1,5,1034358253,'41eb3349','',1,0,1,1,NULL,0),(127,11,4,-1,1034964709,'42da3b50','JRG',1,0,1,0,NULL,0),(128,11,4,5,1034991395,'41eb33ca','',1,0,1,1,NULL,0),(134,54,13,-1,1038040123,'d1b3e969','Janice Helmer (68)',1,0,1,0,NULL,0),(135,6,4,-1,1038304037,'44441de5','maxcindy',1,0,1,0,NULL,0),(141,35,4,-1,1041546356,'cd9b0f01','JHandley67',1,0,1,0,NULL,0),(142,7,4,-1,1041546760,'cd9b0f01','jhandley67',1,0,1,0,NULL,0),(143,35,4,6,1041574113,'c6511aea','',1,0,1,1,NULL,0),(144,58,9,5,1041633985,'41ef1c26','',1,0,1,1,NULL,0),(145,54,13,5,1042940543,'d1f5a5de','',1,0,1,1,NULL,0),(146,58,9,-1,1043300967,'4278e485','Mike Kim',1,0,1,0,NULL,0),(147,59,13,72,1043883358,'d1d1144a','',1,0,1,0,NULL,0),(148,32,13,72,1043883453,'d1d1144a','',1,0,1,0,NULL,0),(149,60,15,-1,1044568081,'416ba532','TCHS_forum_editor',1,0,1,0,NULL,0),(150,61,15,-1,1044568717,'416ba532','TCHS_forum_editor',1,0,1,0,NULL,0),(151,62,15,1,1045030119,'4348523b','',1,0,1,0,1045084868,1),(152,62,15,5,1045084443,'04236a2f','',1,0,1,1,NULL,0),(153,62,15,5,1045084481,'04236a2f','',1,0,1,1,NULL,0),(154,62,15,0,1045084546,'04236a2f','G guest test',0,0,0,0,NULL,0),(155,62,15,0,1045084929,'04236a2f','G guest test',0,0,0,0,NULL,0),(156,63,15,1,1045084929,'04236a2f','',1,0,1,0,NULL,0),(157,62,15,0,1045085050,'04236a2f','G guest test',0,0,0,0,NULL,0),(158,62,15,0,1045085135,'04236a2f','G guest test',0,0,0,0,NULL,0),(159,62,15,0,1045085405,'04236a2f','G guest test',0,0,0,0,NULL,0),(160,62,15,0,1045085465,'04236a2f','G guest test',0,0,0,0,NULL,0),(161,62,15,0,1045085549,'04236a2f','G guest test',0,0,0,0,NULL,0),(162,62,15,0,1045085579,'04236a2f','',0,0,0,0,NULL,0),(163,62,15,0,1045085640,'04236a2f','g test',0,0,0,0,NULL,0),(164,63,15,0,1045085772,'04236a2f','g tst',0,0,0,0,NULL,0),(165,44,9,1,1045087211,'04236a2f','',1,0,1,0,NULL,0),(166,51,1,0,1045087257,'04236a2f','test guy',0,0,0,0,NULL,0),(167,64,13,5,1045087510,'04236a2f','',1,0,1,1,NULL,0),(168,64,13,5,1045087528,'04236a2f','',1,0,1,1,NULL,0); UNLOCK TABLES; # # Table structure for table 'phpbb_posts_text' # DROP TABLE IF EXISTS phpbb_posts_text; CREATE TABLE phpbb_posts_text ( post_id mediumint(8) unsigned NOT NULL default '0', bbcode_uid varchar(10) NOT NULL default '', post_subject varchar(60) default NULL, post_text text, PRIMARY KEY (post_id) ) TYPE=MyISAM; # # Dumping data for table 'phpbb_posts_text' # LOCK TABLES phpbb_posts_text WRITE; INSERT INTO phpbb_posts_text VALUES (140,'708dfab68f','reunion','does anyone know if someone is planning a reunion for class of \'93???\r\nliving in arizona and happily awaiting news of a get together.\r\nif anyone knows please e-mail me @ erin_post@msn.com\r\nerin post aka erin hardick'),(6,'81d64a9186','Ben Godfrey',':?: OK, as the article says, Ben Godfrey was the first TCHS band director in the 50s. The unanswered question remains: How did \'TCHS Fight Song\' get into the Bruce Willis movie Unbreakable? (Our advice is that you take our word that it\'s in the credits, rather than watching the movie.)'),(7,'fca61264bc','TC Agriculture','Mike Coghlan \'57 asks: What crops were grown on what is now the TCJHS (Oak Avenue) campus before the school was built around 1950?'),(10,'2e5be3f658','Sponsoring the Forums','How is forum sponsorship arranged?'),(11,'2d312ee565','Sponsorship','A person, company or organization can sponsor The Forums. Sponsorship is normally for three month periods. Sponsors make a contribution to the Association in recognition of which their logo appears at the top of the forum, linked to the web address they specify. For more information write to advertising@tchsalumni.org.'),(12,'79d2663efd','Welcome!','This forum is for the exclusive use of currently enrolled TCHS students. We\'re sorry, but if you\'re under 14, you can\'t participate (for further explanation, contact Sen. Jesse Helms (R, NC)). Topics in this forum expire after 14 days if no new replies are posted. Please do not post replies to this announcement.'),(13,'730319b6a8','Flying Renault Dauphines',':lol: How many students does it take to put a Renault Dauphine at the top of the Lemon Avenue steps? Who might own such a vehicle? Who might do such a thing? 8) Could it happen more than once? What proof can you offer?'),(14,'2ff5c36417','TC Agriculture','I\'ll bet it was citrus. As I remember our back yard on Youngdale we had several valencia orange trees. Also an avocado whch mom and dad planted. 8)\r\n\r\nJohn Jenkins'),(139,'9ace82ad16','Girls of \'64','2nd / 3rd form left Shirley Moss, Sharon Goya, last on right is Sena Garrett.'),(17,'6f99cfa43d','Changing Username in Forum','I registered and put in a user name that I now want to change. I tried to reregister, using the new user name I want, but it says I cannot do that because the e-mail address is \"already assigned to another user\" which, of course, is me and the user name I want to change. What do I do? :?:'),(19,'881373c466','Private forum','Posting topics in this forum is reserved for members of the Class/57 group. To join the group, contact the moderator.'),(119,'c414582e16','','who asked about Jim Grandon? Where is Jim?'),(20,'b6eefac0e7','How to use this forum','Always check the Alumni Directory first; search for a person by last name, then by first name, or look at the class lists.\r\n\r\nTo ask about a friend in this forum, first create a new topic. In your original message, provide the person\'s name, class year and relevant identifying data. Then post your inquiry to ask the other alumni about your friend.\r\n\r\nWhen you get in touch with your friend, please encourage him/her to register in the Alumni Directory. That\'s how we advance our goal of finding everyone.\r\n\r\nHelp prevent spam and other abuse. PLEASE DO NOT post a friend\'s address, telephone or email in this forum. If you can answer a question, please reply directly to the person who requested the information, or reply to the post and initiate a private exchange. We also suggest that you NOT post your email; it can be \"harvested\" by web robots and added to their spam lists; we have no control over such illicit use of the postings. Instead, reply to the post saying you have info and encourage people to use the Private Message function, which does not go through ordinary email channels. --Ed.'),(21,'ad3d056352','Locker Combinations','Can you remember your locker combinations? You had two of them, you know - a book locker and a gym locker. My book locker combination was: 0--24-42. My gym locker was: 36-25-44.\r\n\r\nAnd your locker combinations were . . . ? :lol:'),(22,'25bc06769c','Lockers then and now','Here\'s a thought: Run over there and see if it/they still work(s).'),(24,'7a07d7d800','Ben Godfrey...the Music Man of Temple City','Ben Godfrey is listed in the credits of \"Unbreakable\" because he wrote the TCHS fight song and alma mater...those two songs were recorded several years ago by the TCHS band, and subsequently my mother gave permission for a sound track company to allow movies to use the songs as background music...even though he is not with us any longer, he would be please that his music is still being heard...Donna (Godfrey) Cannon \'72[list:7a07d7d800][/list:u:7a07d7d800]'),(26,'5d268720f6','Where are the people from the Class of 72\'???','This June will be 30 years since we Graduated from TCHS. I\'ve been looking forward to a Class Reunion. If anyone has any knowledge of a Reunion please contact me at my e-mail address. Bonnie Johnson :>)'),(46,'04ed733328','Start the ball rolling here!','Use this topic to start a discussion of potential reunions, or to comment on related topics. If a reunion is in the offing, contact the editor, and we\'ll start a thread for that reunion once a date is chosen.'),(28,'','Reunion','If you find out about a reunion please let me know.\r\n\r\nIs was interested by the age of your children. Mine are:\r\n\r\nGaryt 18\r\nSkye 15\r\nMarcy 8\r\n\r\n...almost the same as yours...'),(29,'27a5ffd3fe','Class of 72','Dear Bonnie and Gary, You can accelerate registrations by sending email to all your online correspondents, suggesting that they register. Soon we\'ll have the forums and the directory linked, but right now they\'re separate registrations, so you might like to check both the New Listings in the Directory and the New Members in the Forums from time to time. Also, in the Forums there\'s a Classes/Reunions category, and I suggest you maintain a topic there for your class. Finally, we\'re looking for volunteers to be class coordinators and forum monitors to stimulate discussions. Thanks for your interest, and we\'ll do what we can to help any reunion committee. Rees Clark'),(137,'448a96c939','Ardendale','I, too lived on Ardendale. Remember when that small plane crashed into the side of the Kimball\'s house? Back in late 80\'s or early 90\'s'),(138,'abca686e3a','Plane in trees','That plane among the trees would make a great photo for the archives. Anybody have one? It was in all the newspapers at the time. (If you scan one, please get permission from the source before sending. RC)'),(33,'764bf75de6','The Dancers (May 2002)','Who are the dancers depicted in the photos? (Spring 2002 edition; one couple appears on the front page, and in the accompanying article a dance is in progress.) Our erstwhile source says this is about 1957 or \'58. The real trick, of course, is naming the people with their backs to the camera. Is that you in the pink...?'),(34,'9e82e9cae4','The Dancers','Carol Strangman and Ken Conklin (my best guess - but then, my memory isn\'t what it used to be!)'),(35,'e1178dfb92','Who are We?','I was leaning toward Barbara Kahn and Ken Conklin but thinking about it, Marilyn is probably closer to the truth. I haven\'t checked the yearbook for pictures. Have to find it first.'),(38,'81a966d9d4','You can change your user name.','You can log into your original account and change the user name in the Profile. Your actual identifier is a magic number known only to the ancient soothsayers deep within The Forums (next to the towel rack); the visible name is a convenience for us mere humans. The system will not let you duplicate another user\'s monicker, but you can change it to a new one or just make a modification. All old posts will carry the revised monicker.'),(39,'11318a6751','What do you mean "it wasn\'t always TC Blvd?"',':?: In the early 1950s TC Blvd. got its new (current) name. Before that it was called something else. Remember what it was? What year did it change? (BTW, the folks in Arcadia couldn\'t stand having a street named after us peasants, so they kept the old one. If you have to drive up to Huntington Dr. to look, please be honest when you respond.) :D'),(40,'99ff3712fa','Topic has moved','Please continue this topic under Classes and Reunions. A new \'72 reunion thread has been opened there. This topic will be automatically deleted soon.'),(41,'e7073099a2','What do you mean it wasn\'t always "Temple City Blvd.&qu','As I recall, (the snobs in) Arcadia kept it as \"Sunset Blvd.\" once TC Blvd. crossed into their turf.'),(42,'c789e11ffc','Reunion \'72 (2002)','Your class has a reunion planned. No more information is currently available. The event is being managed by Great Reunions (http://www.greatreunions.com). Look up California, then TC, then \'72.\r\n\r\n5/31--See updates in replies below.'),(43,'cf0e0a8dc5','Reunion art deco style','Your class has a reunion planned. Interim details: Saturday, August 17, 2002; reception - 6:30 pm, dinner - 8:00 pm., at the Queen Mary\r\n1126 Queens Hwy Long Beach, CA 90802, 562-435-3511. More info is at http://www.greatreunions.com; find California, then TC, then \'82.'),(120,'967b398d22','What about...?','[color=blue:967b398d22]Does anyone know about Mr. Peterson, History; Mrs. Henning, Business; Mrs. Samoraczk (?), French, German?[/color:967b398d22]'),(121,'9974ababc8','','My guess is that the current TCHS students would look at the pictures, check out the year, then go to the student parking lot looking for some clue to where the hitching posts used to be.'),(122,'79c50dc5c8','Pamela Ball (\'64) and Lance Ball','Does anyone know how to contact and say \"Hi!\" to either Pamela or Lance Ball? Thanks in advance!'),(116,'8c0f73bedb','Sunset Blvd.','I remember when I was a kid going to La Rosa School. At that time a drugstore was located on the southwest corner of Lower Azusa Road and \"Sunset Blvd\". Its name was \"Sunset Drugstore\". Long live the Class of 65\'.'),(117,'87123d54a7','Carla Venti','I dated Carla. I have not heard from her at all but I will check around. Email me and we can discuss this more.\r\n Brad Fagan bjoorn@aol.com'),(118,'e04c8eb722','Don\'t even think about renaming the stadium','There has been talk in TC and on various bulletin boards of renaming the stadium in honor of long-time football coach Bob Hitchcock. I suggest a bit of reflection and a little study of TC history. A visit to the campus reveals few mementoes of the past, and this is perhaps emblematic of a lack of knowledge of the road the school\'s founders trod.\r\n\r\nNorth Field is named for a person, not a direction. Renaming a monument dishonors both the original honoree and the past in general. The conditions under which the TC teams prospered were set in motion years before by Howard Beckner (as in Beckner Gymnasium) Arthur North and many others, both footballers and \"mere\" fans, students, teachers, and administrators. When someday another coach becomes even more successful, would it then be right to erase the memory of Mr. H, who, ironically, also taught history?\r\n\r\nGive this some more thought and find another suitable memorial. :o'),(50,'48dddf44cf','And I thought this would be hard','Marilyn, you\'re toooooo good! But then, we knew that.\r\n\r\nFriends, we need some harder questions. Any registered alumnus can start a new thread. If you have trouble adding a topic, be sure you\'re registered, read the FAQ; last resort: ask a member of the vast editorial board. Actually, some readers have described the editorial board as only half vast, but that\'s another topic.'),(51,'d63c8c8f68','',':cry: Why does this reunion have to be at the Queen Mary? Who makes these decisions? \r\n\r\nLet\'s have the renunion somewhere in Temple City. That makes more sense to me. \r\n\r\nBy the way, I am very glad to see that there finally seems to be a rather stable new web site for TCHS Alumni. The last one was a disaster. I spent two years trying to get them to change an incorrect email address!\r\n\r\nBest Regards, Ted'),(115,'6bc3f8c3e2','Kazoo for you','Good. I saw another reference to Rhino. I think maybe you had to be there.\r\n\r\nIf anyone has a copy of the record, perhaps we could \"review it\" for the benefit of alumni whose kazoo education was neglected. A sound bite or three on the alumni site would be classy.'),(53,'e094f4e8c3','Lock combos',':? My Locker partner was Tibor Toth!..he chewed the lock off before Christmas break!'),(113,'2d0bcad49f','class of 76 yearbook','[color=blue:2d0bcad49f][/color:2d0bcad49f][size=18:2d0bcad49f][/size:2d0bcad49f]\r\n\r\nI recently bought a 1976 Templar High School yearbook at the salvation army. The book belonged to a Carla Venti who would have graduated in 1979. I am looking for someone who may want this yearbook or knows how I can get it back to Carla. I know that I could never give up my high school yearbooks, and if I were her I would want it back.\r\nJust inquiring.\r\n\r\n-Gina\r\n\r\nplease e-mail me with any information....\r\nhula2z@aol.com'),(114,'5e638cfe7d','','I did not particpate in the TCKO, but as I recall- not only were they on the show, there was a record produced as well. I barely remember the cover, I think it was done by Rino Records (?) in Pasadena before they became well known... (not sure though)...sorry, not much help.'),(55,'479f647145','Tibor Toth\'s Teeth','Great post! I saw Tibor\'s name in one of the other lists we\'re using. He hasn\'t registered. So your marching orders are to track him down and see if there\'s any residual dental damage.\r\nRC'),(56,'b00d8eda08','locks',':?: Tibor had teeth?..'),(57,'3df50c14bb','Teeth','Of course I merely inferred it from your report of his lock chewing exploits. Perhaps I was too hasty. RC :)'),(58,'1ecbf19bec','combos','Geeze!..I can\'t remember what I had for breakfast, and Mike wants combinations! :('),(59,'d49df15e29','Everything Else','This topic is for all the open discussions that don\'t quite fit into one of the categories. Registered users, please open topics within the appropriate categories to keep this topic from becoming unmanageable. Visitors, if you\'re looking for TC folk or want more info, this is the place.'),(60,'2452160ce3','Jim Grandon','Steve Smith says all is well. Be in touch. --Admin.'),(61,'a8f576eca4','Temple City Kazoo Orchestra','According to something called \"Timelines,\" on Feb 15, 1979, The Temple City Kazoo Orchestra appeared on the Mike Douglas Show. What was the TCKO? Did you participate? Tell us more!'),(62,'3c43192ba1','Class of 72\' Class Reunion','I just visited the Great Reunions website and a reunion is planned for Oct. 12th at The Pasadena Hilton Hotel.You can go to the website for all the info and maps on how to get there.................Bonnie Johnson(Class of 72\')'),(63,'b16532c5cf','Moderate a Forum!','TCHS Alumni News needs forum moderators. Two important roles are defined for volunteers: Forum Moderator and Class Coordinator.\r\n\r\nThe Moderator is responsible for publicizing the respective forums and for organizing special events and topics. Moderators also keep their forums on-topic, or they may choose to create branches to accommodate subjects of the day.\r\n\r\nThe Coordinator is responsible for validating class lists and for intra-class communications. As the association and the magazine grow, the Coordinator will also become the organizer of class news.\r\n\r\nIf you would like to undertake one of these tasks, please write to the editor (editor@tchsalumni.org).'),(64,'baa2d23858','Locker Combinations','I\'m with you Tim. With all the passwords, pin numbers, account numbers, and phone numbers (3 for just myself) to remeber, to think I can remember a locker combination I had 42 years ago is phenomenal. Way to go Mike!! 8)'),(65,'43187c9664','Mr. Godfrey','Yes, I remember him very well. He also spent time teaching some Elementary classes. I remember learning how to play the spoons with him! I also remember visiting his house and becoming friends with his son. I was 4 or 5 at the time, and my babysitter lived on the corner of the street the Godfreys\' lived on.\r\n\r\nI remember being rather perplexed and amused by the name God Free..that is when I was 5.\r\n\r\nBrings back memories.\r\n\r\nBest, Ted\r\n\r\nPS. If my calculations are right, Mr. Godfrey had a son that should be around 42 years old now, right?\r\n\r\nPSS. Can\'t wait to hear that song again. :lol: :lol:'),(66,'38f246d0a4','Okay smarties, tell me why it\'s called Temple City...','I have enjoyed studying the history of the San Gabriel Valley and environs. Finally answering the question about how Temple City got its name (and a whole lot more) was a great pleasure. Now you try and answer.'),(67,'fba862a19c','It sprang wholly formed from the leaf of an agave','Great question, Ted. I know the answer, but then I was there at the time. Rees'),(68,'f8f3d25902','Changing alumni records','Thanks for the kind word, Ted.\r\n\r\nAny registered user can change his/her email address easily here. When everyone is fully participating, it\'s easy to organize reunions and other events.\r\n\r\nIn the Forums, just click Profile and edit your file.\r\n\r\nIn the Alumni Directory, click the blue pencil at the bottom of your personal page. The system will ask for your password and then display an editing form. If you don\'t know your password, the system will send it to you. Easy!'),(70,'97212cb74a','A Little Hint','The following web site might give you the answer for those interested in this subject. I reached it via the links provided on the TCHS site.\r\n\r\nhttp://www.templecitychamber.org/history.html\r\n\r\nUnlike Rees, I was not there having spent only 2 years in Temple City and 2 years at TCHS.\r\n\r\nJane :D'),(71,'14427eaec0','Conspirators?','This group of six posted June 3 is (not) studying a map of the forum as Caesar approaches. Who? Date? Color of 4 matching sweaters? (The last, as the cognoscenti will immediately realize, is a trick question.)'),(73,'3b2064876e','Cheating on Ted\'s Exam','Hey! No research allowed. The answer is supposed to spring from the deep well of historic knowledge into which all TC students are dipped during one or another rite de passage. :idea:'),(74,'9cd6c5931e','Well when necessary, one does the obvious','Since the admin so kindly provided the links, how could I not take advantage of such information? However I did not give the answer, only a hint. \"Give a man a fish and he will eat for a day, teach a man to fish and he will eat for a lifetime\", or some such drivel!!! Jane McNeil \'60 :D'),(75,'2673dc7080','Working on It!!!','Just searched the 1960 yearbook and did not find a clue... still searching!!!! Jane McNeil 1960 :)'),(76,'3033adf2c9','','Strictly from memory - My yearbook is in storage. (L-R) Nina Hall, Kathy Foley, two really cute guys from the class of 1960 whose faces are familiar but whose names just won\'t pop into my head, Deena Matlack and Jackie (aka Jacqui) Warner. Probably picking out their graduation announcements for a yearbook photo. Sweaters on Two Guys, Deena and Jackie are charcoal grey trimmed in white - 1960\'s senior class colors. It scares me I can remember this stuff!'),(77,'df1f80844c','Rear view','Marilyn, If you keep this up, it will be necessary to post pictures of the backs of peoples\' heads. Attention readers: We need yesteryear pictures from other eras if we\'re to cultivate another generation of Marilyns, an outcome devoutly to be wished. R'),(78,'6819055aa5','Old photos','Does anyone have old class photos? I\'m specifically looking for Mrs. Bausman\'s second grade 1949-50. If you do and can scan at 600 ppi that\'s great. If not, I\'ll treat with TLC. Please reply before sending anything.'),(93,'f81978f8b3','test','test'),(94,'bb88ebb30d','Heroes 4 (7/5/02)','Who are the four football players. What year was the photo taken? How did the season turn out?'),(95,'73822b7386','','I can\'t tell from the photo if John Bibler, Reagan Martin, Jack Norberg and Roger Adamson were freshmen at the time, but if so perhaps it was when the \"C\" football team won the Rio Hondo League Championship in \'56-\'57. Of course, if this is actually the Varsity season for the same guys, I\'d have to guess they were all honored as MVPs. Am I remotely close, Rees?'),(96,'4f827fca6f','Rats!','There\'s no fooling Marilyn.\r\n\r\nOK, right people. What year? What season outcome?'),(97,'5d27e60c96','Re: Rats!','[quote:5d27e60c96=\"rees60\"]There\'s no fooling Marilyn.\r\n\r\nOK. Right people. What year? What season outcome?[/quote:5d27e60c96]\r\n\r\n\r\nThe year was 1959. The guys are Johnny Bibler ( top L ) and Reagan Martin ( top R ) and Jack Norberg ( bottom L) and Roger Adamson ( bottom R). \r\nFrom Bobbie Johnson ( Norberg)'),(91,'666d0a0dbf','Who Are We?','Still looking for old photos. Want to use them in the Who Are We feature. Especially desirable, pix of elementary school classes or pix of well known individuals in your class whose appearance has changed since graduation. For most, 20 years is plenty.'),(136,'1ab9939dc9','Usernames and logging into Alumni Forums','User names and login IDs and passwords are at this writing NOT synchronized between the forums and the directory or alumni sites. The Forums, Directory and Alumni Sites are three separate systems. We are currently working on synchronization that will unify your registration and login procedures. When a solution is reached, it may be necessary to assign each user a new login ID, so don\'t fall in love with your nickname or password. The best forum username is some combination of your name and class year -- \"jsmith1958\" -- that is easy to remember and evocative of your real name. This forum is not intended for anonymous posting, so obscure pseudonyms don\'t get one very far.'),(98,'7f969a83ec','Ardendale Avenue and Ward Kimball','Recently drove down Ardendale Avenue (not having been there in quite a while). Wow, the palm trees by my house are a LOT taller! And what happened to the Bibler place on the corner? Yesterday (July 9) we read of Ward Kimball\'s death, which brought back lots of memories...from crashing into a car (I was on my bike, coming out of the Kimball driveway) to the wonderful trains.'),(99,'69e203087d','Almost there','That leaves only the season record. You\'ll have to do some research!'),(100,'9234c28b09','Re: Almost there','[quote=\"rees60\"]That leaves only the season record. You\'ll have to do some research!\r\n\r\n\r\n the record was................4wins..........5 LOSES :wink:'),(101,'980991fc00','','Hi Karen;\r\n\r\nIf my memory is correct, your family lived directly in front of our house (we were over your back wall on Youngdale--same address). What memories the trains at the Kimballs and all the rest. I haven\'t been in the neighborhood for several years but will have to take a trip down memory lane one of these days.'),(102,'9ea1717487','','Hey Rees;\r\n\r\nJane is right. The answer is on the city web page courtesy of the Chamber of Commerce\r\n\r\nJohn'),(103,'dc34b890ee','Who Are We Gallery','The graphics from former Who Are We features are now archived in the Who Are We folder in the Photo Gallery.\r\n\r\nATTENTION! Send pictures to the editor for consideration! We can\'t do it all alone; we need your photos. \r\n\r\nTypes of photos: Kidpix, before HS; HS days pix never in yearbook; alumni as they are now.\r\n\r\nSee the specifications in the Send News section. General format: JPEG, four to six inches in larger dimension, save at 72 pixels per inch.'),(104,'e97cc06fd8','Confidence','Oh, ye of little faith, ye should have greater confidence in the message board. Yea, it may come as a surprise that we actually tested this BEFORE we opened it to ye. :wink:'),(132,'8b28f5d11f','Mrs. Henning','The last I heard from Mrs. Henning was about 10 years ago after I had written a letter to her. She had retired from teaching and was living in Pasadena. Her health at the time was excellent (according to her).'),(133,'f53f3badc5','Revision dates','Good suggestion. It\'s already in the development queue for inclusion in the automated features. When finished, it will track additions and changes to news articles only. New special features (e.g., additions to the honor roll, may they be few) will be announced in articles. The interactive message board has its own dating, which is separate from the news magazine.\r\n\r\nThanks for caring. RC'),(106,'5a53ed9555','Class of 1969',':lol: [b:5a53ed9555][i:5a53ed9555][color=green:5a53ed9555][/color:5a53ed9555][size=18:5a53ed9555][/size:5a53ed9555]\r\n\r\nWe are in the early planning stages of holding a 35th Reunion for the class of 1969. This is a preliminary notice to determine how many would be interested. We are seriously looking into holding it in Las Vegas and would need to get an idea as to how many would like to attend. Please let us know and we\'ll contact you with the finer details at a later date.\r\n\r\nJan Case\r\njanetalkadis@usa.net[/i:5a53ed9555][/b:5a53ed9555]'),(129,'244d4e0a86','','Rhino records is owned by 2 tchs alums- class of 71 i think. They put together a kazoo band that was featured on the dr. dimento show.'),(130,'f878fd266b','Girls of \'64','The current edition carries a photo from the 1960-64 reunion Oct 5. Can you ID the ladies?'),(131,'84259625dd','Kazoo 4 U','This story is worth of an article in the magazine. Kazoo fans should email their info using the Send News link in the Contents.\r\nRC'),(108,'6abd786442','Town of Temple','Chamber of Commerce in TC at SE cor. of Las Tunas and Sultana has some great old photo enlargements of early \"Town of Temple\" including a Rose Parade float that says merely \"Temple\" -- neither town nor city. TC C/C is run by TCHS grads Linda Payne \'68 and Susan Pease \'66.'),(109,'b1e26aadf3','is anyone still around from the class of 1967?','Is anyone still around from the class of 1967?'),(110,'6463a5d11b','Class of 67','Now that you ask, katfish, as of today there are 14 members of \'67 listed in the alumni directory. (Click Directory/Alumni in the Table of Contents.) The directory is a separate registration from the forum; if you haven\'t registered please do, because that\'s how we disseminate regular messages to alumni.\r\n\r\nYour class can have its own forum, and it can also have its own site with newsletter running under the overall banner of TCHS Alumni News; all that takes is a volunteer coordinator-editor.\r\n\r\nAnd tell your friends! Your invitation is worth ten of ours. If you have email addresses for classmates from \'67, use the simple Invite A Friend form in the Table of Contents.\r\n :D'),(134,'c7456ff75d','TCHS Alumni News','Rees, no good idea should go unpaid. What do I get and where do I collect? :lol: \r\n\r\nYou are getting the Alumni to register/join, but what are you doing to get everyone talking??? There are soooo many years between graduating classes that it is hard for us of the later 60\'s to relate or know anything about the early 60\'s and late 50\'s not to mention anything after the 60\'s. Who are all these young kids from the 80\'s and 90\'s signing up and why don\'t they have anything to say to the rest of their school friends? Do they even check the message and discussion forum? Isn\'t there anything in general they\'d like to ask all their former friends? \r\n\r\nWhy not set up a message and discussion forum for each generation and have someone from each class start a subject to see if they can get something going. :idea: :idea: :idea: I\'m seeing $$$$$$ in my future!'),(123,'0e8c5d9446','Mike Cluck - Class of 1983','Has anyone hear from Mike Cluck or know where he is since graduation? He did not show up at our 10 year reunion and the last I heard he was in Germany. If anyone has any information on him, please email me at ckehrmeyer@attbi.com. Thanks.'),(124,'ee20be49ce','James Furst (\'62)','Does anyone know the whereabouts of James Furst? Or, how to contact him via phone or email? Thanks in advance -- Joe Glockner (\'62)'),(125,'1db2a0b767','TCHS Alumni News','It would centainly be helpful if there were a revision date on the front page so we\'d know each time something is added to or removed from the magazine. :idea: :idea: :idea:'),(126,'95bf98aea0','Mrs. Samorajczk','When I enrolled in a German class at UCLA as a senior in 1963/4, I discovered Mrs. Edelgard Samorajczk (sp?) taking the same class in \"Middle High German Literature\" with one Prof. Baeuml. Taught in German, the class covered a period of German literature similar to reading Chaucer in English. One had to translate into Modern German and then into English. I was over my head as the only student who was not a German major or a grad student, and there were several \"save Rees\" meetings before tests. Nice lady; never had her as a teacher at TCHS, though.'),(127,'0c45ef31e3','Renault','I don\'t remember if it was a Renault (it was a small import), but Onderdonk (math teacher) had a small car. We would pick it up and set it over a log in the, then unpaved, parking lot.\r\n JRG'),(128,'7303b7755c','Flight schedule','This particular Dauphine belonged to one Darrell Linthacum (sp?). It flew up the steps on about three occasions. As I recall, it was a four seater on the inside but about a six to eight man car on the outside during flight operations. There\'s a picture of it in the 1960 yearbook.'),(135,'411a865e3c','Ben Godrey','Does anyone remember that the members of the band and drill team used to refer to Mr. Godrey as God Benfry? I\'m sure it was used to describe his somewhat \"stellar\" personality.'),(141,'846ef35791','Temple City','Without looking it up, I\'m going to say that \"Temple City\" was named after a man named Walter Temple, who first started building up the place in about 1900.'),(142,'d5c28f764c','Agriculture','I think TCHS was built on property formerly owned by Cal Tech, and that they were using it to grow corn; for what experimental purpose I can\'t imagine, let alone remember.\r\nThe school district was really lucky to find a chunk of land that size still available.'),(143,'b2340fc75b','OK Smarties','So how accurate is that info?'),(144,'514bde8c43','Keep editor posted','Hi! When sending a reply to Erin, please keep the editor posted at editor@tchsalumni.org. We have a number of list management and publicity services to help your reunion along. Your registration in the Directory can also help your reunion coordinator communicate with all your classmates. \r\n\r\nThanks, \r\nRees'),(145,'9fc04f98f6','Point taken','Hi! Missed this item earlier. Any group can create a topic just by writing to the editor. I\'ll be happy to set up a moderated topic or even a user group, as long as someone takes responsibility for moderating. Such topics would be set up with automatic \"pruning\" to keep them from getting stale. The moderator is responsible for keeping them \"alumni-friendly.\'\r\n\r\nIndividual classes, subject areas, etc., are all good user groups within the assn. and magazine. They can be open to all or by invitation, though we\'d like to keep them mostly open to attract the maximum number of participants.\r\n\r\nIndividual classes can also have their own class sites, each with its own newsletter, photo gallery... Again, this requires that someone step forward as the moderator/editor.\r\n\r\nWe\'re adding capabilities all the time.\r\n\r\nThanks for the comment.\r\n\r\nRees'),(146,'5be054e80c','Class of 93\' reunion?','Hi Erin,\r\n\r\n Yeah, I\'d like to know if there\'s a reunion planned too. Please let me know! Gosh, I really miss Arizona! Wish I were back!\r\n\r\nmjoonki@hotmail.com\r\n\r\nI\'m lookin forward to seein everyone again!\r\n\r\nMike Kim'),(147,'bac3cd275b','Carol Lamb?','Desperately seeking Carol Lamb. Does anyone know how to contact her?'),(148,'a5780d1b4b','I sure remember','I sure remember Jim Grandon and Deanna Truitt!'),(149,'42ec9f29ef','Interactive Forum','This will be our first attempt at a live forum discussion. During the program, reload the forum frame periodically to see new comments. (Registered users can create new discussion topics for sidebar discussions.) When voting in the ongoing poll, see the rules below.\r\n\r\nEnjoy! :D \r\n\r\n(Poll will be enabled the day of the program.)\r\n\r\nTo register your opinion initially, vote for the position you wish to assert.\r\n\r\nChanging your vote requires voting twice: the first makes the count neutral, the second switches your vote.\r\n\r\nPlease don\'t stuff the ballot box by voting extra times; if you follow the simple once to vote, twice to change rule, we\'ll have a running opinion tally while the program proceeds.'),(150,'2a6e73438a','Yes, he did! No, he didn\'t!','Use this topic for general discussion of CBS 48 Hours \"Balcony Case\" with Mike Coghlan, public defender.'),(151,'ec7c0e121f','Did he, or didn\'t he?','Use this forum to discuss CBS 48 Hours episode scheduled for 2/12/03. During the presentation, venture your opinions. Did he? Didn\'t he? Let\'s see what kind of jurors we alumni make!\r\n\r\nHow to:\r\n\r\n1. Write your comments in one of the other topics in this forum. Registered users can add threads (new topics).\r\n\r\n2. Reload this frame intermittently to see what others are saying.\r\n\r\n3. You can also vote in the associated poll. To vote for the first time, just make the appropriate selection and click the Vote button. To change your vote, (assuming you voted Yes at first), vote No twice; the first cancels out your Yes vote, and the second records your new position. Please don\'t pad the ballot box.\r\n\r\n :cry: We\'re having a bit of a problem with our poll. Hang in; we\'ll try to have it fixed by \"game time\" if we can.'),(152,'832a4e18b9','test','test'),(153,'b25a5c4cf2','test 2','test 2'),(155,'','Re: test','[quote=\"rees60\"]test[/quote]\r\n\r\nreally'),(156,'445ba25f16','Guilty or Innocent','Whaddya think? Diddee do it?'),(157,'','Re: test','[quote=\"rees60\"]test[/quote]\r\n\r\nreally'),(158,'','Re: test','[quote=\"rees60\"]test[/quote]\r\n\r\nreally'),(159,'','Re: test',''),(160,'','Re: test','[quote=\"rees60\"]test[/quote]\r\n\r\nreally'),(161,'','Re: test','[quote=\"rees60\"]test[/quote]\r\n\r\nreally'),(162,'','Re: test 2','[quote=\"rees60\"]test 2[/quote]\r\n\r\ntest 3'),(163,'','test','another test'),(164,'','','test'),(165,'9015278a6f','','test'),(166,'','','test'),(167,'4a51f43d49','Test','Test'),(168,'c6836647f5','Reply to test','Reply'); UNLOCK TABLES; # # Table structure for table 'phpbb_privmsgs' # DROP TABLE IF EXISTS phpbb_privmsgs; CREATE TABLE phpbb_privmsgs ( privmsgs_id mediumint(8) unsigned NOT NULL auto_increment, privmsgs_type tinyint(4) NOT NULL default '0', privmsgs_subject varchar(255) NOT NULL default '0', privmsgs_from_userid mediumint(8) NOT NULL default '0', privmsgs_to_userid mediumint(8) NOT NULL default '0', privmsgs_date int(11) NOT NULL default '0', privmsgs_ip varchar(8) NOT NULL default '', privmsgs_enable_bbcode tinyint(1) NOT NULL default '1', privmsgs_enable_html tinyint(1) NOT NULL default '0', privmsgs_enable_smilies tinyint(1) NOT NULL default '1', privmsgs_attach_sig tinyint(1) NOT NULL default '1', PRIMARY KEY (privmsgs_id), KEY privmsgs_from_userid(privmsgs_from_userid), KEY privmsgs_to_userid(privmsgs_to_userid) ) TYPE=MyISAM; # # Dumping data for table 'phpbb_privmsgs' # LOCK TABLES phpbb_privmsgs WRITE; INSERT INTO phpbb_privmsgs VALUES (1,0,'Welcome, You\'ll Always be User Number 1',5,4,1017987896,'d1f5a09a',1,0,1,1),(3,2,'Test',5,5,1017988038,'d1f5a09a',1,0,1,1),(4,2,'Welcome, You\'ll Always be User Number 1',5,4,1017987896,'d1f5a09a',1,0,1,1),(6,1,'TCHS Forums',5,3,1018023387,'409aba29',1,0,1,0),(13,1,'Class/57 group and forum',5,8,1018154178,'409abdee',1,0,1,1),(10,2,'test',5,2,1018120324,'3fd60f6c',1,0,1,1),(12,2,'Test private message',5,5,1018120207,'3fd60f6c',1,0,1,1),(14,2,'Secret message; do not read',2,7,1018120697,'3fd60f6c',1,0,1,0),(45,2,'Sunset Blvd.',2,19,1020714504,'409ab89f',1,0,1,0),(16,2,'Testing the private messages in the forums',5,7,1018064001,'d1f5ad16',1,0,1,0),(36,2,'Re: Testing the private messages in the forums',5,7,1019422390,'d1b2bf6c',1,0,1,1),(57,1,'Address?',32,53,1037728422,'d1b399a3',1,0,1,1),(56,2,'Re: Four Guys in Football Uniforms',19,5,1026331832,'a25d0e47',1,0,1,1),(21,5,'Forum Message Test',5,11,1018282863,'3fd60ea6',1,0,1,1),(23,2,'User Name Change',11,5,1018283058,'3fcd80a9',1,0,1,0),(24,5,'Re: User Name Change',5,11,1018283455,'3fd60ea6',1,0,1,1),(25,5,'Where the hell is the class of \'72',12,4,1018287900,'a3961201',1,0,1,1),(26,2,'Re: Testing the private messages in the forums',5,7,1018208596,'409abfeb',1,0,1,1),(53,0,'Re: Four Guys in Football Uniforms',5,19,1026246306,'3f325f4b',1,0,1,1),(54,2,'Re: Four Guys in Football Uniforms',5,19,1026246306,'3f325f4b',1,0,1,1),(55,0,'Re: Four Guys in Football Uniforms',19,5,1026331832,'a25d0e47',1,0,1,1),(30,5,'1972 30 Year Reunion',4,4,1018368553,'cdbcc79d',0,0,1,0),(31,2,'Re: Testing the private messages in the forums',5,7,1018366092,'acbf9170',1,0,1,1),(37,3,'Sometimes Dull Is Not So Bad',7,5,1019435259,'44318c94',1,0,1,0),(33,1,'GreatReunions.com',6,3,1018410558,'400c671d',1,0,1,1),(52,2,'Four Guys in Football Uniforms',19,5,1026245922,'a25d0e47',1,0,1,1),(40,2,'Re: Sometimes Dull Is Not So Bad',5,7,1019438470,'d1b32c2f',1,0,1,1),(41,3,'Re: Sometimes Dull Is Not So Bad',7,5,1019504457,'cf561c32',1,0,1,0),(51,0,'Four Guys in Football Uniforms',19,5,1026245922,'a25d0e47',1,0,1,1),(43,0,'Hi!',2,19,1020714153,'409ab89f',1,0,1,0),(44,0,'Sunset Blvd.',2,19,1020714504,'409ab89f',1,0,1,0),(46,2,'Hi!',2,19,1020714153,'409ab89f',1,0,1,0),(50,2,'Re: Hi!',19,2,1020891483,'a25d0e47',1,0,1,1),(49,2,'Re: Sunset Blvd.',19,2,1020891509,'a25d0e47',1,0,1,1); UNLOCK TABLES; # # Table structure for table 'phpbb_privmsgs_text' # DROP TABLE IF EXISTS phpbb_privmsgs_text; CREATE TABLE phpbb_privmsgs_text ( privmsgs_text_id mediumint(8) unsigned NOT NULL default '0', privmsgs_bbcode_uid varchar(10) NOT NULL default '0', privmsgs_text text, PRIMARY KEY (privmsgs_text_id) ) TYPE=MyISAM; # # Dumping data for table 'phpbb_privmsgs_text' # LOCK TABLES phpbb_privmsgs_text WRITE; INSERT INTO phpbb_privmsgs_text VALUES (1,'e2f814304b','Hi! Welcome to The Forums @ TCHS Alumni News!\r\n\r\nYou\'re the first \"real person\" to register in the new forums; the others are all administrators or moderators. You even beat me (Rees Clark \'60) into the system. We had a temporary version up, but this is the real thing. Some appearance features will gradually be \"Temple-ized\" over the next few weeks.\r\n\r\nPlease feel free to play; there are many toys here, including links to instant messaging, user groups and more.\r\n\r\nWe\'re still investigating all the new features, like the automatic 8) smileys.\r\n\r\nBTW, you\'re still fairly anonymous. The system is displaying your email (you left that setting turned on) but I can\'t see your name or other info.\r\n\r\nYour kindly old editor,'),(3,'c80534adf8','Test'),(4,'e2f814304b','Hi! Welcome to The Forums @ TCHS Alumni News!\r\n\r\nYou\'re the first \"real person\" to register in the new forums; the others are all administrators or moderators. You even beat me (Rees Clark \'60) into the system. We had a temporary version up, but this is the real thing. Some appearance features will gradually be \"Temple-ized\" over the next few weeks.\r\n\r\nPlease feel free to play; there are many toys here, including links to instant messaging, user groups and more.\r\n\r\nWe\'re still investigating all the new features, like the automatic 8) smileys.\r\n\r\nBTW, you\'re still fairly anonymous. The system is displaying your email (you left that setting turned on) but I can\'t see your name or other info.\r\n\r\nYour kindly old editor,'),(6,'615f8fbcc6','Hi!\r\n\r\nThe Forums @ TCHS Alumni News has a topic on the reunion. I have used your email address. You are identified simply as \'chairman6064\'.\r\n\r\nYou may wish to begin using the Forums as a means of communication with invitees and attendees. The number of registered users in the magazine as a whole is now about 80; the number registered in the Forums, which were just added this week and then updated yesterday, is much less.\r\n\r\nRees Clark :D'),(13,'b95e7ed410','While I\'m learning how, I think I\'ll leave myself as forum moderator for Class/57.'),(10,'b13f3a79bc','test'),(12,'5e7653e54d','Sent mail to Mike C.'),(14,'f81f0a49c5','Hi! Once again you\'re the subject of an experiment.\r\n\r\nIf you have your Profile set to pop up a window when you get a private message, your browser will have done so. If not, you\'ll discover this eventually. Let me know which happens.\r\n\r\nRees'),(45,'1aee1f21fc','You\'re too good.\r\n\r\nFair\'s fair. Send me some HARD questions.\r\n\r\nRees'),(46,'9b9b11e8b1','I don\'t usually look at who\'s on line. I\'m glad it\'s you. We\'ve had almost 1,800 readers and 154 registrations (Across all classes) as of today. Of course, \'60 is most represented.\r\n\r\nRees'),(16,'266d6794e3','Hi! You register, you pay the price: Annoying unsolicited email.\r\n\r\nActually, this is a guinea pig message (sorry). I needed to try the private message capability.\r\n\r\nWe put the previous version of the forum up earlier in the week after waiting and waiting for the upgrade. They of course released it the next day. We looked at the feature set and upgraded rather uncritically, hence the colors that don\'t match the rest of the site.\r\n\r\nThanks for playing. :D \r\n\r\nRees'),(37,'f3b7251b04','Didn\'t expect any replies from you until you returned north. Sorry to hear that you are fighting the eldercare demons. Having spent 5 years in what I call eldercare hell, I have the utmost empathy for your situation. There are no easy solutions and sometimes there are no solutions. My mom spent the last 7 weeks of her life in Sunrise Assisted living and it was the best choice for us and it worked out for her. She got very good care. Of course it was expensive. :( \r\n\r\nI have been checking out the flights and fares to LA area for the reunion. Seems like the best fares are to Long Beach airport. Was planning to visit some friends in conjunction with the reunion however that probably won\'t work out. Since I am going all that way I was planning on making it a little vacation. Being that you were with some of the TCHS folks this past Friday, any thoughts on what other activities might be planned? If you see Jan & Dick again, tell them hello for me. Probably most attendees will be from the LA area except for thee and me.\r\n\r\nSchool is winding down for me, just working this weekend on some objectives for a horrendeously large web site for which my group is constructing a framework and prototype. Also searching out some info today about the outer banks (No. Carolina) where I am going in May for a week. It has been 15 years since I have spent time at the beach and I think it is past time.\r\n\r\nWork is the same except the commute is now back to normal. I was driving to Gaithersburg in Maryland and loving :evil: every minute of it. Got paid for mileage but that didn\'t totally compensate even tho I got to charge most of the travel time. I am back in the Tyson\'s office which is only 7 miles from the house. :D \r\n\r\nNo need for you to reply in a hurry. Just thought I would echo some sympathy with your eldercare issues and remind myself how fortunate I am to have survived the eldercare hell. \r\n\r\nI am going to deactivate the janerolufs@netscape.net so this TCHS mail is great for you to send me messages.\r\n\r\nTake care. :D Jane'),(21,'e9b5b2a235','Hi!\r\n\r\nThis is a private message from within The Forums. I see you made it.\r\n\r\nAfter the dust settles, I\'ll delete the other ID.\r\n\r\nI\'m off to Orange Co. this PM to deal with a family matter involving an elderly relative. I\'ll be managing the site from my trust laptop.'),(36,'00f6b9eb61','\"...my dull life...\"\r\n\r\nQuelle tragedie!\r\n\r\n(Sorry for slow reply. Still in CA wrestling eldercare alligators.)\r\n\r\nI see another msg; will investigate, but if just more sad tales, this will be only (dull) reply.\r\n\r\nHad dinner with Dick, Jan, Rik Katzmaier and John and Lynne Bibler at Biblers\' house Friday night. Neighborhood reunion if not class R.\r\n\r\nRC'),(23,'0d21a41106','Rees:\r\n\r\nA test to see if I can actually get an e-mail to you through the Web site (as opposed to through AOL).\r\n\r\nI was successful in regiserting with a new user name (Mike Coghlan instead of pdmike). However, in going to the Members List, I note that I am still in there as pdmike. Could you delete that? Or can I delete it? I\'ll go and check now and see if I can do it. If I succeed, then . . . never mind.\r\n\r\nBy the way, I made a post to the trivia forum - check it out.\r\n\r\nCoghlan'),(24,'dfbbff5be6','Private message received. I had already noticed the new registration, so we\'re one cycle out of synch. As I said, I\'ll delete later this week if you can\'t.'),(25,'4ed4221ae5','Hey class of \'72 what\'s up...'),(26,'c7aae154bf','Got it. All loops seem to close. I\'m finding that some of the labeling is \"written by computer guys\" so I\'ll be going through all with a fine tooth comb.'),(30,'','[b]Hi Donna! Long time no see. I see we\'re neighbors. I\'m glad someone besises me is signed up for our class. Anyone with any info on our class reunion please e-mail me. Can\'t wait to see everyone.............Bonnie Johnson'),(31,'65f34c0922','Dull life? What if your work were in the next room, like mine?\r\n\r\nAs w/other msg, next few days hard to communicate due to access issues. Will be in touch.'),(33,'10127df780','Is this the official site to register for the reunion? Got an E-mail to this effect recently?\r\n\r\nJohn Jenkins'),(53,'39f397c7eb','Thanks. I forgot to open a new thread. Now I\'m depending on you to make a mistake. I\'ll add the topic later this morning.'),(54,'39f397c7eb','Thanks. I forgot to open a new thread. Now I\'m depending on you to make a mistake. I\'ll add the topic later this morning.'),(55,'f2a945df0e','Aaaah - So glad to know I hadn\'t \'lost it!\' Thanks, Rees. I\'m reasonably certain I recognize 3 out of 4, so a mistake is definitely possible! \r\nBest, \r\nMarilyn'),(56,'f2a945df0e','Aaaah - So glad to know I hadn\'t \'lost it!\' Thanks, Rees. I\'m reasonably certain I recognize 3 out of 4, so a mistake is definitely possible! \r\nBest, \r\nMarilyn'),(57,'841a5eca5e','Hi, Carla,\r\n\r\nIt was so good to see you at the reunion, even if the visit was too short. I\'d like to catch up a bit more. Do you have a e-dress? Mine is: starlightscott@earthlink.net\r\n\r\nIf you\'d prefer \"snail mail,\" my address is: 8800 Starlite Drive, Bishop, CA 93514.\r\n\r\nAlso, if I can\'t find Monica\'s info (and you have it), please give her mine. I told Donna Cross Eley that I\'d try to get it for her. Donna said she didn\'t get any info about the reunion (and I obviously neglected to talk to her about it), so maybe she\'ll make the next one.\r\n\r\nKaren Conger Scott'),(40,'9b78ee9710','Re: Email\r\n\r\nSoon we\'ll be offering a TCHS Alumni mailbox to paid members $17/yr with mail going to a \"real\" mailbox elsewhere.\r\n\r\nI\'m also rees@tchsalumni.org.\r\n\r\nAvailable in May sometime. Of course, one still needs a physical address to receive and an SMTP server to send. All that will come later if we get sufficient interest. Long term goal is full service ISP deal for alumni only.\r\n\r\nRC'),(41,'830a3a4d21','Well I would be interested in the full ISP. I am considering dropping the cable and getting dish for the TV and dropping the cable and getting a regular provider (at this point probably earthlink) for my ISP. Cable is getting so expensive and the Comcast Internet switchover was a nightmare. However, I may wait until I am completed with my schooling next year.\r\n\r\nWhen you get the service for routing to another mailbox up in May let me know. :D \r\n\r\nCarry on with the \'gators. :roll: JR'),(51,'8dbd41bcf4','Hi, Rees! I\'d love to respond to this latest \'Who Are We\" posting (you knew I would), but can only locate the \'Conspirators\' link from the last time around. Have I finally gone blind, am I missing something, or isn\'t this new one posted just yet? \r\nBest,\r\nMarilyn'),(52,'8dbd41bcf4','Hi, Rees! I\'d love to respond to this latest \'Who Are We\" posting (you knew I would), but can only locate the \'Conspirators\' link from the last time around. Have I finally gone blind, am I missing something, or isn\'t this new one posted just yet? \r\nBest,\r\nMarilyn'),(43,'9b9b11e8b1','I don\'t usually look at who\'s on line. I\'m glad it\'s you. We\'ve had almost 1,800 readers and 154 registrations (Across all classes) as of today. Of course, \'60 is most represented.\r\n\r\nRees'),(44,'1aee1f21fc','You\'re too good.\r\n\r\nFair\'s fair. Send me some HARD questions.\r\n\r\nRees'),(50,'f3c139dd0c','Hi, Rees! I\'m not surprised \'60 is the most represented group on this website. We were always ahead of the crowd! I look forward to our reunion in October - It\'s always fun to see everyone. I never think of us as growing up and growing old - we all seem to revert to being kids whenever we get together - some kind of anthropological phenomenon, I guess. Keep up the good work on the website - It\'s fun to check every couple of days for news from friends. See you in the fall! \r\nBest,\r\nMarilyn'),(49,'3b6459ca8b','I\'ll see what I can do!'); UNLOCK TABLES; # # Table structure for table 'phpbb_ranks' # DROP TABLE IF EXISTS phpbb_ranks; CREATE TABLE phpbb_ranks ( rank_id smallint(5) unsigned NOT NULL auto_increment, rank_title varchar(50) NOT NULL default '', rank_min mediumint(8) NOT NULL default '0', rank_special tinyint(1) default '0', rank_image varchar(255) default NULL, PRIMARY KEY (rank_id) ) TYPE=MyISAM; # # Dumping data for table 'phpbb_ranks' # LOCK TABLES phpbb_ranks WRITE; INSERT INTO phpbb_ranks VALUES (1,'Site Admin',-1,1,NULL); UNLOCK TABLES; # # Table structure for table 'phpbb_search_results' # DROP TABLE IF EXISTS phpbb_search_results; CREATE TABLE phpbb_search_results ( search_id int(11) unsigned NOT NULL default '0', session_id varchar(32) NOT NULL default '', search_array text NOT NULL, PRIMARY KEY (search_id), KEY session_id(session_id) ) TYPE=MyISAM; # # Dumping data for table 'phpbb_search_results' # LOCK TABLES phpbb_search_results WRITE; INSERT INTO phpbb_search_results VALUES (1317150975,'b04c35821a5e28e1c7e626c98dafc15a','a:7:{s:14:\"search_results\";s:58:\"60, 59, 61, 10, 15, 16, 29, 49, 34, 56, 42, 44, 51, 52, 53\";s:17:\"total_match_count\";i:15;s:12:\"split_search\";N;s:7:\"sort_by\";i:0;s:8:\"sort_dir\";s:4:\"DESC\";s:12:\"show_results\";s:6:\"topics\";s:12:\"return_chars\";i:200;}'); UNLOCK TABLES; # # Table structure for table 'phpbb_search_wordlist' # DROP TABLE IF EXISTS phpbb_search_wordlist; CREATE TABLE phpbb_search_wordlist ( word_text varchar(50) binary NOT NULL default '', word_id mediumint(8) unsigned NOT NULL auto_increment, word_common tinyint(1) unsigned NOT NULL default '0', PRIMARY KEY (word_text), KEY word_id(word_id) ) TYPE=MyISAM; # # Dumping data for table 'phpbb_search_wordlist' # LOCK TABLES phpbb_search_wordlist WRITE; INSERT INTO phpbb_search_wordlist VALUES ('example',1,0),('post',2,0),('phpbb',3,0),('installation',4,0),('delete',5,0),('topic',6,0),('forum',7,0),('since',8,0),('everything',9,0),('seems',10,0),('working',11,0),('state',324,0),('skills',323,0),('leave',16,0),('left',17,0),('rubén',322,0),('quiero',321,0),('predecessor',320,0),('moved',319,0),('martínez',318,0),('unafraid',23,0),('high',24,0),('joined',25,0),('miller',26,0),('navy',27,0),('school',28,0),('send',29,0),('chairman',32,0),('comittee',33,0),('curtis',34,0),('planning',35,0),('reunion',36,0),('richard',37,0),('schedule',38,0),('invitations',40,0),('person',42,0),('recieve',43,0),('tchs',81,0),('song',79,0),('remains',77,0),('godfrey',54,0),('movie',74,0),('first',72,0),('fight',71,0),('director',70,0),('credits',69,0),('bruce',68,0),('band',67,0),('article',66,0),('advice',65,0),('unanswered',84,0),('unbreakable',85,0),('watching',86,0),('willis',87,0),('word',88,0),('agriculture',89,0),('asks',91,0),('avenue',92,0),('built',94,0),('campus',95,0),('coghlan',96,0),('crops',97,0),('grown',98,0),('mike',99,0),('tcjhs',100,0),('usernames',119,0),('user',118,0),('synchronized',117,0),('forums',106,0),('names',115,0),('directory',114,0),('alumni',112,0),('obscure',1800,0),('currently',121,0),('nickname',1799,0),('love',1798,0),('login',1797,0),('necessary',126,0),('jsmith1958',1796,0),('password',128,0),('intended',1795,0),('reached',130,0),('registration',131,0),('seperate',132,0),('fall',1794,0),('spring',134,0),('evocative',1793,0),('assign',1792,0),('three',137,0),('anonymous',1791,0),('arranged',142,0),('sponsoring',143,0),('sponsorship',144,0),('address',145,0),('advertising',146,0),('appears',147,0),('association',148,0),('company',149,0),('contribution',150,0),('information',151,0),('linked',152,0),('logo',153,0),('make',154,0),('month',155,0),('normally',157,0),('organization',158,0),('periods',159,0),('recognition',160,0),('specify',161,0),('sponsor',162,0),('sponsors',163,0),('tchsalumni',164,0),('write',167,0),('topics',207,0),('students',205,0),('sorry',204,0),('replies',203,0),('posted',202,0),('participate',200,0),('jesse',199,0),('helms',198,0),('further',197,0),('explanation',196,0),('expire',195,0),('exclusive',194,0),('enrolled',193,0),('contact',191,0),('announcement',189,0),('welcome',209,0),('happen',266,0),('thing',275,0),('such',274,0),('steps',273,0),('proof',272,0),('renault',222,0),('offer',270,0),('might',269,0),('lemon',267,0),('flying',265,0),('dauphines',263,0),('dauphine',262,0),('vehicle',276,0),('avocado',278,0),('back',279,0),('citrus',280,0),('jenkins',281,0),('john',282,0),('orange',283,0),('planted',284,0),('remember',285,0),('several',286,0),('trees',287,0),('valencia',288,0),('whch',289,0),('yard',290,0),('youngdale',291,0),('martinez',317,0),('hemisphere',316,0),('graduated',315,0),('gave',314,0),('explore',312,0),('buscamos',311,0),('beyond',310,0),('arcadia',309,0),('applegate',308,0),('communicate',1918,0),('airport',306,0),('agradecer',305,0),('forward',462,0),('combinations',328,0),('locker',329,0),('already',330,0),('another',331,0),('tried',1813,0),('reregister',1812,0),('change',335,0),('changing',336,0),('course',337,0),('email',338,0),('name',339,0),('registered',340,0),('cannot',1811,0),('assigned',1810,0),('using',343,0),('fact',1231,0),('cookie',346,0),('create',347,0),('discussion',348,0),('dump',349,0),('editor',350,0),('exit',351,0),('feature',352,0),('identity',354,0),('live',355,0),('original',356,0),('permanent',357,0),('posts',358,0),('previous',359,0),('system',622,0),('backs',717,0),('reenter',362,0),('restart',363,0),('return',364,0),('session',365,0),('site',366,0),('sure',367,0),('telling',368,0),('test',369,0),('attempt',2039,0),('vare',371,0),('work',372,0),('private',1671,0),('class',381,0),('reserved',1672,0),('allowed',379,0),('join',385,0),('members',386,0),('posting',1670,0),('group',1669,0),('initiate',1853,0),('friend',391,0),('illicit',1852,0),('message',394,0),('identifying',1851,0),('year',399,0),('combination',460,0),('book',459,0),('heres',402,0),('lockers',403,0),('still',405,0),('thought',407,0),('anyone',408,0),('bonnie',409,0),('classes',410,0),('start',741,0),('queens',900,0),('rolling',740,0),('planned',414,0),('related',739,0),('potential',738,0),('offing',737,0),('date',736,0),('comment',735,0),('allow',421,0),('alma',422,0),('background',423,0),('cannon',425,0),('city',426,0),('donna',427,0),('heard',429,0),('listed',430,0),('longer',431,0),('mater',432,0),('mother',433,0),('movies',434,0),('music',435,0),('permission',436,0),('recorded',437,0),('songs',438,0),('sound',439,0),('subsequently',440,0),('temple',441,0),('track',444,0),('years',446,0),('great',448,0),('mail',449,0),('people',450,0),('postal',451,0),('received',452,0),('reunions',453,0),('sent',454,0),('theyve',455,0),('told',456,0),('visit',457,0),('whether',458,0),('johnson',463,0),('june',464,0),('knowledge',465,0),('chosen',734,0),('interested',469,0),('ball',733,0),('thanks',471,0),('children',473,0),('garyt',474,0),('marcy',475,0),('mine',476,0),('same',477,0),('skye',478,0),('accelerate',479,0),('both',480,0),('category',481,0),('check',482,0),('clark',483,0),('coordinators',484,0),('correspondents',485,0),('dear',486,0),('discussions',487,0),('finally',488,0),('gary',489,0),('help',490,0),('interest',491,0),('listings',493,0),('maintain',494,0),('monitors',495,0),('online',496,0),('rees',497,0),('register',498,0),('registrations',499,0),('right',500,0),('sending',501,0),('stimulate',502,0),('suggest',503,0),('suggesting',504,0),('volunteers',508,0),('bowsher',510,0),('call',511,0),('forgiven',512,0),('lynne',514,0),('peep',515,0),('terry',516,0),('wink',517,0),('classmates',518,0),('drag',519,0),('familiar',520,0),('robert',522,0),('someone',523,0),('teacher',524,0),('tell',525,0),('wicks',526,0),('dancers',527,0),('progress',729,0),('pink',728,0),('photos',727,0),('thinking',533,0),('naming',725,0),('front',724,0),('camera',718,0),('couple',719,0),('dance',720,0),('depicted',721,0),('edition',722,0),('erstwhile',723,0),('accompanying',716,0),('carol',557,0),('conklin',558,0),('guess',559,0),('memory',561,0),('strangman',562,0),('used',563,0),('barbara',564,0),('checked',565,0),('closer',566,0),('kahn',568,0),('leaning',569,0),('marilyn',570,0),('pictures',571,0),('probably',572,0),('toward',573,0),('truth',574,0),('yearbook',575,0),('last',576,0),('ballot',2040,0),('soothsayers',621,0),('revised',620,0),('rack',619,0),('profile',618,0),('number',616,0),('next',615,0),('monicker',614,0),('modification',613,0),('mere',612,0),('magic',611,0),('known',610,0),('identifier',608,0),('humans',607,0),('duplicate',606,0),('deep',605,0),('convenience',604,0),('carry',603,0),('ancient',602,0),('actual',601,0),('account',600,0),('towel',623,0),('visible',625,0),('1950s',627,0),('always',628,0),('blvd',629,0),('called',630,0),('current',632,0),('drive',633,0),('early',634,0),('folks',636,0),('honest',637,0),('huntington',638,0),('kept',639,0),('mean',641,0),('named',642,0),('peasants',643,0),('quot',644,0),('respond',645,0),('stand',647,0),('street',648,0),('wasnt',649,0),('crossed',651,0),('recall',652,0),('snobs',653,0),('sunset',654,0),('turf',655,0),('automatically',743,0),('mary',681,0),('interim',898,0),('details',677,0),('long',899,0),('august',674,0),('available',970,0),('event',672,0),('california',671,0),('below',971,0),('queen',682,0),('info',897,0),('dinner',896,0),('deco',895,0),('beach',894,0),('10th',687,0),('again',688,0),('attend',689,0),('copying',690,0),('covina',691,0),('delphiforums',692,0),('garner',693,0),('held',694,0),('hopefully',695,0),('janetalkadis',696,0),('liberty',697,0),('nontheless',698,0),('notice',699,0),('park',700,0),('pasted',701,0),('perhaps',702,0),('ramrun',703,0),('regards',704,0),('smaller',705,0),('staged',706,0),('successfully',707,0),('took',708,0),('west',709,0),('move',710,0),('repeat',711,0),('section',712,0),('think',714,0),('type',715,0),('real',730,0),('source',731,0),('trick',732,0),('thread',742,0),('continue',744,0),('deleted',745,0),('opened',746,0),('direct',747,0),('directly',748,0),('followed',750,0),('hello',751,0),('invitation',752,0),('link',753,0),('list',1919,0),('months',755,0),('note',757,0),('party',758,0),('ranrun',759,0),('reply',760,0),('rsvp',761,0),('second',762,0),('secondly',763,0),('done',765,0),('gimme',766,0),('include',767,0),('magazine',768,0),('paragraphs',769,0),('photo',770,0),('plans',771,0),('plug',772,0),('prev',773,0),('youve',774,0),('adding',775,0),('album',776,0),('albums',777,0),('darra',778,0),('fill',780,0),('free',781,0),('groups',782,0),('hhhhmmmm',783,0),('links',784,0),('mikes',785,0),('picnic',786,0),('shows',787,0),('yhoo',789,0),('actually',790,0),('alumnus',791,0),('board',792,0),('described',793,0),('editorial',794,0),('friends',795,0),('half',797,0),('hard',798,0),('harder',799,0),('knew',800,0),('member',801,0),('read',804,0),('readers',805,0),('resort',806,0),('toooooo',807,0),('trouble',808,0),('vast',809,0),('decisions',810,0),('disaster',811,0),('glad',812,0),('incorrect',813,0),('lets',814,0),('makes',815,0),('renunion',816,0),('sense',817,0),('spent',819,0),('stable',820,0),('trying',822,0),('doubt',824,0),('excellent',825,0),('impressed',826,0),('somehow',828,0),('totally',829,0),('visiting',830,0),('wonderful',831,0),('wrong',832,0),('break',833,0),('chewed',834,0),('christmas',835,0),('combos',836,0),('lock',837,0),('partner',838,0),('tibor',839,0),('toth',840,0),('addresses',841,0),('assn',842,0),('attended',843,0),('building',844,0),('capabilities',845,0),('collaborative',846,0),('communication',847,0),('connected',848,0),('cooooool',849,0),('difficulty',850,0),('effort',851,0),('friendships',852,0),('huge',853,0),('hunt',854,0),('letter',855,0),('lies',856,0),('lose',858,0),('maintaining',859,0),('making',860,0),('messages',861,0),('ones',863,0),('personal',864,0),('points',865,0),('rebuilding',866,0),('recruitment',867,0),('response',868,0),('separations',869,0),('share',870,0),('soooooo',871,0),('tenyear',872,0),('venues',873,0),('writing',874,0),('damage',876,0),('dental',877,0),('hasnt',879,0),('lists',880,0),('marching',881,0),('orders',882,0),('residual',883,0),('teeth',884,0),('tibors',885,0),('toths',886,0),('locks',887,0),('chewing',888,0),('exploits',889,0),('hasty',890,0),('inferred',891,0),('merely',892,0),('report',893,0),('reception',901,0),('saturday',902,0),('style',903,0),('breakfast',904,0),('geeze',905,0),('wants',906,0),('appropriate',907,0),('becoming',908,0),('categories',909,0),('folk',910,0),('keep',911,0),('open',912,0),('place',913,0),('quite',914,0),('unmanageable',915,0),('visitors',916,0),('admin',917,0),('grandon',918,0),('smith',919,0),('steve',920,0),('touch',921,0),('according',922,0),('appeared',923,0),('douglas',924,0),('kazoo',925,0),('orchestra',926,0),('show',927,0),('tcko',928,0),('timelines',929,0),('12th',930,0),('hilton',931,0),('hotel',932,0),('maps',933,0),('pasadena',934,0),('visited',935,0),('website',936,0),('accomodate',937,0),('become',938,0),('branches',939,0),('choose',940,0),('communications',941,0),('coordinator',942,0),('defined',943,0),('events',944,0),('grow',945,0),('important',946,0),('intraclass',947,0),('moderate',948,0),('moderator',949,0),('moderators',950,0),('needs',951,0),('ontopic',952,0),('organizer',953,0),('organizing',954,0),('publicizing',955,0),('respective',956,0),('responsible',957,0),('roles',958,0),('special',959,0),('subjects',960,0),('tasks',961,0),('undertake',962,0),('validating',963,0),('remeber',979,0),('phone',978,0),('phenomenal',977,0),('passwords',976,0),('numbers',975,0),('myself',974,0),('managed',972,0),('updates',973,0),('amused',980,0),('babysitter',981,0),('brings',982,0),('calculations',983,0),('corner',984,0),('elementary',985,0),('godfreys',986,0),('hear',987,0),('house',988,0),('learning',989,0),('lived',990,0),('memories',991,0),('perplexed',992,0),('play',993,0),('spoons',994,0),('teaching',995,0),('wait',996,0),('answering',998,0),('enjoyed',999,0),('environs',1000,0),('gabriel',1001,0),('history',1002,0),('okay',1003,0),('pleasure',1004,0),('smarties',1005,0),('studying',1006,0),('valley',1007,0),('whole',1008,0),('agave',1009,0),('formed',1010,0),('leaf',1011,0),('sprang',1012,0),('wholly',1013,0),('blue',1014,0),('bottom',1015,0),('click',1016,0),('display',1017,0),('easily',1018,0),('easy',1019,0),('edit',1020,0),('editing',1021,0),('file',1022,0),('form',1023,0),('fully',1024,0),('kind',1025,0),('organise',1026,0),('participating',1027,0),('pencil',1028,0),('records',1029,0),('compilation',1030,0),('confirm',1031,0),('deceased',1032,0),('update',1033,0),('following',1034,0),('give',1035,0),('hint',1036,0),('jane',1037,0),('provided',1038,0),('subject',1039,0),('unlike',1040,0),('opportunity',1528,0),('indicate',1527,0),('edited',1526,0),('activities',1525,0),('types',1524,0),('specifications',1523,0),('save',1522,0),('pixels',1521,0),('sweaters',1085,0),('historic',1104,0),('idea',1105,0),('passage',1106,0),('during',1103,0),('dipped',1102,0),('cheating',1101,0),('research',1107,0),('rite',1108,0),('supposed',1109,0),('exam',1110,0),('teds',1111,0),('obvious',1127,0),('mcneil',1126,0),('lifetime',1125,0),('kindly',1124,0),('however',1123,0),('fish',1122,0),('drivel',1121,0),('advantage',1120,0),('teach',1128,0),('clue',1129,0),('searched',1130,0),('searching',1131,0),('announcements',1132,0),('charcoal',1133,0),('colors',1134,0),('cute',1135,0),('deena',1136,0),('faces',1137,0),('foley',1138,0),('graduation',1139,0),('gray',1140,0),('guys',1141,0),('hall',1142,0),('head',1143,0),('jackie',1144,0),('jacqui',1145,0),('kathy',1146,0),('matlack',1147,0),('nina',1148,0),('picking',1149,0),('scares',1151,0),('senior',1152,0),('storage',1153,0),('strictly',1154,0),('stuff',1155,0),('trimmed',1156,0),('warner',1157,0),('white',1158,0),('attention',1161,0),('cultivate',1162,0),('devoutly',1163,0),('eras',1164,0),('generation',1165,0),('heads',1166,0),('marilyns',1167,0),('outcome',1168,0),('peoples',1169,0),('rear',1170,0),('view',1171,0),('wished',1172,0),('yesteryear',1173,0),('anything',1174,0),('bausmans',1175,0),('grade',1176,0),('scan',1177,0),('specifically',1178,0),('treat',1179,0),('benefit',1225,0),('differently',1230,0),('correctly',1229,0),('clicked',1228,0),('cases',1227,0),('browser',1226,0),('appear',1224,0),('above',1223,0),('lost',1217,0),('parameter',1218,0),('wdfgvadf',1219,0),('wfdfd',1220,0),('wdev',1221,0),('wefgwefg',1222,0),('incompatibility',1232,0),('internals',1233,0),('laid',1234,0),('mess',1235,0),('modified',1236,0),('pages',1238,0),('associated',2185,0),('record',1240,0),('result',1241,0),('room',1242,0),('simple',1243,0),('sometimes',1244,0),('tracking',1245,0),('weve',1246,0),('worked',1247,0),('works',1248,0),('appearance',1249,0),('changed',1250,0),('desirable',1251,0),('especially',1252,0),('individuals',1253,0),('plenty',1254,0),('ñ',1346,0),('ç',1345,0),('voluntario',1344,0),('acentos',1258,0),('usar',1343,0),('teclado',1342,0),('también',1341,0),('suyo',1340,0),('substituya',1339,0),('substituir',1338,0),('solamente',1337,0),('sistema',1336,0),('sentido',1335,0),('sabe',1334,0),('puede',1333,0),('pequeñas',1332,0),('para',1331,0),('pantalla',1330,0),('método',1329,0),('mejor',1328,0),('mayúsculas',1327,0),('letras',1326,0),('leerlas',1325,0),('importante',1324,0),('general',1323,0),('frase',1322,0),('marcas',1281,0),('formar',1321,0),('escribir',1320,0),('encuentra',1319,0),('ellas',1318,0),('donde',1317,0),('directa',1316,0),('difícil',1315,0),('diacríticas',1314,0),('diacriticals',1313,0),('demasiado',1312,0),('cuando',1311,0),('común',1310,0),('como',1309,0),('combinación',1308,0),('cita',1307,0),('apóstrofe',1306,0),('ambiguo',1305,0),('acento',1304,0),('acentadas',1303,0),('accents',1302,0),('football',1347,0),('four',1348,0),('heroes',1349,0),('players',1350,0),('season',1351,0),('taken',1352,0),('turn',1353,0),('adamson',1354,0),('bibler',1355,0),('championship',1356,0),('close',1357,0),('freshmen',1358,0),('hondo',1359,0),('honored',1360,0),('jack',1361,0),('league',1362,0),('martin',1363,0),('mvps',1364,0),('norberg',1365,0),('reagan',1366,0),('remotely',1367,0),('roger',1368,0),('team',1369,0),('varsity',1370,0),('fooling',1371,0),('rats',1372,0),('leaves',1398,0),('johnny',1397,0),('bobbie',1396,0),('ardendale',1376,0),('bike',1377,0),('brought',1378,0),('coming',1379,0),('crashing',1380,0),('death',1381,0),('driveway',1382,0),('drove',1383,0),('happened',1384,0),('july',1385,0),('kimball',1386,0),('kimballs',1387,0),('lots',1388,0),('palm',1389,0),('recently',1390,0),('taller',1391,0),('trains',1392,0),('ward',1393,0),('while',1394,0),('yesterday',1395,0),('4wins',1399,0),('loses',1400,0),('rees60',1402,0),('correct',1403,0),('family',1404,0),('karen',1405,0),('lane',1406,0),('neighborhood',1407,0),('rest',1408,0),('trip',1409,0),('wall',1410,0),('youngdalesame',1411,0),('chamber',1412,0),('commerce',1413,0),('courtesy',1414,0),('inches',1517,0),('jpeg',1518,0),('kidpix',1519,0),('gallery',1420,0),('larger',1520,0),('tested',1432,0),('confidence',1423,0),('suprise',1431,0),('greater',1430,0),('faith',1429,0),('attendees',1433,0),('byob',1434,0),('cooks',1435,0),('dark',1436,0),('directions',1437,0),('outdoor',1438,0),('pass',1439,0),('pool',1440,0),('reminder',1441,0),('35th',1442,0),('case',1443,0),('determine',1444,0),('finer',1445,0),('holding',1446,0),('later',1447,0),('preliminary',1448,0),('seriously',1449,0),('stages',1450,0),('vegas',1451,0),('advance',1452,0),('afternoon',1453,0),('brother',1454,0),('public',2075,0),('reach',1457,0),('reads',1458,0),('tchs68',1459,0),('things',1460,0),('enlargements',1461,0),('float',1462,0),('grads',1463,0),('including',1464,0),('linda',1465,0),('neither',1466,0),('parade',1467,0),('payne',1468,0),('pease',1469,0),('rose',1470,0),('sultana',1471,0),('susan',1472,0),('town',1473,0),('tunas',1474,0),('banner',1475,0),('contents',1476,0),('coordinatoreditor',1477,0),('disseminate',1478,0),('invite',1479,0),('katfish',1480,0),('newsletter',1481,0),('overall',1483,0),('regular',1484,0),('running',1485,0),('table',1486,0),('takes',1487,0),('today',1488,0),('volunteer',1489,0),('worth',1490,0),('inch',1516,0),('graphics',1515,0),('former',1514,0),('format',1513,0),('folder',1512,0),('features',1511,0),('dimension',1510,0),('consideration',1509,0),('archived',1508,0),('alone',1507,0),('product',1529,0),('professional',1530,0),('professionally',1531,0),('purchasing',1532,0),('shot',1533,0),('sufficient',1534,0),('video',1535,0),('videographer',1536,0),('destruct',1537,0),('self',1538,0),('success',1539,0),('army',1540,0),('belonged',1541,0),('bought',1542,0),('carla',1543,0),('gina',1544,0),('hula2z',1545,0),('inquiring',1546,0),('knows',1547,0),('salvation',1548,0),('templar',1549,0),('venti',1550,0),('yearbooks',1551,0),('barely',1552,0),('became',1553,0),('cover',1554,0),('particpate',1556,0),('produced',1557,0),('rino',1558,0),('bite',1559,0),('classy',1560,0),('copy',1561,0),('education',1562,0),('neglected',1563,0),('reference',1564,0),('review',1565,0),('rhino',1566,0),('azusa',1567,0),('drugstore',1568,0),('located',1569,0),('lower',1570,0),('road',1571,0),('rosa',1572,0),('southwest',1573,0),('bjoorn',1574,0),('brad',1575,0),('dated',1576,0),('discuss',1577,0),('fagan',1578,0),('teachers',1665,0),('taught',1664,0),('talk',1663,0),('suitable',1662,0),('successful',1661,0),('study',1660,0),('someday',1659,0),('schools',1658,0),('reveals',1657,0),('reflection',1656,0),('prospered',1655,0),('past',1654,0),('others',1653,0),('north',1652,0),('motion',1651,0),('monument',1650,0),('memorial',1649,0),('mementoes',1648,0),('longtime',1647,0),('lack',1646,0),('ironically',1645,0),('howard',1644,0),('honoree',1643,0),('honor',1642,0),('hitchcock',1641,0),('gymnasium',1640,0),('founders',1639,0),('footballers',1638,0),('field',1637,0),('fans',1636,0),('erase',1635,0),('emblematic',1634,0),('renaming',1611,0),('dishonors',1633,0),('direction',1632,0),('conditions',1631,0),('stadium',1615,0),('coach',1630,0),('buletin',1629,0),('boards',1628,0),('becomes',1627,0),('beckner',1626,0),('arthur',1625,0),('administrators',1624,0),('teams',1666,0),('trod',1667,0),('various',1668,0),('asked',1673,0),('business',1674,0),('french',1675,0),('german',1676,0),('henning',1677,0),('peterson',1678,0),('samoraczk',1679,0),('hitching',1680,0),('parking',1681,0),('student',1682,0),('lance',1683,0),('pamela',1684,0),('attbi',1685,0),('ckehrmeyer',1686,0),('cluck',1687,0),('germany',1688,0),('furst',1689,0),('glockner',1690,0),('james',1691,0),('whereabouts',1692,0),('added',1693,0),('centainly',1694,0),('helpful',1695,0),('removed',1696,0),('revision',1697,0),('baeuml',1698,0),('chaucer',1699,0),('covered',1700,0),('discovered',1701,0),('edelgard',1702,0),('english',1703,0),('grad',1704,0),('lady',1705,0),('literature',1706,0),('major',1707,0),('meetings',1708,0),('middle',1709,0),('modern',1710,0),('nice',1711,0),('period',1712,0),('prof',1713,0),('reading',1714,0),('samorajczk',1715,0),('similar',1716,0),('taking',1717,0),('tests',1718,0),('translate',1719,0),('ucla',1720,0),('import',1721,0),('math',1722,0),('onderdonk',1723,0),('pick',1724,0),('unpaved',1726,0),('darrell',1727,0),('eight',1728,0),('flew',1729,0),('flight',1730,0),('inside',1731,0),('linthacum',1732,0),('occasions',1733,0),('operations',1734,0),('outside',1735,0),('particular',1736,0),('picture',1737,0),('seater',1738,0),('alums',1739,0),('dimento',1740,0),('featured',1741,0),('owned',1742,0),('together',1743,0),('carries',1744,0),('girls',1745,0),('ladies',1746,0),('story',1747,0),('health',1748,0),('living',1749,0),('retired',1750,0),('written',1751,0),('additions',1752,0),('announced',1753,0),('articles',1754,0),('automated',1755,0),('caring',1756,0),('changes',1757,0),('dates',1758,0),('dating',1759,0),('development',1760,0),('finished',1761,0),('inclusion',1762,0),('interactive',1763,0),('queue',1764,0),('roll',1765,0),('suggestion',1766,0),('collect',1767,0),('doing',1768,0),('future',1769,0),('getting',1770,0),('graduating',1771,0),('kids',1772,0),('late',1773,0),('mention',1774,0),('relate',1775,0),('seeing',1776,0),('signing',1777,0),('soooo',1778,0),('talking',1779,0),('unpaid',1781,0),('young',1782,0),('benfry',1783,0),('describe',1784,0),('drill',1785,0),('godrey',1786,0),('personality',1787,0),('refer',1788,0),('somewhat',1789,0),('stellar',1790,0),('procedures',1801,0),('pseudonyms',1802,0),('silly',1803,0),('solution',1804,0),('synchronization',1805,0),('systems',1806,0),('unify',1807,0),('username',1808,0),('logging',1809,0),('inquiry',1854,0),('instead',1855,0),('harvested',1850,0),('goal',1849,0),('function',1848,0),('finding',1847,0),('exchange',1846,0),('encourage',1845,0),('data',1844,0),('control',1843,0),('channels',1842,0),('abuse',1841,0),('ordinary',1856,0),('persons',1857,0),('postings',1858,0),('prevent',1859,0),('provide',1860,0),('relevant',1861,0),('requested',1862,0),('robots',1863,0),('saying',1864,0),('search',1865,0),('spam',1866,0),('telephone',1867,0),('crashed',1869,0),('plane',1870,0),('side',1871,0),('among',1872,0),('archives',1874,0),('newspapers',1875,0),('garrett',1876,0),('goya',1877,0),('moss',1878,0),('sena',1879,0),('sharon',1880,0),('shirley',1881,0),('arizona',1882,0),('awaiting',1883,0),('erin',1884,0),('erinpost',1885,0),('happily',1886,0),('hardick',1887,0),('started',1888,0),('walter',1889,0),('chunk',1891,0),('corn',1892,0),('district',1893,0),('experimental',1894,0),('formerly',1895,0),('imagine',1896,0),('land',1897,0),('lucky',1898,0),('property',1899,0),('purpose',1900,0),('size',1901,0),('tech',1902,0),('accurate',1903,0),('management',1920,0),('publicity',1921,0),('services',1922,0),('alumnifriendly',1923,0),('areas',1924,0),('attract',1925,0),('automatic',1926,0),('earlier',1927,0),('happy',1928,0),('individual',1929,0),('item',1930,0),('keeping',1931,0),('maximum',1932,0),('missed',1933,0),('moderated',1934,0),('moderating',1935,0),('mostly',1936,0),('participants',1937,0),('point',1938,0),('pruning',1939,0),('requires',1940,0),('responsibility',1941,0),('stale',1942,0),('step',1943,0),('gosh',1944,0),('hotmail',1945,0),('lookin',1946,0),('miss',1947,0),('mjoonki',1948,0),('seein',1949,0),('wish',1950,0),('yeah',1951,0),('desperately',1952,0),('lamb',1953,0),('seeking',1954,0),('deanna',1955,0),('truitt',1956,0),('comments',2041,0),('count',2042,0),('enabled',2043,0),('enjoy',2044,0),('extra',2045,0),('follow',2046,0),('frame',2047,0),('initially',2048,0),('neutral',2049,0),('ongoing',2050,0),('opinion',2051,0),('periodically',2052,0),('poll',2053,0),('position',2054,0),('proceeds',2055,0),('program',2056,0),('reload',2057,0),('rule',2058,0),('assert',2038,0),('rules',2059,0),('sidebar',2060,0),('switches',2061,0),('tally',2062,0),('twice',2064,0),('vote',2065,0),('voting',2066,0),('hours',2074,0),('defender',2072,0),('balcony',2071,0),('assuming',2186,0),('button',2187,0),('cancels',2188,0),('didnt',2189,0),('dont',2190,0),('episode',2191,0),('fixed',2192,0),('game',2193,0),('hang',2194,0),('have',2195,0),('having',2196,0),('also',2184,0),('intermittently',2197,0),('jurors',2198,0),('just',2199,0),('opinions',2200,0),('other',2201,0),('please',2202,0),('presentation',2203,0),('problem',2204,0),('scheduled',2205,0),('selection',2206,0),('this',2207,0),('threads',2208,0),('time',2209,0),('users',2210,0),('venture',2211,0),('voted',2212,0),('well',2213,0),('were',2214,0),('what',2215,0),('with',2216,0),('your',2217,0),('diddee',2218,0),('guilty',2219,0),('innocent',2220,0),('whaddya',2221,0); UNLOCK TABLES; # # Table structure for table 'phpbb_search_wordmatch' # DROP TABLE IF EXISTS phpbb_search_wordmatch; CREATE TABLE phpbb_search_wordmatch ( post_id mediumint(8) unsigned NOT NULL default '0', word_id mediumint(8) unsigned NOT NULL default '0', title_match tinyint(1) NOT NULL default '0', KEY word_id(word_id), KEY post_id(post_id) ) TYPE=MyISAM; # # Dumping data for table 'phpbb_search_wordmatch' # LOCK TABLES phpbb_search_wordmatch WRITE; INSERT INTO phpbb_search_wordmatch VALUES (134,1039,0),(134,741,0),(134,1778,0),(134,523,0),(139,1881,0),(139,1880,0),(139,1879,0),(139,500,0),(139,1878,0),(139,17,0),(139,576,0),(139,1877,0),(139,1876,0),(139,1023,0),(138,287,1),(138,1870,1),(138,287,0),(138,731,0),(138,501,0),(138,1177,0),(134,1777,0),(134,1776,0),(134,28,0),(134,1408,0),(6,65,0),(6,66,0),(6,67,0),(6,68,0),(6,69,0),(6,70,0),(6,71,0),(6,72,0),(6,74,0),(6,54,0),(6,77,0),(6,79,0),(6,81,0),(6,84,0),(6,85,0),(6,86,0),(6,87,0),(6,88,0),(6,54,1),(7,91,0),(7,92,0),(7,94,0),(7,95,0),(7,96,0),(7,97,0),(7,98,0),(7,99,0),(7,28,0),(7,100,0),(7,89,1),(20,1862,0),(20,760,0),(20,1861,0),(20,498,0),(20,1860,0),(20,1671,0),(20,1859,0),(20,1858,0),(20,2,0),(141,72,0),(141,426,0),(141,844,0),(140,36,1),(140,1743,0),(140,523,0),(140,36,0),(140,2,0),(140,35,0),(140,1749,0),(140,1547,0),(140,1887,0),(140,1886,0),(140,1885,0),(140,1884,0),(140,338,0),(140,381,0),(140,1883,0),(140,1882,0),(140,408,0),(139,1745,1),(20,1857,0),(20,42,0),(20,450,0),(10,142,0),(10,7,0),(10,144,0),(10,106,1),(10,143,1),(11,7,0),(11,42,0),(11,106,0),(11,137,0),(11,144,0),(11,145,0),(11,146,0),(11,147,0),(11,148,0),(11,149,0),(11,150,0),(11,151,0),(11,152,0),(11,153,0),(11,154,0),(11,155,0),(11,157,0),(11,158,0),(11,159,0),(11,160,0),(11,161,0),(11,162,0),(11,163,0),(11,164,0),(11,167,0),(11,144,1),(12,207,0),(12,81,0),(12,205,0),(12,204,0),(12,203,0),(12,202,0),(12,2,0),(12,200,0),(12,199,0),(12,198,0),(12,197,0),(12,7,0),(12,196,0),(12,195,0),(12,194,0),(12,193,0),(12,121,0),(12,191,0),(12,189,0),(12,209,1),(13,222,1),(13,265,1),(13,263,1),(13,276,0),(13,275,0),(13,274,0),(13,205,0),(13,273,0),(13,222,0),(13,272,0),(13,270,0),(13,269,0),(13,267,0),(13,266,0),(13,262,0),(13,92,0),(14,278,0),(14,279,0),(14,280,0),(14,281,0),(14,282,0),(14,283,0),(14,284,0),(14,285,0),(14,286,0),(14,287,0),(14,288,0),(14,289,0),(14,290,0),(14,291,0),(14,89,1),(138,1870,0),(138,770,0),(138,436,0),(138,1875,0),(138,154,0),(138,448,0),(138,1874,0),(138,1872,0),(17,1808,1),(17,7,1),(17,336,1),(17,343,0),(17,118,0),(17,1813,0),(17,1812,0),(17,340,0),(17,339,0),(17,338,0),(17,337,0),(17,335,0),(17,1811,0),(17,1810,0),(17,331,0),(17,330,0),(17,145,0),(26,145,0),(21,329,1),(21,328,1),(21,285,0),(21,329,0),(20,356,0),(20,1856,0),(20,339,0),(20,394,0),(20,880,0),(20,576,0),(20,1855,0),(20,1854,0),(20,1853,0),(20,151,0),(20,897,0),(20,1852,0),(20,1851,0),(20,490,0),(20,1850,0),(20,1849,0),(20,1848,0),(20,795,0),(20,391,0),(119,918,0),(119,1673,0),(19,1671,1),(19,7,1),(19,207,0),(19,1672,0),(19,1670,0),(19,949,0),(19,386,0),(19,385,0),(19,1669,0),(19,7,0),(19,191,0),(19,381,0),(21,328,0),(21,460,0),(21,459,0),(22,402,0),(22,405,0),(22,407,0),(22,372,0),(22,403,1),(121,399,0),(121,563,0),(121,81,0),(121,205,0),(121,1682,0),(121,358,0),(46,741,1),(46,740,1),(46,733,1),(46,207,0),(46,6,0),(46,742,0),(46,741,0),(46,453,0),(46,36,0),(24,421,0),(24,422,0),(24,423,0),(24,67,0),(24,425,0),(24,149,0),(24,69,0),(24,427,0),(24,71,0),(24,314,0),(24,54,0),(24,429,0),(24,430,0),(24,431,0),(24,432,0),(24,433,0),(24,434,0),(24,435,0),(24,436,0),(24,437,0),(24,286,0),(24,79,0),(24,438,0),(24,439,0),(24,405,0),(24,440,0),(24,81,0),(24,444,0),(24,85,0),(24,446,0),(24,426,1),(24,54,1),(24,435,1),(24,441,1),(134,1775,0),(134,498,0),(134,497,0),(134,394,0),(134,1774,0),(134,1447,0),(134,1773,0),(134,1772,0),(134,385,0),(134,1105,0),(134,798,0),(134,1771,0),(134,1770,0),(134,1165,0),(26,408,0),(26,409,0),(26,381,0),(26,191,0),(26,338,0),(26,462,0),(26,315,0),(26,463,0),(26,464,0),(26,465,0),(26,36,0),(26,8,0),(26,81,0),(26,446,0),(26,381,1),(26,450,1),(46,739,0),(46,738,0),(46,737,0),(46,350,0),(46,348,0),(46,736,0),(46,191,0),(46,735,0),(46,734,0),(28,473,0),(28,474,0),(28,469,0),(28,475,0),(28,476,0),(28,36,0),(28,477,0),(28,478,0),(28,36,1),(29,479,0),(29,409,0),(29,480,0),(29,481,0),(29,482,0),(29,483,0),(29,381,0),(29,410,0),(29,33,0),(29,484,0),(29,485,0),(29,486,0),(29,114,0),(29,487,0),(29,338,0),(29,488,0),(29,7,0),(29,106,0),(29,489,0),(29,490,0),(29,491,0),(29,152,0),(29,493,0),(29,494,0),(29,386,0),(29,269,0),(29,495,0),(29,496,0),(29,497,0),(29,498,0),(29,499,0),(29,36,0),(29,453,0),(29,500,0),(29,501,0),(29,132,0),(29,502,0),(29,503,0),(29,504,0),(29,471,0),(29,6,0),(29,508,0),(29,381,1),(137,1376,1),(137,1871,0),(137,285,0),(137,1870,0),(137,990,0),(137,1773,0),(137,1387,0),(137,988,0),(137,634,0),(137,1869,0),(137,279,0),(137,1376,0),(20,7,1),(20,399,0),(20,921,0),(20,6,0),(121,571,0),(121,1681,0),(33,527,1),(33,732,0),(33,134,0),(33,731,0),(33,730,0),(33,729,0),(33,728,0),(33,727,0),(33,450,0),(33,725,0),(33,724,0),(33,723,0),(33,722,0),(33,721,0),(33,527,0),(33,720,0),(33,337,0),(33,719,0),(33,718,0),(33,717,0),(33,66,0),(33,147,0),(33,716,0),(34,557,0),(34,558,0),(34,559,0),(34,561,0),(34,562,0),(34,563,0),(34,527,1),(35,564,0),(35,565,0),(35,566,0),(35,558,0),(35,72,0),(35,568,0),(35,569,0),(35,570,0),(35,571,0),(35,572,0),(35,533,0),(35,573,0),(35,574,0),(35,575,0),(38,625,0),(38,118,0),(38,623,0),(38,622,0),(38,621,0),(38,620,0),(38,619,0),(38,618,0),(38,358,0),(38,356,0),(38,616,0),(38,615,0),(38,339,0),(38,614,0),(38,613,0),(38,612,0),(38,154,0),(38,611,0),(38,610,0),(38,608,0),(38,607,0),(38,106,0),(38,606,0),(38,605,0),(38,604,0),(38,335,0),(38,603,0),(38,331,0),(38,602,0),(38,601,0),(38,600,0),(38,335,1),(38,339,1),(38,118,1),(39,627,0),(39,309,0),(39,629,0),(39,630,0),(39,335,0),(39,632,0),(39,633,0),(39,634,0),(39,636,0),(39,637,0),(39,638,0),(39,639,0),(39,339,0),(39,642,0),(39,643,0),(39,285,0),(39,645,0),(39,647,0),(39,648,0),(39,399,0),(39,628,1),(39,629,1),(39,641,1),(39,644,1),(39,649,1),(40,453,0),(40,36,0),(40,746,0),(40,745,0),(40,744,0),(41,309,0),(41,629,0),(41,651,0),(41,639,0),(41,652,0),(41,653,0),(41,654,0),(41,655,0),(41,628,1),(41,629,1),(41,426,1),(41,641,1),(41,644,1),(41,441,1),(41,649,1),(40,410,0),(40,743,0),(43,903,1),(43,36,1),(43,895,1),(43,902,0),(42,453,0),(42,36,0),(42,203,0),(42,414,0),(42,972,0),(42,151,0),(42,448,0),(42,672,0),(42,121,0),(42,381,0),(42,671,0),(42,971,0),(42,970,0),(43,36,0),(43,901,0),(43,900,0),(43,682,0),(43,414,0),(43,681,0),(43,899,0),(43,898,0),(43,897,0),(43,896,0),(43,677,0),(43,381,0),(43,671,0),(43,894,0),(43,674,0),(121,1680,0),(121,559,0),(121,632,0),(121,1129,0),(121,482,0),(120,1679,0),(120,1678,0),(120,1002,0),(120,1677,0),(120,1676,0),(120,1675,0),(120,1674,0),(120,408,0),(118,714,1),(118,1615,1),(118,1611,1),(118,446,0),(118,457,0),(118,1668,0),(118,1667,0),(118,407,0),(118,1666,0),(118,1665,0),(118,1664,0),(118,1663,0),(118,1662,0),(118,503,0),(118,1661,0),(118,1660,0),(118,205,0),(118,1615,0),(118,1659,0),(118,1658,0),(118,1571,0),(118,500,0),(118,1657,0),(118,1611,0),(118,1656,0),(118,1655,0),(118,42,0),(118,702,0),(118,1654,0),(118,1653,0),(118,356,0),(118,1652,0),(118,642,0),(118,1651,0),(118,1650,0),(118,612,0),(118,561,0),(118,1649,0),(118,1648,0),(118,1647,0),(118,1646,0),(40,6,1),(40,319,1),(40,6,0),(40,742,0),(118,465,0),(118,1645,0),(118,1644,0),(118,1643,0),(118,1642,0),(118,1641,0),(118,1002,0),(118,1640,0),(118,1035,0),(118,1323,0),(118,1639,0),(118,1638,0),(118,1347,0),(118,1637,0),(118,1636,0),(118,1635,0),(118,1634,0),(118,1633,0),(118,1632,0),(118,1631,0),(118,1630,0),(118,95,0),(118,1629,0),(118,480,0),(118,1628,0),(118,1627,0),(118,1626,0),(118,1625,0),(118,331,0),(118,1624,0),(117,1550,1),(117,1543,1),(117,429,0),(117,1578,0),(117,338,0),(117,1577,0),(117,1576,0),(117,482,0),(117,1543,0),(117,1575,0),(117,1574,0),(116,654,1),(116,629,1),(116,654,0),(116,1573,0),(116,28,0),(116,1572,0),(116,1571,0),(116,285,0),(116,339,0),(116,1570,0),(116,899,0),(116,1569,0),(116,355,0),(116,1568,0),(116,984,0),(116,381,0),(116,629,0),(116,1567,0),(115,925,1),(50,790,0),(50,775,0),(50,791,0),(50,331,0),(50,792,0),(50,793,0),(50,794,0),(50,795,0),(50,797,0),(50,799,0),(50,800,0),(50,576,0),(50,570,0),(50,801,0),(50,804,0),(50,805,0),(50,340,0),(50,806,0),(50,741,0),(50,367,0),(50,742,0),(50,807,0),(50,6,0),(50,808,0),(50,809,0),(50,798,1),(50,407,1),(51,145,0),(51,112,0),(51,335,0),(51,426,0),(51,810,0),(51,811,0),(51,338,0),(51,488,0),(51,812,0),(51,813,0),(51,576,0),(51,814,0),(51,815,0),(51,681,0),(51,682,0),(51,704,0),(51,816,0),(51,36,0),(51,10,0),(51,817,0),(51,366,0),(51,819,0),(51,820,0),(51,81,0),(51,441,0),(51,822,0),(51,446,0),(115,137,0),(115,714,0),(115,439,0),(115,366,0),(115,1566,0),(115,1565,0),(115,1564,0),(115,1240,0),(115,702,0),(115,1563,0),(115,925,0),(115,1562,0),(115,1561,0),(115,1560,0),(115,1559,0),(115,1225,0),(115,408,0),(115,331,0),(115,112,0),(53,833,0),(53,834,0),(53,835,0),(53,837,0),(53,329,0),(53,838,0),(53,839,0),(53,840,0),(53,836,1),(53,837,1),(114,714,0),(114,928,0),(114,367,0),(114,204,0),(114,927,0),(114,1558,0),(114,285,0),(114,1029,0),(114,1240,0),(114,652,0),(114,1557,0),(114,934,0),(114,1556,0),(114,610,0),(114,490,0),(114,765,0),(114,1554,0),(114,1553,0),(114,1552,0),(113,575,1),(113,381,1),(113,1551,0),(113,575,0),(113,1550,0),(113,1549,0),(113,523,0),(113,28,0),(113,1548,0),(113,1390,0),(113,1547,0),(113,1546,0),(113,151,0),(113,1545,0),(113,24,0),(113,315,0),(113,1035,0),(113,1544,0),(113,338,0),(113,1543,0),(113,1542,0),(113,459,0),(113,1541,0),(113,279,0),(113,1540,0),(55,876,0),(55,877,0),(55,448,0),(55,879,0),(55,880,0),(55,881,0),(55,339,0),(55,882,0),(55,2,0),(55,340,0),(55,883,0),(55,885,0),(55,444,0),(55,343,0),(55,884,1),(55,839,1),(55,886,1),(56,884,0),(56,839,0),(56,887,1),(57,888,0),(57,337,0),(57,889,0),(57,890,0),(57,891,0),(57,837,0),(57,892,0),(57,702,0),(57,893,0),(57,884,1),(58,904,0),(58,328,0),(58,905,0),(58,99,0),(58,285,0),(58,906,0),(58,836,1),(59,907,0),(59,908,0),(59,909,0),(59,487,0),(59,910,0),(59,897,0),(59,911,0),(59,912,0),(59,913,0),(59,914,0),(59,340,0),(59,6,0),(59,207,0),(59,915,0),(59,916,0),(59,9,1),(60,917,0),(60,919,0),(60,920,0),(60,921,0),(60,918,1),(61,922,0),(61,923,0),(61,630,0),(61,426,0),(61,924,0),(61,925,0),(61,99,0),(61,926,0),(61,200,0),(61,927,0),(61,928,0),(61,525,0),(61,441,0),(61,929,0),(61,426,1),(61,925,1),(61,926,1),(61,441,1),(62,930,0),(62,409,0),(62,381,0),(62,448,0),(62,931,0),(62,932,0),(62,897,0),(62,463,0),(62,933,0),(62,934,0),(62,414,0),(62,36,0),(62,453,0),(62,935,0),(62,936,0),(62,381,1),(62,36,1),(63,937,0),(63,112,0),(63,148,0),(63,938,0),(63,939,0),(63,940,0),(63,381,0),(63,941,0),(63,942,0),(63,347,0),(63,943,0),(63,350,0),(63,944,0),(63,7,0),(63,106,0),(63,945,0),(63,946,0),(63,947,0),(63,911,0),(63,880,0),(63,768,0),(63,949,0),(63,950,0),(63,951,0),(63,952,0),(63,953,0),(63,954,0),(63,955,0),(63,956,0),(63,957,0),(63,958,0),(63,959,0),(63,960,0),(63,961,0),(63,81,0),(63,164,0),(63,207,0),(63,962,0),(63,963,0),(63,508,0),(63,167,0),(63,7,1),(63,948,1),(65,688,0),(64,329,1),(64,328,1),(64,446,0),(64,714,0),(64,285,0),(64,979,0),(64,978,0),(64,977,0),(64,976,0),(64,975,0),(64,974,0),(64,99,0),(64,329,0),(64,460,0),(64,600,0),(42,973,0),(42,36,1),(65,980,0),(65,981,0),(65,279,0),(65,908,0),(65,982,0),(65,983,0),(65,410,0),(65,984,0),(65,985,0),(65,781,0),(65,795,0),(65,54,0),(65,986,0),(65,987,0),(65,988,0),(65,989,0),(65,990,0),(65,991,0),(65,339,0),(65,992,0),(65,993,0),(65,285,0),(65,500,0),(65,79,0),(65,819,0),(65,994,0),(65,648,0),(65,995,0),(65,830,0),(65,996,0),(65,446,0),(65,54,1),(66,998,0),(66,426,0),(66,999,0),(66,1000,0),(66,488,0),(66,1001,0),(66,448,0),(66,1002,0),(66,339,0),(66,1004,0),(66,1006,0),(66,441,0),(66,1007,0),(66,1008,0),(66,630,1),(66,426,1),(66,1003,1),(66,1005,1),(66,525,1),(66,441,1),(67,448,0),(67,497,0),(67,1009,1),(67,1010,1),(67,1011,1),(67,1012,1),(67,1013,1),(68,145,0),(68,112,0),(68,1014,0),(68,1015,0),(68,335,0),(68,1016,0),(68,114,0),(68,1017,0),(68,1018,0),(68,1019,0),(68,1020,0),(68,1021,0),(68,338,0),(68,944,0),(68,1022,0),(68,1023,0),(68,106,0),(68,1024,0),(68,1025,0),(68,1026,0),(68,1027,0),(68,128,0),(68,1028,0),(68,864,0),(68,618,0),(68,340,0),(68,453,0),(68,29,0),(68,622,0),(68,471,0),(68,118,0),(68,88,0),(68,112,1),(68,336,1),(68,1029,1),(20,1867,0),(20,503,0),(20,274,0),(20,1866,0),(20,1865,0),(20,1864,0),(20,1863,0),(70,426,0),(70,1034,0),(70,1035,0),(70,469,0),(70,1037,0),(70,784,0),(70,269,0),(70,1038,0),(70,130,0),(70,497,0),(70,366,0),(70,819,0),(70,1039,0),(70,81,0),(70,441,0),(70,1040,0),(70,446,0),(70,1036,1),(134,1323,0),(134,1769,0),(134,795,0),(134,7,0),(134,1514,0),(134,634,0),(134,1768,0),(103,1420,1),(103,575,0),(103,1524,0),(103,1523,0),(103,29,0),(103,712,0),(73,1101,1),(73,1109,0),(73,205,0),(73,134,0),(73,1108,0),(73,1107,0),(73,1106,0),(73,465,0),(73,1105,0),(73,1104,0),(73,1103,0),(73,1102,0),(73,605,0),(73,331,0),(73,379,0),(73,1110,1),(73,1111,1),(74,1127,1),(74,126,1),(74,1128,0),(74,274,0),(74,8,0),(74,1038,0),(74,1126,0),(74,784,0),(74,1125,0),(74,1124,0),(74,1037,0),(74,151,0),(74,1123,0),(74,1036,0),(74,1035,0),(74,1122,0),(74,1121,0),(74,1120,0),(74,917,0),(75,1129,0),(75,1037,0),(75,1126,0),(75,1130,0),(75,1131,0),(75,405,0),(75,575,0),(75,11,1),(76,1132,0),(76,1133,0),(76,381,0),(76,1134,0),(76,1135,0),(76,1136,0),(76,1137,0),(76,520,0),(76,1138,0),(76,1139,0),(76,1140,0),(76,1141,0),(76,1142,0),(76,1143,0),(76,1144,0),(76,1145,0),(76,1146,0),(76,1147,0),(76,561,0),(76,115,0),(76,1148,0),(76,770,0),(76,1149,0),(76,572,0),(76,285,0),(76,1151,0),(76,1152,0),(76,1153,0),(76,1154,0),(76,1155,0),(76,1085,0),(76,1156,0),(76,1157,0),(76,1158,0),(76,575,0),(77,331,0),(77,1161,0),(77,717,0),(77,1162,0),(77,1163,0),(77,1164,0),(77,1165,0),(77,1166,0),(77,911,0),(77,570,0),(77,1167,0),(77,126,0),(77,1168,0),(77,1169,0),(77,571,0),(77,2,0),(77,805,0),(77,1172,0),(77,1173,0),(77,1170,1),(77,1171,1),(78,408,0),(78,1174,0),(78,1175,0),(78,381,0),(78,1176,0),(78,448,0),(78,727,0),(78,760,0),(78,1177,0),(78,762,0),(78,501,0),(78,1178,0),(78,1179,0),(78,727,1),(136,1799,0),(136,126,0),(136,115,0),(136,339,0),(136,1798,0),(136,1797,0),(136,1796,0),(136,1795,0),(136,106,0),(136,7,0),(136,1794,0),(136,1793,0),(136,1019,0),(136,114,0),(136,121,0),(136,460,0),(136,381,0),(136,1792,0),(136,1791,0),(136,112,0),(20,7,0),(20,72,0),(20,1847,0),(20,1846,0),(20,1845,0),(20,338,0),(20,114,0),(20,748,0),(20,1844,0),(20,347,0),(20,1843,0),(94,1353,0),(94,1352,0),(94,1351,0),(94,1350,0),(94,770,0),(94,1348,0),(94,1347,0),(93,369,1),(93,369,0),(20,381,0),(20,482,0),(20,1842,0),(91,352,0),(91,1252,0),(91,985,0),(91,1251,0),(91,410,0),(91,381,0),(91,1250,0),(91,1249,0),(20,628,0),(20,112,0),(20,1452,0),(20,145,0),(20,1693,0),(20,1841,0),(91,446,0),(91,405,0),(91,8,0),(91,28,0),(91,1254,0),(91,727,0),(91,610,0),(91,1253,0),(91,1139,0),(94,399,0),(94,1349,1),(95,790,0),(95,1354,0),(95,1355,0),(95,1356,0),(95,1357,0),(95,337,0),(95,1347,0),(95,1358,0),(95,559,0),(95,1141,0),(95,1359,0),(95,1360,0),(95,1361,0),(95,282,0),(95,1362,0),(95,1363,0),(95,1364,0),(95,1365,0),(95,702,0),(95,770,0),(95,1366,0),(95,497,0),(95,1367,0),(95,1368,0),(95,477,0),(95,1351,0),(95,1369,0),(95,525,0),(95,1370,0),(96,1371,0),(96,570,0),(96,1168,0),(96,450,0),(96,500,0),(96,1351,0),(96,399,0),(96,1372,1),(97,1372,1),(97,399,0),(97,1351,0),(97,1368,0),(97,500,0),(97,1366,0),(97,450,0),(97,1168,0),(97,1365,0),(97,1363,0),(97,570,0),(97,463,0),(97,1397,0),(97,1361,0),(97,1141,0),(97,1371,0),(97,1015,0),(97,1396,0),(97,1355,0),(97,1354,0),(98,1376,0),(98,92,0),(98,279,0),(98,1355,0),(98,1377,0),(98,1378,0),(98,1379,0),(98,984,0),(98,1380,0),(98,1381,0),(98,1382,0),(98,1383,0),(98,1384,0),(98,988,0),(98,1385,0),(98,1386,0),(98,1387,0),(98,1388,0),(98,991,0),(98,1389,0),(98,913,0),(98,914,0),(98,804,0),(98,1390,0),(98,1391,0),(98,1392,0),(98,287,0),(98,1393,0),(98,1394,0),(98,831,0),(98,1395,0),(98,1376,1),(98,92,1),(98,1386,1),(98,1393,1),(99,1398,0),(99,1240,0),(99,1107,0),(99,1351,0),(100,1399,0),(100,1398,0),(100,1400,0),(100,1240,0),(100,1402,0),(100,1107,0),(100,1351,0),(100,517,0),(101,145,0),(101,279,0),(101,1403,0),(101,748,0),(101,1404,0),(101,724,0),(101,988,0),(101,1405,0),(101,1387,0),(101,1406,0),(101,990,0),(101,991,0),(101,561,0),(101,1407,0),(101,1408,0),(101,286,0),(101,1392,0),(101,1409,0),(101,1410,0),(101,446,0),(101,1411,0),(102,1412,0),(102,426,0),(102,1413,0),(102,1414,0),(102,1037,0),(102,282,0),(102,497,0),(102,500,0),(103,1522,0),(103,1521,0),(103,571,0),(103,727,0),(103,770,0),(103,1520,0),(103,1519,0),(103,1518,0),(103,1517,0),(103,1516,0),(104,517,0),(104,1432,0),(104,1431,0),(104,746,0),(104,394,0),(104,1430,0),(104,1429,0),(104,1423,0),(104,792,0),(104,790,0),(104,1423,1),(133,1757,0),(133,1756,0),(133,792,0),(133,1755,0),(133,1754,0),(133,1753,0),(133,330,0),(133,1752,0),(132,1677,1),(132,446,0),(132,1751,0),(132,995,0),(132,1750,0),(132,934,0),(132,1749,0),(132,855,0),(132,576,0),(132,1677,0),(132,429,0),(132,1748,0),(132,825,0),(132,922,0),(131,925,1),(131,1490,0),(131,343,0),(131,1747,0),(131,29,0),(131,768,0),(131,753,0),(106,1442,0),(106,689,0),(106,1443,0),(106,381,0),(106,191,0),(106,736,0),(106,677,0),(106,1444,0),(106,634,0),(106,1445,0),(106,1446,0),(106,1105,0),(106,469,0),(106,696,0),(106,1447,0),(106,699,0),(106,35,0),(106,1448,0),(106,36,0),(106,1449,0),(106,1450,0),(106,1451,0),(106,381,1),(131,925,0),(131,897,0),(131,1636,0),(131,338,0),(131,1476,0),(131,66,0),(130,1745,1),(130,36,0),(130,770,0),(130,1746,0),(130,722,0),(130,632,0),(130,1744,0),(129,1743,0),(129,714,0),(129,81,0),(129,927,0),(129,1566,0),(129,1029,0),(129,1742,0),(129,925,0),(129,1741,0),(129,1740,0),(129,381,0),(129,67,0),(129,1739,0),(108,1412,0),(108,426,0),(108,1413,0),(108,634,0),(108,1461,0),(108,1462,0),(108,1463,0),(108,448,0),(108,1464,0),(108,1465,0),(108,892,0),(108,1466,0),(108,1467,0),(108,1468,0),(108,1469,0),(108,770,0),(108,1470,0),(108,1471,0),(108,1472,0),(108,81,0),(108,441,0),(108,1473,0),(108,1474,0),(108,441,1),(108,1473,1),(109,408,0),(109,381,0),(109,405,0),(109,408,1),(109,381,1),(109,405,1),(110,841,0),(110,112,0),(110,1475,0),(110,381,0),(110,518,0),(110,1016,0),(110,1476,0),(110,1477,0),(110,114,0),(110,1478,0),(110,338,0),(110,1023,0),(110,7,0),(110,391,0),(110,795,0),(110,752,0),(110,1479,0),(110,1480,0),(110,430,0),(110,386,0),(110,861,0),(110,1481,0),(110,1483,0),(110,340,0),(110,131,0),(110,1484,0),(110,1485,0),(110,132,0),(110,1243,0),(110,366,0),(110,1486,0),(110,1487,0),(110,81,0),(110,525,0),(110,1488,0),(110,1489,0),(110,1490,0),(110,381,1),(103,1515,0),(103,1323,0),(103,1420,0),(103,1348,0),(103,1514,0),(103,1513,0),(103,1512,0),(103,1511,0),(103,350,0),(103,1510,0),(103,1509,0),(103,1161,0),(103,1508,0),(103,112,0),(103,1507,0),(134,348,0),(134,1767,0),(134,410,0),(134,381,0),(134,482,0),(134,1174,0),(134,112,0),(133,1697,1),(133,1758,1),(133,444,0),(133,471,0),(133,1766,0),(133,959,0),(133,132,0),(133,1765,0),(133,1764,0),(133,394,0),(133,768,0),(133,1763,0),(133,1762,0),(133,1642,0),(133,1761,0),(133,1511,0),(133,1760,0),(133,1759,0),(122,1452,0),(122,408,0),(122,733,0),(122,191,0),(122,1683,0),(122,1684,0),(122,471,0),(122,733,1),(122,1683,1),(122,1684,1),(123,408,0),(123,1685,0),(123,1686,0),(123,1687,0),(123,338,0),(123,1688,0),(123,1139,0),(123,987,0),(123,429,0),(123,151,0),(123,576,0),(123,99,0),(123,36,0),(123,927,0),(123,8,0),(123,471,0),(123,399,0),(123,381,1),(123,1687,1),(123,99,1),(124,1452,0),(124,408,0),(124,191,0),(124,338,0),(124,1689,0),(124,1690,0),(124,1691,0),(124,978,0),(124,471,0),(124,1692,0),(124,1689,1),(124,1691,1),(125,1693,0),(125,1694,0),(125,736,0),(125,724,0),(125,1695,0),(125,1105,0),(125,768,0),(125,1696,0),(125,1697,0),(125,112,1),(125,81,1),(126,1698,0),(126,1699,0),(126,381,0),(126,1700,0),(126,1701,0),(126,1702,0),(126,1703,0),(126,193,0),(126,1676,0),(126,1704,0),(126,1143,0),(126,24,0),(126,1705,0),(126,1706,0),(126,1707,0),(126,1708,0),(126,1709,0),(126,1710,0),(126,1711,0),(126,1712,0),(126,1713,0),(126,1714,0),(126,497,0),(126,477,0),(126,1715,0),(126,1522,0),(126,1152,0),(126,286,0),(126,1716,0),(126,1682,0),(126,1717,0),(126,1664,0),(126,81,0),(126,524,0),(126,1718,0),(126,1719,0),(126,1720,0),(126,1715,1),(127,1721,0),(127,1722,0),(127,1723,0),(127,1681,0),(127,1724,0),(127,285,0),(127,222,0),(127,524,0),(127,1726,0),(127,222,1),(128,1541,0),(128,1727,0),(128,262,0),(128,1103,0),(128,1728,0),(128,1729,0),(128,1730,0),(128,1348,0),(128,1731,0),(128,1732,0),(128,1733,0),(128,1734,0),(128,1735,0),(128,1736,0),(128,1737,0),(128,652,0),(128,1738,0),(128,273,0),(128,137,0),(128,575,0),(128,1730,1),(128,38,1),(134,1779,0),(134,1781,0),(134,446,0),(134,1782,0),(134,112,1),(134,81,1),(135,408,0),(135,67,0),(135,1783,0),(135,1784,0),(135,1785,0),(135,1786,0),(135,386,0),(135,1787,0),(135,1788,0),(135,285,0),(135,1789,0),(135,1790,0),(135,367,0),(135,1369,0),(135,563,0),(135,1786,1),(136,1800,0),(136,128,0),(136,976,0),(136,1670,0),(136,1801,0),(136,1802,0),(136,130,0),(136,730,0),(136,131,0),(136,285,0),(136,132,0),(136,1804,0),(136,1805,0),(136,117,0),(136,1806,0),(136,137,0),(136,1807,0),(136,118,0),(136,1808,0),(136,11,0),(136,874,0),(136,399,0),(136,112,1),(136,106,1),(136,1809,1),(136,119,1),(141,642,0),(141,913,0),(141,1888,0),(141,441,0),(141,1889,0),(141,426,1),(141,441,1),(142,1507,0),(142,970,0),(142,94,0),(142,1891,0),(142,1892,0),(142,1893,0),(142,1894,0),(142,1895,0),(142,945,0),(142,1896,0),(142,1897,0),(142,1898,0),(142,1742,0),(142,1899,0),(142,1900,0),(142,285,0),(142,28,0),(142,1901,0),(142,405,0),(142,81,0),(142,1902,0),(142,714,0),(142,343,0),(142,89,1),(143,1903,0),(143,897,0),(143,1005,1),(145,688,0),(145,775,0),(144,202,1),(144,911,1),(144,350,1),(144,471,0),(144,164,0),(144,1922,0),(144,501,0),(144,36,0),(144,760,0),(144,131,0),(144,497,0),(144,1921,0),(144,202,0),(144,616,0),(144,1920,0),(144,1919,0),(144,911,0),(144,490,0),(144,1884,0),(144,350,0),(144,114,0),(144,942,0),(144,1918,0),(144,518,0),(145,1923,0),(145,1924,0),(145,842,0),(145,1925,0),(145,1926,0),(145,845,0),(145,381,0),(145,410,0),(145,735,0),(145,347,0),(145,1927,0),(145,350,0),(145,462,0),(145,1420,0),(145,1770,0),(145,1669,0),(145,782,0),(145,1928,0),(145,1929,0),(145,752,0),(145,1930,0),(145,911,0),(145,1931,0),(145,899,0),(145,768,0),(145,1932,0),(145,1933,0),(145,1934,0),(145,1935,0),(145,949,0),(145,1936,0),(145,1481,0),(145,616,0),(145,912,0),(145,1937,0),(145,770,0),(145,1939,0),(145,497,0),(145,1940,0),(145,1941,0),(145,957,0),(145,523,0),(145,1942,0),(145,1943,0),(145,1039,0),(145,274,0),(145,1487,0),(145,471,0),(145,6,0),(145,207,0),(145,118,0),(145,874,0),(145,1938,1),(145,1352,1),(146,688,0),(146,1882,0),(146,279,0),(146,1884,0),(146,462,0),(146,1944,0),(146,1945,0),(146,1946,0),(146,99,0),(146,1947,0),(146,1948,0),(146,414,0),(146,36,0),(146,1949,0),(146,1950,0),(146,1951,0),(146,381,1),(146,36,1),(147,408,0),(147,557,0),(147,191,0),(147,1952,0),(147,1953,0),(147,1954,0),(147,557,1),(147,1953,1),(148,1955,0),(148,918,0),(148,285,0),(148,367,0),(148,1956,0),(148,285,1),(148,367,1),(149,1394,0),(149,2066,0),(149,2065,0),(149,2064,0),(149,207,0),(149,2062,0),(149,2061,0),(149,1155,0),(149,1243,0),(149,2060,0),(149,762,0),(149,1485,0),(149,2059,0),(149,2058,0),(149,1940,0),(149,2057,0),(149,340,0),(149,498,0),(149,2056,0),(149,2055,0),(149,2054,0),(149,2053,0),(149,2052,0),(149,2051,0),(149,2050,0),(149,2049,0),(149,815,0),(149,355,0),(149,2048,0),(149,2047,0),(149,7,0),(149,2046,0),(149,72,0),(149,2045,0),(149,2044,0),(149,2043,0),(149,1103,0),(149,487,0),(149,348,0),(149,347,0),(149,2042,0),(149,2041,0),(149,336,0),(149,335,0),(149,971,0),(149,2040,0),(149,2039,0),(149,2038,0),(149,1950,0),(149,7,1),(149,1763,1),(150,6,0),(150,2075,0),(150,99,0),(150,2074,0),(150,1323,0),(150,348,0),(150,2072,0),(150,96,0),(150,1443,0),(150,2071,0),(151,1864,0),(151,2057,0),(151,340,0),(151,1029,0),(151,2204,0),(151,2203,0),(151,2054,0),(151,2053,0),(151,2202,0),(151,1653,0),(151,2201,0),(151,2200,0),(151,154,0),(151,814,0),(151,1025,0),(151,2199,0),(151,2198,0),(151,2197,0),(151,2074,0),(151,2196,0),(151,2195,0),(151,2194,0),(151,2193,0),(151,2047,0),(151,7,0),(151,2192,0),(151,72,0),(151,2191,0),(151,1103,0),(151,2190,0),(151,1577,0),(151,2189,0),(151,2041,0),(151,1016,0),(151,335,0),(151,2188,0),(151,2187,0),(151,2040,0),(151,2186,0),(151,2185,0),(151,907,0),(151,112,0),(151,2184,0),(152,369,0),(152,369,1),(153,369,0),(153,369,1),(151,2205,0),(151,762,0),(151,2206,0),(151,2207,0),(151,2208,0),(151,2209,0),(151,207,0),(151,2064,0),(151,2210,0),(151,2211,0),(151,2065,0),(151,2212,0),(151,2213,0),(151,2214,0),(151,2215,0),(151,2216,0),(151,167,0),(151,2217,0),(151,2189,1),(155,1402,0),(155,369,0),(155,369,1),(156,2218,0),(156,714,0),(156,2221,0),(156,2219,1),(156,2220,1),(157,1402,0),(157,369,0),(157,369,1),(158,1402,0),(158,369,0),(158,369,1),(159,369,1),(160,1402,0),(160,369,0),(160,369,1),(161,1402,0),(161,369,0),(161,369,1),(162,1402,0),(162,369,0),(162,369,1),(163,331,0),(163,369,0),(163,369,1),(164,369,0),(165,369,0),(166,369,0),(167,369,0),(167,369,1),(168,760,0),(168,760,1),(168,369,1); UNLOCK TABLES; # # Table structure for table 'phpbb_sessions' # DROP TABLE IF EXISTS phpbb_sessions; CREATE TABLE phpbb_sessions ( session_id char(32) NOT NULL default '', session_user_id mediumint(8) NOT NULL default '0', session_start int(11) NOT NULL default '0', session_time int(11) NOT NULL default '0', session_ip char(8) NOT NULL default '0', session_page int(11) NOT NULL default '0', session_logged_in tinyint(1) NOT NULL default '0', PRIMARY KEY (session_id), KEY session_user_id(session_user_id), KEY session_id_ip_user_id(session_id,session_ip,session_user_id) ) TYPE=HEAP; # # Dumping data for table 'phpbb_sessions' # LOCK TABLES phpbb_sessions WRITE; INSERT INTO phpbb_sessions VALUES ('7267c2e86ea753a249ab51e9605f5f85',-1,1045085583,1045085583,'04236a2f',15,0),('8d86ad7ff0408090a7e208399fa9e52d',1,1045082453,1045085049,'04236a2f',0,1),('931bcc4894e790725e70e59ddaae4b0a',5,1045087491,1045087491,'04236a2f',0,1),('85cc0869bf948845ec1c8736e4129fc6',-1,1045085922,1045085922,'04236a2f',15,0),('ed26e42f3e8f5541f9d8090c98570400',-1,1045087368,1045087368,'04236a2f',-1,0),('b04c35821a5e28e1c7e626c98dafc15a',-1,1045087349,1045087349,'04236a2f',-9,0); UNLOCK TABLES; # # Table structure for table 'phpbb_smilies' # DROP TABLE IF EXISTS phpbb_smilies; CREATE TABLE phpbb_smilies ( smilies_id smallint(5) unsigned NOT NULL auto_increment, code varchar(50) default NULL, smile_url varchar(100) default NULL, emoticon varchar(75) default NULL, PRIMARY KEY (smilies_id) ) TYPE=MyISAM; # # Dumping data for table 'phpbb_smilies' # LOCK TABLES phpbb_smilies WRITE; INSERT INTO phpbb_smilies VALUES (1,':D','icon_biggrin.gif','Very Happy'),(2,':-D','icon_biggrin.gif','Very Happy'),(3,':grin:','icon_biggrin.gif','Very Happy'),(4,':)','icon_smile.gif','Smile'),(5,':-)','icon_smile.gif','Smile'),(6,':smile:','icon_smile.gif','Smile'),(7,':(','icon_sad.gif','Sad'),(8,':-(','icon_sad.gif','Sad'),(9,':sad:','icon_sad.gif','Sad'),(10,':o','icon_surprised.gif','Surprised'),(11,':-o','icon_surprised.gif','Surprised'),(12,':eek:','icon_surprised.gif','Surprised'),(13,'8O','icon_eek.gif','Shocked'),(14,'8-O','icon_eek.gif','Shocked'),(15,':shock:','icon_eek.gif','Shocked'),(16,':?','icon_confused.gif','Confused'),(17,':-?','icon_confused.gif','Confused'),(18,':???:','icon_confused.gif','Confused'),(19,'8)','icon_cool.gif','Cool'),(20,'8-)','icon_cool.gif','Cool'),(21,':cool:','icon_cool.gif','Cool'),(22,':lol:','icon_lol.gif','Laughing'),(23,':x','icon_mad.gif','Mad'),(24,':-x','icon_mad.gif','Mad'),(25,':mad:','icon_mad.gif','Mad'),(26,':P','icon_razz.gif','Razz'),(27,':-P','icon_razz.gif','Razz'),(28,':razz:','icon_razz.gif','Razz'),(29,':oops:','icon_redface.gif','Embarassed'),(30,':cry:','icon_cry.gif','Crying or Very sad'),(31,':evil:','icon_evil.gif','Evil or Very Mad'),(32,':twisted:','icon_twisted.gif','Twisted Evil'),(33,':roll:','icon_rolleyes.gif','Rolling Eyes'),(34,':wink:','icon_wink.gif','Wink'),(35,';)','icon_wink.gif','Wink'),(36,';-)','icon_wink.gif','Wink'),(37,':!:','icon_exclaim.gif','Exclamation'),(38,':?:','icon_question.gif','Question'),(39,':idea:','icon_idea.gif','Idea'),(40,':arrow:','icon_arrow.gif','Arrow'),(41,':|','icon_neutral.gif','Neutral'),(42,':-|','icon_neutral.gif','Neutral'),(43,':neutral:','icon_neutral.gif','Neutral'),(44,':mrgreen:','icon_mrgreen.gif','Mr. Green'); UNLOCK TABLES; # # Table structure for table 'phpbb_themes' # DROP TABLE IF EXISTS phpbb_themes; CREATE TABLE phpbb_themes ( themes_id mediumint(8) unsigned NOT NULL auto_increment, template_name varchar(30) NOT NULL default '', style_name varchar(30) NOT NULL default '', head_stylesheet varchar(100) default NULL, body_background varchar(100) default NULL, body_bgcolor varchar(6) default NULL, body_text varchar(6) default NULL, body_link varchar(6) default NULL, body_vlink varchar(6) default NULL, body_alink varchar(6) default NULL, body_hlink varchar(6) default NULL, tr_color1 varchar(6) default NULL, tr_color2 varchar(6) default NULL, tr_color3 varchar(6) default NULL, tr_class1 varchar(25) default NULL, tr_class2 varchar(25) default NULL, tr_class3 varchar(25) default NULL, th_color1 varchar(6) default NULL, th_color2 varchar(6) default NULL, th_color3 varchar(6) default NULL, th_class1 varchar(25) default NULL, th_class2 varchar(25) default NULL, th_class3 varchar(25) default NULL, td_color1 varchar(6) default NULL, td_color2 varchar(6) default NULL, td_color3 varchar(6) default NULL, td_class1 varchar(25) default NULL, td_class2 varchar(25) default NULL, td_class3 varchar(25) default NULL, fontface1 varchar(50) default NULL, fontface2 varchar(50) default NULL, fontface3 varchar(50) default NULL, fontsize1 tinyint(4) default NULL, fontsize2 tinyint(4) default NULL, fontsize3 tinyint(4) default NULL, fontcolor1 varchar(6) default NULL, fontcolor2 varchar(6) default NULL, fontcolor3 varchar(6) default NULL, span_class1 varchar(25) default NULL, span_class2 varchar(25) default NULL, span_class3 varchar(25) default NULL, img_size_poll smallint(5) unsigned default NULL, img_size_privmsg smallint(5) unsigned default NULL, PRIMARY KEY (themes_id) ) TYPE=MyISAM; # # Dumping data for table 'phpbb_themes' # LOCK TABLES phpbb_themes WRITE; INSERT INTO phpbb_themes VALUES (1,'subSilver','subSilver','subSilver.css','','E5E5E5','000000','006699','5493B4','','DD6900','EFEFEF','DEE3E7','D1D7DC','','','','003300','006699','FFFFFF','cellpic1.gif','cellpic3.gif','cellpic2.jpg','FAFAFA','FFFFFF','','row1','row2','','Verdana, Arial, Helvetica, sans-serif','Trebuchet MS','Courier, \'Courier New\', sans-serif',10,11,12,'444444','006600','FFA34F','','','',NULL,NULL),(2,'subSilver','TCHS1','TCHS1.css','','FFFFFF','001100','003300','006600','','FF0000','EEFFEE','DDFFDD','AAFFAA','','cellpic3.gif','','FFFFFF','FFFFFF','FFFFFF','','','','FAFAFA','FFFFFF','','row1','row2','','Verdana, Lucida Grand, Arial, sans-serif','Trebuchet MS','Courier, \'Courier New\', sans-serif',10,11,12,'446644','006600','003300','','','',NULL,NULL),(3,'subSilver_copy','TCHS2','TCHS2.css','','','003300','006600','009900','AAAA00','000000','66FF66','99FF99','AAFFAA','','','','00AAAA','00EEEE','00FFFF','','','','','','','','','','','','',0,0,0,'','','','','','',NULL,NULL); UNLOCK TABLES; # # Table structure for table 'phpbb_themes_name' # DROP TABLE IF EXISTS phpbb_themes_name; CREATE TABLE phpbb_themes_name ( themes_id smallint(5) unsigned NOT NULL default '0', tr_color1_name char(50) default NULL, tr_color2_name char(50) default NULL, tr_color3_name char(50) default NULL, tr_class1_name char(50) default NULL, tr_class2_name char(50) default NULL, tr_class3_name char(50) default NULL, th_color1_name char(50) default NULL, th_color2_name char(50) default NULL, th_color3_name char(50) default NULL, th_class1_name char(50) default NULL, th_class2_name char(50) default NULL, th_class3_name char(50) default NULL, td_color1_name char(50) default NULL, td_color2_name char(50) default NULL, td_color3_name char(50) default NULL, td_class1_name char(50) default NULL, td_class2_name char(50) default NULL, td_class3_name char(50) default NULL, fontface1_name char(50) default NULL, fontface2_name char(50) default NULL, fontface3_name char(50) default NULL, fontsize1_name char(50) default NULL, fontsize2_name char(50) default NULL, fontsize3_name char(50) default NULL, fontcolor1_name char(50) default NULL, fontcolor2_name char(50) default NULL, fontcolor3_name char(50) default NULL, span_class1_name char(50) default NULL, span_class2_name char(50) default NULL, span_class3_name char(50) default NULL, PRIMARY KEY (themes_id) ) TYPE=MyISAM; # # Dumping data for table 'phpbb_themes_name' # LOCK TABLES phpbb_themes_name WRITE; INSERT INTO phpbb_themes_name VALUES (1,'The lightest row colour','The medium row color','The darkest row colour','','','','Border round the whole page','Outer table border','Inner table border','Silver gradient picture','Blue gradient picture','Fade-out gradient on index','Background for quote boxes','All white areas','','Background for topic posts','2nd background for topic posts','','Main fonts','Additional topic title font','Form fonts','Smallest font size','Medium font size','Normal font size (post body etc)','Quote & copyright text','Code text colour','Main table header text colour','','',''),(2,'The lightest row colour','The medium row color','The darkest row colour','','','','Border round the whole page','Outer table border','Inner table border','Silver gradient picture','Blue gradient picture','Fade-out gradient on index','Background for quote boxes','All white areas','','Background for topic posts','2nd background for topic posts','','Main fonts','Additional topic title font','Form fonts','Smallest font size','Medium font size','Normal font size (post body etc)','Quote & copyright text','Code text colour','Main table header text colour','','',''),(3,'','','','','','','','','','','','','','','','','','','','','','','','','','','','','',''); UNLOCK TABLES; # # Table structure for table 'phpbb_topics' # DROP TABLE IF EXISTS phpbb_topics; CREATE TABLE phpbb_topics ( topic_id mediumint(8) unsigned NOT NULL auto_increment, forum_id smallint(8) unsigned NOT NULL default '0', topic_title char(60) NOT NULL default '', topic_poster mediumint(8) NOT NULL default '0', topic_time int(11) NOT NULL default '0', topic_views mediumint(8) unsigned NOT NULL default '0', topic_replies mediumint(8) unsigned NOT NULL default '0', topic_status tinyint(3) NOT NULL default '0', topic_vote tinyint(1) NOT NULL default '0', topic_type tinyint(3) NOT NULL default '0', topic_first_post_id mediumint(8) unsigned NOT NULL default '0', topic_last_post_id mediumint(8) unsigned NOT NULL default '0', topic_moved_id mediumint(8) unsigned NOT NULL default '0', PRIMARY KEY (topic_id), KEY forum_id(forum_id), KEY topic_moved_id(topic_moved_id), KEY topic_status(topic_status), KEY topic_type(topic_type) ) TYPE=MyISAM; # # Dumping data for table 'phpbb_topics' # LOCK TABLES phpbb_topics WRITE; INSERT INTO phpbb_topics VALUES (60,15,'Interactive Forum',-1,1044568081,8,0,0,0,2,149,149,0),(59,13,'Carol Lamb?',72,1043883358,13,0,0,0,0,147,147,0),(6,4,'Ben Godfrey',5,1018022338,168,3,0,0,0,6,135,0),(7,4,'TC Agriculture',5,1018022547,110,2,0,0,0,7,142,0),(61,15,'Yes, he did! No, he didn\'t!',-1,1044568717,7,0,0,0,1,150,150,0),(9,5,'Sponsoring the Forums',5,1018024674,6,1,0,0,1,10,11,0),(10,6,'Welcome!',-1,1018025753,47,0,0,0,2,12,12,0),(11,4,'Flying Renault Dauphines',5,1018038532,123,2,0,0,0,13,128,0),(14,5,'Changing Username in Forum',8,1018107461,26,1,0,0,1,17,38,0),(15,7,'Private forum',-1,1018153540,17,0,0,0,2,19,19,0),(16,1,'How to use this forum',-1,1018221956,51,0,0,0,2,20,20,0),(17,4,'Locker Combinations',11,1018282803,186,7,0,0,0,21,64,0),(29,9,'Start the ball rolling here!',-1,1020804198,45,0,0,0,2,46,46,0),(19,4,'Where are the people from the Class of 72\'???',13,1018807486,94,3,1,0,0,26,40,0),(58,9,'reunion',-1,1041262926,64,2,0,0,0,140,146,0),(57,4,'Ardendale',-1,1039373451,53,1,0,0,0,137,138,0),(31,13,'Everything Else',-1,1022349305,71,2,0,0,2,59,104,0),(23,4,'The Dancers (May 2002)',5,1020059454,127,3,0,0,0,33,35,0),(24,4,'What do you mean "it wasn\'t always TC Blvd?"',5,1020464125,169,3,0,0,0,39,116,0),(25,11,'Reunion \'72 (2002)',-1,1020715206,51,1,0,0,2,42,62,0),(26,12,'Reunion art deco style',-1,1020716197,39,2,0,0,2,43,68,0),(49,13,'Don\'t even think about renaming the stadium',5,1031952814,45,0,0,0,0,118,118,0),(48,1,'class of 76 yearbook',-1,1030654284,67,1,0,0,0,113,117,0),(32,13,'Jim Grandon',-1,1022349867,83,2,0,0,0,60,148,0),(33,13,'Temple City Kazoo Orchestra',5,1022366378,88,4,0,0,0,61,131,0),(34,5,'Moderate a Forum!',-1,1022547804,9,0,0,0,1,63,63,0),(35,4,'Okay smarties, tell me why it\'s called Temple City...',27,1023259491,211,8,0,0,0,66,143,0),(36,14,'Conspirators?',-1,1024014909,152,4,0,0,0,71,121,0),(37,13,'Old photos',-1,1024621895,117,1,0,0,0,78,91,0),(56,5,'Usernames and logging into Alumni Forums',-1,1038767761,15,0,0,0,1,136,136,0),(40,14,'Heroes 4 (7/5/02)',-1,1026246450,128,5,0,0,0,94,100,0),(41,4,'Ardendale Avenue and Ward Kimball',32,1026363572,97,1,0,0,0,98,101,0),(42,14,'Who Are We Gallery',-1,1027360227,91,0,0,0,2,103,103,0),(55,14,'Girls of \'64',-1,1037732817,72,1,0,0,0,130,139,0),(44,9,'Class of 1969',23,1028841519,43,1,0,0,0,106,165,0),(45,13,'is anyone still around from the class of 1967?',-1,1029310009,46,1,0,0,0,109,110,0),(62,15,'Did he, or didn\'t he?',1,1045030119,44,11,0,0,2,151,163,0),(50,1,'What about...?',-1,1032927679,123,2,0,0,0,120,132,0),(51,1,'Pamela Ball (\'64) and Lance Ball',52,1033270953,57,1,0,0,0,122,166,0),(52,1,'Mike Cluck - Class of 1983',-1,1033935693,33,0,0,0,0,123,123,0),(53,1,'James Furst (\'62)',52,1034229738,33,0,0,0,0,124,124,0),(54,13,'TCHS Alumni News',-1,1034232171,91,3,0,0,0,125,145,0),(63,15,'Guilty or Innocent',1,1045084929,4,1,0,0,0,156,164,0),(64,13,'Test',5,1045087510,2,1,0,0,0,167,168,0); UNLOCK TABLES; # # Table structure for table 'phpbb_topics_watch' # DROP TABLE IF EXISTS phpbb_topics_watch; CREATE TABLE phpbb_topics_watch ( topic_id mediumint(8) unsigned NOT NULL default '0', user_id mediumint(8) NOT NULL default '0', notify_status tinyint(1) NOT NULL default '0', KEY topic_id(topic_id), KEY user_id(user_id), KEY notify_status(notify_status) ) TYPE=MyISAM; # # Dumping data for table 'phpbb_topics_watch' # LOCK TABLES phpbb_topics_watch WRITE; INSERT INTO phpbb_topics_watch VALUES (6,5,1),(7,5,1),(11,5,0),(14,8,1),(14,5,0),(17,11,1),(17,7,0),(26,27,1),(19,13,1),(19,14,1),(19,5,1),(23,5,0),(23,19,0),(23,6,0),(24,5,1),(24,19,1),(25,13,0),(6,27,1),(35,27,1),(35,5,1),(35,7,0),(36,7,0),(36,19,0),(36,5,1),(37,5,0),(40,19,0),(40,5,1),(41,6,0),(35,6,0),(33,5,0),(44,23,1),(33,44,1),(48,43,0),(49,5,0),(36,50,0),(51,52,1),(53,52,0),(50,5,1),(58,5,1),(54,5,0),(62,5,1),(64,5,0); UNLOCK TABLES; # # Table structure for table 'phpbb_user_group' # DROP TABLE IF EXISTS phpbb_user_group; CREATE TABLE phpbb_user_group ( group_id mediumint(8) NOT NULL default '0', user_id mediumint(8) NOT NULL default '0', user_pending tinyint(1) default NULL, KEY group_id(group_id), KEY user_id(user_id) ) TYPE=MyISAM; # # Dumping data for table 'phpbb_user_group' # LOCK TABLES phpbb_user_group WRITE; INSERT INTO phpbb_user_group VALUES (1,-1,0),(3,3,0),(4,4,0),(5,5,0),(6,6,0),(7,7,0),(8,8,0),(9,9,0),(10,5,0),(10,6,0),(13,10,0),(10,10,0),(14,8,0),(14,5,0),(15,11,0),(16,12,0),(10,7,0),(17,13,0),(18,14,0),(19,15,0),(20,16,0),(21,17,0),(22,18,0),(23,19,0),(24,20,0),(25,21,0),(26,22,0),(27,23,0),(28,24,0),(29,25,0),(30,26,0),(31,27,0),(32,28,0),(33,29,0),(34,30,0),(35,31,0),(36,32,0),(37,33,0),(38,34,0),(39,35,0),(40,36,0),(41,37,0),(42,38,0),(43,39,0),(44,40,0),(45,41,0),(46,42,0),(47,43,0),(48,44,0),(49,45,0),(50,46,0),(52,48,0),(51,47,0),(53,49,0),(54,50,0),(55,51,0),(56,52,0),(57,53,0),(58,54,0),(59,55,0),(60,56,0),(61,57,0),(62,58,0),(63,59,0),(64,60,0),(65,61,0),(66,62,0),(67,63,0),(68,64,0),(69,65,0),(70,66,0),(71,67,0),(72,68,0),(73,69,0),(74,70,0),(75,71,0),(76,72,0),(77,73,0),(78,74,0); UNLOCK TABLES; # # Table structure for table 'phpbb_users' # DROP TABLE IF EXISTS phpbb_users; CREATE TABLE phpbb_users ( user_id mediumint(8) NOT NULL default '0', user_active tinyint(1) default '1', username varchar(25) NOT NULL default '', user_password varchar(32) NOT NULL default '', user_session_time int(11) NOT NULL default '0', user_session_page smallint(5) NOT NULL default '0', user_lastvisit int(11) NOT NULL default '0', user_regdate int(11) NOT NULL default '0', user_level tinyint(4) default '0', user_posts mediumint(8) unsigned NOT NULL default '0', user_timezone decimal(5,2) NOT NULL default '0.00', user_style tinyint(4) default NULL, user_lang varchar(255) default NULL, user_dateformat varchar(14) NOT NULL default 'd M Y H:i', user_new_privmsg smallint(5) unsigned NOT NULL default '0', user_unread_privmsg smallint(5) unsigned NOT NULL default '0', user_last_privmsg int(11) NOT NULL default '0', user_emailtime int(11) default NULL, user_viewemail tinyint(1) default NULL, user_attachsig tinyint(1) default NULL, user_allowhtml tinyint(1) default '1', user_allowbbcode tinyint(1) default '1', user_allowsmile tinyint(1) default '1', user_allowavatar tinyint(1) NOT NULL default '1', user_allow_pm tinyint(1) NOT NULL default '1', user_allow_viewonline tinyint(1) NOT NULL default '1', user_notify tinyint(1) NOT NULL default '0', user_notify_pm tinyint(1) NOT NULL default '1', user_popup_pm tinyint(1) NOT NULL default '0', user_rank int(11) default '0', user_avatar varchar(100) default NULL, user_avatar_type tinyint(4) NOT NULL default '0', user_email varchar(255) default NULL, user_icq varchar(15) default NULL, user_website varchar(100) default NULL, user_from varchar(100) default NULL, user_sig text, user_sig_bbcode_uid varchar(10) default NULL, user_aim varchar(255) default NULL, user_yim varchar(255) default NULL, user_msnm varchar(255) default NULL, user_occ varchar(100) default NULL, user_interests varchar(255) default NULL, user_actkey varchar(32) default NULL, user_newpasswd varchar(32) default NULL, PRIMARY KEY (user_id), KEY user_session_time(user_session_time) ) TYPE=MyISAM; # # Dumping data for table 'phpbb_users' # LOCK TABLES phpbb_users WRITE; INSERT INTO phpbb_users VALUES (1,1,'TCHS_admin','88f647e2f95d90790d051dc74a32f43d',1045087421,0,1045086120,1017961961,1,38,0.00,1,'english','D M d, Y g:i a',0,0,1044794627,NULL,0,0,0,1,1,1,0,1,0,1,0,1,'',0,'editor@tchsalumni.org','','','','','','','','','','','',''),(3,1,'chairman60-64','5a0966bfd5559a9d8f009be4d8eab8e9',1017987220,-1,1017986549,1017986358,0,1,-8.00,1,'english','D M d, Y g:i a',2,0,1018410558,NULL,0,1,0,1,1,1,1,1,1,1,1,0,'',0,'equity.rc@verizon.net','','','','Richard Curtis \'62 Chairman 60-64 Reunion Committee','0134b73e17','','','','','','',NULL),(4,1,'desert_rose','25ee0c0c5392c0faf8d475917da10ba4',1018766374,0,1018420772,1017986709,0,1,-8.00,1,'english','D M d, Y g:i a',0,2,1018419858,NULL,1,1,0,0,1,1,1,1,1,1,1,0,'',0,'tweeety46@aol.com','','','Apple Valley,Ca.','','','','','desert_rose_46@hotmail.com','Retail-Homemaker','Bowling,Gardening','',NULL),(5,1,'rees60','0a9ae77de3e2088267a32c921af2031d',1045087491,0,1045084465,1017987374,0,36,-8.00,2,'english','D M d, Y g:i a',0,1,1029905479,1026076134,0,1,1,1,1,1,1,1,1,1,1,0,'',0,'rees@tchsalumni.org','','http://home.clark-ip.com/rees','Seattle','Rees Clark \'60','74cef913e5','','','','Editor/TCHS Alumni News','','',NULL),(6,1,'John Jenkins (60)','5adbfc3b512580e762fb5469c1338fe6',1043305831,0,1043305723,1018051537,0,4,-8.00,2,'english','D M d, Y g:i a',0,0,1041573500,NULL,1,1,1,1,1,1,1,1,1,1,1,0,'',0,'jdjnkns@aol.com','','','Gavilan Hills, CA','John','16498d1099','','','','','Music, working with vides','',''),(7,1,'Jane McN','726a5efdb2cd004c0daa3ba7dd5f0348',1042949793,5,1038197116,1018061995,0,3,-5.00,2,'english','D M d, Y g:i a',0,0,1025923569,NULL,1,0,1,1,1,1,1,1,1,1,1,0,'http://datacor.com/home/clarkr/friends/janercloseup1.gif',2,'jrolufs@comcast.net','','','Reston, VA','','','rolufsjr','','','Software Tester','reading, spirituality, grandchildren, graduate school, walking for exercise','',NULL),(8,1,'pdmike','6cd76fc3c067cd76fd5696ff63dc8daa',1018107430,-9,1018107257,1018106748,0,1,-8.00,2,'english','D M d, Y g:i a',1,0,1018154178,NULL,1,1,0,1,1,1,1,1,1,1,1,0,'',0,'pdmike@aol.com','','','South Pasadena, CA','','','','','','Public Defender','','',NULL),(9,1,'Webmaster','e43d2708228b8876dd7666baac293a1d',0,0,0,1018119984,0,0,-8.00,2,'english','D M d, Y g:i a',0,0,0,NULL,0,1,0,1,1,1,1,0,0,1,1,0,'',0,'webmaster@clark-ip.com','','','','','','','','','Technical manager of this web site','','',NULL),(10,1,'janell60','87eb0acec53cdf4ca2488ba1db9b486e',1018151554,-4,1018151014,1018150993,0,0,-8.00,2,'english','D M d, Y g:i a',0,0,0,NULL,0,1,0,1,1,1,1,1,0,1,1,0,'',0,'janell@seattlegifts.com','','','Redmond, WA','','','','','','Retired','Travel, genealogy','',NULL),(11,1,'Mike Coghlan','6cd76fc3c067cd76fd5696ff63dc8daa',1019876136,0,1018582687,1018282040,0,1,-8.00,2,'english','D M d, Y g:i a',0,2,1018295472,NULL,1,1,0,1,1,1,1,1,1,1,1,0,'',0,'pdmike@aol.com','','','South Pasadena','','','','','','L.A. County Deputy Public Defender','','',NULL),(13,1,'Bonnie Johnson','25ee0c0c5392c0faf8d475917da10ba4',1026107609,0,1025940850,1018806647,0,2,-8.00,2,'english','D M d, Y g:i a',0,0,1021652506,NULL,1,0,0,1,1,1,1,1,1,1,1,0,'',0,'Bonnieshere@aol.com','','','Apple Valley,Ca.','I live in Apple Valley,Ca. with my husband,my 3 children(17,14,7) and my stepdaughter 16. Never a dull moment . I love the slower paced life up here!','49062ce1cf','','','desert_rose_46@hotmail.com','Retail,Homemaker','Bowling,Gardening','',NULL),(64,1,'SMicheleEP','bfbe4a31ef5512e385aa61d5ab7b049c',1039052054,0,1039051971,1039051952,0,0,-8.00,2,'english','D M d, Y g:i a',0,0,1039051971,NULL,0,1,0,1,1,1,1,1,0,1,1,0,'',0,'SMicheleEP@aol.com','','','','','','','','','','','',NULL),(12,1,'Donna Godfrey','574ff4699083ce51de0dabcfad5edc4c',1018287900,-10,1018287774,1018287744,0,0,-8.00,2,'english','D M d, Y g:i a',0,0,1018287774,NULL,1,1,0,1,1,1,1,0,1,1,1,0,'',0,'donnacanon@aol.com','','','Helendale, CA','Like to hear from anyone from class of \'72...','41969f3f89','','','','Teacher','golf, biking, line dancing','',NULL),(14,1,'glineback','b3e24b7672fddf21613da79b21ff7c99',1034893811,0,1029793487,1019060901,0,1,-8.00,2,'english','D M d, Y g:i a',0,0,0,NULL,0,0,0,0,0,1,1,0,1,1,0,0,'',0,'glineback@heath-lineback.com','','','Kennesaw, GA','','','','','','','','',NULL),(15,1,'MaryScholich','9c65e9488cef42666116a68c8eaf07ca',1019538158,-7,1019537940,1019537918,0,1,-8.00,2,'english','D M d, Y g:i a',0,0,0,NULL,0,1,0,1,1,1,1,1,0,1,1,0,'',0,'maryalice45@hotmail.com','','','','','','gambrelle','','','','','',NULL),(16,1,'LadyPat','9637e5a97194e26fa7f7d50b77ee1fbe',1020106757,1,1019963748,1019963342,0,0,-5.00,2,'english','D M d, Y g:i a',0,0,0,NULL,1,1,1,1,1,1,1,1,1,1,1,0,'',0,'ladypat@tampabay.rr.com','9441099','','Tampa','','','','','','State Worker','','',NULL),(17,1,'DMSTCHS72','9177b0b92862c0abbd33de24b22134fb',1020094149,0,1020094149,1020094022,0,0,-8.00,2,'english','D M d, Y g:i a',0,0,0,NULL,1,0,1,1,1,1,1,1,0,1,1,0,'',0,'dmctennis@hotmail.com','','','','','','','','','','','',NULL),(18,1,'Corinne Hutcheson Lord 19','8d788385431273d11e8b43bb78f3aa41',0,0,0,1020109999,0,0,-8.00,2,'english','D M d, Y g:i a',0,0,0,NULL,0,1,0,1,1,1,1,1,0,1,1,0,'',0,'Lords3850@aol.com','','','San Diego, CA','Can\'t believe that almost 39 years has passed since we (class of 63) graduated. We\'ve had great reunions, and I hope lots of our classmates will turn out in October at the Queen Mary for our combined reunion. See you then!','dd630cb4cc','','','','Retired teacher','reading, walking, traveling, family, friends','',NULL),(19,1,'Marilyn Snyder','3fe5003edc0cb6c83962dbd74d35dd50',1044636970,0,1041897240,1020266476,0,4,-8.00,2,'english','D M d, Y g:i a',0,0,1026747435,NULL,0,1,0,1,1,1,1,0,1,1,1,0,'',0,'emlinkins@yahoo.com','','','','Marilyn \'60','3eaa20c415','','','','','','',NULL),(20,1,'Charlie Capps','dc09e7a7366f759c48f120c164f66594',1023819729,4,1022186210,1020287563,0,0,-8.00,2,'english','D M d, Y g:i a',0,0,0,NULL,1,1,0,1,1,1,1,1,1,1,1,0,'',0,'chas307@hotmail.com','','','','','','','','','Marketing Director','Home Improvement','',NULL),(25,1,'tenton','f92f6219765c5b561af5edcc51de07ff',0,0,0,1021128221,0,0,-8.00,2,'english','D M d, Y g:i a',0,0,0,NULL,0,1,0,1,1,1,1,1,0,1,1,0,'',0,'tenton@mac.com','','','','','','','','','Technical Support','','',NULL),(21,1,'Kim','ccda5a66cc1e192fd9aef87e7d6b3956',1020569254,0,1020569254,1020569228,0,0,-8.00,2,'english','D M d, Y g:i a',0,0,0,NULL,0,1,0,1,1,1,1,1,1,1,1,0,'',0,'kimi4455@aol.com','','','Lancaster CA','','','kimi4455','','','Controller','','',NULL),(22,1,'PSnow','5ef64bad8f9d7e0c85f821580e4d6629',1042279581,13,1042279536,1020753637,0,0,-8.00,2,'english','D M d, Y g:i a',0,0,0,NULL,1,0,1,1,1,1,1,0,1,1,0,0,'',0,'MsfitToy@aol.com','','http://www.kosmickat.homestead.com','Northern California','','','','','','Business Owner','Ebay Seller of collectibles & books','',NULL),(23,1,'jancase','79ab945544e5bc017a2317b6146ed3aa',1044656367,-4,1043856191,1020793899,0,2,-8.00,2,'english','D M d, Y g:i a',0,0,1020955037,NULL,1,1,0,1,1,1,1,1,1,1,1,0,'',0,'janetalkadis@usa.net','','','West Covina','','','jancase56','','','Administrator','','',NULL),(24,1,'macook','24bc5bcecf1e52a93866fa730cf3c617',1035044921,0,1020896375,1020882616,0,2,-8.00,2,'english','D M d, Y g:i a',0,0,1035044921,NULL,0,1,1,1,0,1,1,1,0,1,1,0,'',0,'michael1743@earthlink.net','','','West Covina, Ca','MACOOK','02560170f1','','','','Financial Services','','',NULL),(26,1,'Jim Spillers','e3408432c1a48a52fb6c74d926b38886',1021432131,0,1021432131,1021432072,0,0,-8.00,2,'english','D M d, Y g:i a',0,0,0,NULL,1,0,0,1,1,1,1,1,1,1,0,0,'',0,'jspillers@earthlink.net','','','Montclair','','','','','','Plumber','','902499','b42e865161a97f8894eff41f54e0d124'),(27,1,'tedmcdonald','366c1bdc18944703ac022734fb17e34b',1023259697,13,1021864381,1021856960,0,4,-8.00,2,'english','D M d, Y g:i a',0,0,0,NULL,1,1,0,1,1,1,1,1,1,1,1,0,'',0,'ted@tedmcdonald.com','','','California','Ted Edwin McDonald\r\nClass of 1982','5b67f13344','','','','Consultant','High Wheel Bicycles','',NULL),(28,1,'Doug Lindsey','31e09d821d63afa6321f6c84776e7941',0,0,0,1022938498,0,0,-8.00,2,'english','D M d, Y g:i a',0,0,0,NULL,0,0,0,1,1,1,1,1,1,1,0,0,'',0,'tarbuckettwo9er@aol.com','','','Tampa, Florida','','','tarbuckettwo9er@aol.com','','','Work for the newspaper','Varied...news/current events, gardening, good food/wine, local travel, beaches, the Keys, living with style, retirement in a few years.a ,','',NULL),(29,1,'Tim Randall','15e5c87b18c1289d45bb4a72961b58e8',1024375123,4,1023714502,1022946700,0,0,-8.00,2,'english','D M d, Y g:i a',0,0,0,NULL,1,1,0,1,1,1,1,1,1,1,1,0,'',0,'randall_tim@hotmail.com','','','','','','','','','Retired','','',NULL),(30,1,'Diane Lannom','1dd6473a75df4ac65f0911dbafee927f',1036222856,0,1034879521,1024525911,0,0,-8.00,2,'english','D M d, Y g:i a',0,0,1031094275,NULL,1,1,0,1,1,1,1,1,1,1,1,0,'',0,'disperry@hotmail.com','','http://www.angelfire.com/journal/Dianes/index.html','Oregon','I have a business website as well: http://www.thesweatshop.com','f832262e3a','','','disperry','Self Employed','Outdoors, Surfing the Web, Building Websites','',NULL),(31,1,'sfrost','3bf1114a986ba87ed28fc1b5884fc2f8',1025947028,0,1025945961,1025945937,0,0,-8.00,2,'english','D M d, Y g:i a',0,0,0,NULL,1,1,0,1,1,1,1,1,1,1,1,0,'',0,'sfrost@nc.rr.com','','','','','','','','','','','',NULL),(35,1,'richard walker','76bba5ee241042431796c97a92e64f5d',1026780377,0,1026694230,1026693936,0,0,-8.00,2,'english','D M d, Y g:i a',0,0,1026780377,NULL,0,1,0,1,1,1,1,1,0,1,1,0,'',0,'rich5287@hotmail.com','','','','','','','','','','','',NULL),(36,1,'Sherry Hardesty Miller','f8d8b03aa8e8fc785f6aa68ad992e52b',1043123625,13,1040009508,1029206572,0,0,-8.00,2,'english','D M d, Y g:i a',0,0,0,NULL,0,1,0,1,1,1,1,1,0,1,1,0,'',0,'kensher@teleport.com','','','','Hi everyone I know. Can\'t tell you how much I think about you with fond memories. Sherry','a407e7b2d9','','','','retired','dancing,painting,quilting,piano','',NULL),(32,1,'KCongerScott','0dbf559e994c2fb17e73592b116c14e1',1037728795,2,1026363602,1026362638,0,1,-8.00,2,'english','D M d, Y g:i a',0,0,1037727477,1037728547,0,1,0,1,1,1,1,1,0,1,1,0,'',0,'starlightscott@earthlink.net','','','Bishop CA','Karen Conger Scott (1962)','4819c6b7d7','','','','Retired H.S. teacher','travel, writing, photography','',NULL),(33,1,'BIGGBALL','d1133275ee2118be63a577af759fc052',0,0,0,1026494235,0,0,-8.00,2,'english','D M d, Y g:i a',0,0,0,NULL,1,1,0,1,1,1,1,1,1,1,1,0,'',0,'grandpagball@aol.com','','','','','','','','','','','',NULL),(34,1,'dorsilaw','84c3a1e9cf11f6776ef47cba7449ef6b',1031262656,-4,1030462255,1026589320,0,0,-8.00,2,'english','D M d, Y g:i a',0,0,1031262454,NULL,1,0,0,0,1,1,1,1,1,1,0,0,'',0,'Trusts@DorsiLaw.com','','http://DorsiLaw.com','San Luis Obispo, CA','','','','','','Attorney','Mock Trial, Speech & Debate','',NULL),(57,1,'bwarden','8d7d88e8dd344472ce6f2cf0b434beb9',1035403079,0,1035403079,1035403051,0,0,-8.00,2,'english','D M d, Y g:i a',0,0,0,NULL,0,1,0,1,1,1,1,1,0,1,1,0,'',0,'bwarden@lvcm.com','','','Las Vegas, NV','','','','','bruce_warden@hotmail.com','Systems Administrator','','',NULL),(37,1,'Kathy Grattan/McCarthy','83e4a96aed96436c621b9809e258b309',0,0,0,1029309203,0,0,-8.00,2,'english','D M d, Y g:i a',0,0,0,NULL,1,0,1,0,1,1,1,1,1,1,1,0,'',0,'majela@chiconet.com','','','Chico, CA','Kathleen Grattan','','','','','Planner','','',NULL),(38,1,'gunfart','90e14eb71a7ffc6e0e0e0141a75812f5',1034884445,0,1029514154,1029449888,0,0,-8.00,2,'english','D M d, Y g:i a',0,0,0,NULL,1,1,0,1,1,1,1,1,1,1,1,0,'',0,'gunfart@earthlink.net','','','','I\'\\t\'s not that I\'m lazy...I just don\'t care!','d3ff901ae2','JamesDGunther','gunfart','','','','',NULL),(39,1,'steveweis','1cff48786c6d5486c9327824f601eb38',1030613522,-4,1030208995,1030208480,0,0,-8.00,2,'english','D M d, Y g:i a',0,0,0,NULL,1,0,1,1,1,1,1,1,1,1,1,0,'',0,'steveweis2000@aol.com','','','','','','','','','','','',NULL),(40,1,'jotun','7eafa558647db15de11b4a441f41d96f',1030290530,4,1030290301,1030290272,0,0,-8.00,2,'english','D M d, Y g:i a',0,0,0,NULL,0,1,0,1,1,1,1,1,1,1,1,0,'',0,'j0tun@earthlink.net','2479435','','California','','','TCHSSUCKS','','','','','',NULL),(41,1,'Queena','1fca12788cf9886bf273a728b0dd01bf',1030393992,-1,1030393382,1030393187,0,0,-8.00,2,'english','D M d, Y g:i a',0,0,0,NULL,0,1,0,1,1,1,1,1,1,1,0,0,'',0,'queena28@hotmail.com','','','','Queena\r\nClass of \'89','5a6ae06038','','','','clerk','','',NULL),(45,1,'ckroe','803a5613569e4b1ea435be42f1134693',0,0,0,1030894981,0,0,-5.00,2,'english','D M d, Y g:i a',0,0,0,NULL,0,1,0,1,1,1,1,1,0,1,1,0,'',0,'cherylk@mis.net','','','East Bernstadt, KY','Cheri Kane','7741352f2b','','','','','Gardening & Genealogy','',NULL),(42,1,'Rocky Curtiss','b30db8188250cd86d3c495dafc2a7f4e',1030558597,3,1030558520,1030558493,0,0,-8.00,2,'english','D M d, Y g:i a',0,0,0,NULL,1,1,0,1,1,1,1,1,1,1,1,0,'',0,'jasorrocky@yahoo.com','','','Redlands, CA','','','','jasorrocky','','Production Manager','golf, dancing, grandchildren','',NULL),(43,1,'ginaT','d04c06648d63e21a4725f1fce3b26d16',1037990099,-1,1037037857,1030654469,0,0,-8.00,2,'english','D M d, Y g:i a',0,0,1031692741,NULL,0,0,0,1,1,1,1,0,1,1,1,0,'',0,'hula2z@aol.com','','','','','','','','','','','',NULL),(44,1,'JonW77','0e235fe01c863895210c5a65fab96529',1044250780,5,1037577643,1030727239,0,1,-8.00,2,'english','D M d, Y g:i a',0,0,0,NULL,1,1,0,1,1,1,1,1,1,1,1,0,'',0,'jon_wilbert@hp.com','','','','Jon Wilbert \'77','0dfde7f461','Jon2403','Jon2403','','Services Program Manager','','',NULL),(46,1,'kusmh','d275e1ea564401f99327900dd7624bee',1044229093,14,1039669399,1031024194,0,0,-8.00,2,'english','D M d, Y g:i a',0,0,0,NULL,0,1,0,1,1,1,1,1,0,1,1,0,'',0,'mdkus@iwvisp.com','','','Ridgecrest, CA','Mary ;-)','87e2cd1b2f','','','','IT Specialist','Hiking, reading, many others','',NULL),(50,1,'Ray Watters - 1962','8dc2fc39572eb6aa47e9680b0bdbd29e',1033121355,-4,1033121253,1032746058,0,1,-8.00,2,'english','D M d, Y g:i a',0,0,0,NULL,1,1,0,1,1,1,1,1,1,1,1,0,'http://www.ridgecresttv.com/meweb.gif',2,'rwatters@kloafm.com','','http://www.ridgecresttv.com','Ridgecrest, CA','Ray Watters - 1962','d0ffe74852','','','','News Director/Anchor','','',NULL),(47,1,'Brad Fagan','45d47c28cc2ada741ef5798cf8812306',1031277462,0,1031277462,1031277347,0,0,-8.00,2,'english','D M d, Y g:i a',0,0,0,NULL,1,1,0,1,1,1,1,1,1,1,1,0,'',0,'bjoorn@aol.com','','','San Diego','','','bjoorn','','','','','',NULL),(48,1,'Sherry (Trinkley) Edwards','df5354693177e83e8ba089e94b7b6b55',1037562619,-10,1034372805,1031341737,0,0,-8.00,2,'english','D M d, Y g:i a',0,0,1037561786,1034372118,0,1,0,1,1,1,1,1,1,1,1,0,'',0,'shrlyn@earthlink.net','','','','Married with 5 beautiful adult children and two gorgeous 2 1/2 twin grandson\'s.Very happy with good health. Life has been good to us with a lot more to come. Would love to hear from old friends from 59/62 class years. See you Oct 5th on the Queen','8d342125a6','','','','','Travel, Reading & Family','',NULL),(49,1,'Judy Isaac Robertson','15b29ffdce66e10527a65bc6d71ad94d',1031778951,-4,1031778610,1031778527,0,0,-8.00,2,'english','D M d, Y g:i a',0,0,0,NULL,1,1,0,1,1,1,1,1,0,1,1,0,'',0,'judy@tri-form.com','','','','','','','','','','','',NULL),(51,1,'deezflames','4c795f957a9d0c3d0a8727b46419e100',1033149763,0,1033148897,1033148882,0,0,-8.00,2,'english','D M d, Y g:i a',0,0,0,NULL,0,1,0,1,1,1,1,1,0,1,1,0,'',0,'deezflames@aol.com','','','','','','','','','','','',NULL),(52,1,'wa6axe','bc49cf9594e9aa3850d4332c0c8bb879',1044795592,0,1044795471,1033270409,0,2,-6.00,2,'english','D M d, Y g:i a',0,0,0,NULL,1,1,0,1,1,1,1,1,1,1,1,0,'',0,'jglock2@airmail.net','','','','','','','','','','','',NULL),(53,1,'Carla Shideler Bailey-62','dd0801737ba206f820f4b7631e28f1c3',1033580688,-4,1033580401,1033537826,0,0,-8.00,2,'english','D M d, Y g:i a',1,0,1037728422,NULL,0,0,0,1,1,1,1,1,1,1,1,0,'',0,'bailey222@earthlink.net','','','','','','','','','','','',NULL),(54,1,'judy staab','b28bd889b6ead8e05ca8d187f863428d',1034379037,0,1034025672,1033578214,0,0,-7.00,2,'english','D M d, Y g:i a',0,0,0,NULL,1,0,1,1,1,1,1,1,1,1,1,0,'',0,'judystaab@earthlink.net','','','Phoenix, AZ, USA','','','','','','Fine Art Promoter','Swim, Waterski, Hike, Family, Friends, work, work work!','',NULL),(56,1,'kevnkris','ced10047609ae6c1cab4feb5baba3683',1042605759,1,1042605740,1035092274,0,0,-8.00,2,'english','D M d, Y g:i a',0,0,0,NULL,1,1,0,1,1,1,1,1,1,1,1,0,'',0,'momgobyby@aol.com','','','la puente','looking for classmates of 1983 also 1993 my husbands class\r\n\r\nthank \r\nkris','a17d6937f9','','','','health care','finding new ones each day','',NULL),(55,1,'batgirl_2nite15','8676ae059637891369441cc10fb08a54',1034483370,0,1034483370,1034482324,0,0,-8.00,2,'english','D M d, Y g:i a',0,0,0,NULL,0,1,0,1,1,1,1,1,1,1,1,0,'',0,'batgirl_2nite15@yahoo.com','','','covina','Batgirl was here','0e06e05204','batgirl+2nite15','batgirl_2nite15','','','','',NULL),(58,1,'rrische79','68d0e72918764d3cb15b7c4d82dfbb98',1038748220,0,1036299186,1036298329,0,0,-8.00,2,'english','D M d, Y g:i a',0,0,1038748220,NULL,1,1,0,1,1,1,1,1,0,1,1,0,'',0,'rrische@earthlink.net','','','Riverside CA and the bay area','I\'m looking to hear from fellow class of \'79er\'s. Let me know if you\'re out there!','1d55cc2a34','','','','Computer graphics artist','The movies, art, computers, hearing from old friends!','',NULL),(59,1,'Linda Galassi','ee966de1b09091012fa10107d695dd19',0,0,0,1036607013,0,0,-8.00,2,'english','D M d, Y g:i a',0,0,0,NULL,1,0,0,0,1,1,1,1,1,1,1,0,'',0,'lindagalassi2002@yahoo.com','','','Temple City, California','','','','','','Food Service Assistant','','b74526','9b4f769e8cf5b2fbcebd0f54e449d4ee'),(60,1,'Dori Hollingsworth','2dee0f1bdd4dd48f05db31847fffdc67',1040905770,-1,1040905757,1037017989,0,0,-8.00,2,'english','D M d, Y g:i a',0,0,1039867173,NULL,0,1,0,1,1,1,1,1,0,1,1,0,'',0,'banddholli@aol.com','','','','','','','','','','','',NULL),(61,1,'class of 89drummer','6c818f215ca1531d3594f587bd278135',0,0,0,1037595392,0,0,-8.00,2,'english','D M d, Y g:i a',0,0,0,NULL,0,1,0,1,1,1,1,1,1,1,1,0,'',0,'kspurlin@webmd.com','','','','','','','','','Office Manager/gastroenterology office','being a mom, boating, nascar','',NULL),(62,1,'Michael Abrams','67aa576bb50ba01b4b1312f6b3df2fa8',1045065297,4,1037648632,1037648244,0,0,-8.00,2,'english','D M d, Y g:i a',0,0,0,NULL,1,0,0,1,1,1,1,1,0,1,1,0,'',0,'michaelabrams@sbcglobal.net','','','Los Angeles, CA','','','','','','','','',NULL),(63,1,'EliWiller','cd880b726e0a0dbd4237f10d15da46f4',1037825273,1,1037824993,1037824973,0,0,-8.00,2,'english','D M d, Y g:i a',0,0,0,NULL,0,1,0,1,1,1,1,1,0,1,1,0,'',0,'epearson@uci.edu','','','','','','','','','','','',NULL),(67,1,'Gene Eggers','659f8c189cb22598f427c035c6e88864',1041418509,4,1041072046,1040098457,0,0,-8.00,2,'english','D M d, Y g:i a',0,0,1040098491,NULL,1,1,1,1,1,1,1,1,1,1,1,0,'',0,'eggers@rocketmail.com','','','Glendora, California 91741 (Class of 67\')','©¿©¬ GENE EGGERS (Class of 67\')','36169d5e08','','','','Retired','','',NULL),(65,1,'Lennycan','2573e531c318ce057a25fbc711b94540',1040012707,0,1039570870,1039395918,0,0,-8.00,2,'english','D M d, Y g:i a',0,0,1039570870,NULL,0,0,0,0,0,1,1,0,0,0,0,0,'',0,'hugglebuggle@integrity.com','','','','','','','','','','','',NULL),(66,1,'Joe88','c714e4760adc37a9ac97d224912b8cac',1039564544,-11,1039564479,1039564450,0,0,-8.00,2,'english','D M d, Y g:i a',0,0,0,NULL,0,1,0,1,1,1,1,1,1,1,1,0,'',0,'jfaliti@laschools.org','','','Los Angeles','You can accomplish anything, if you know what you can accomplish.........\r\n\r\nMakes sense if you think about it....\r\n\r\nJoe Faliti 1988','09615895f7','','','','','','',NULL),(68,1,'Laylopro','f396b9196730d062f042eee512df1264',1040536833,0,1040536833,1040536657,0,0,-8.00,2,'english','D M d, Y g:i a',0,0,0,NULL,0,0,1,1,1,1,1,0,1,1,1,0,'',0,'ian@alkire.org','','http://www.alkire.org','La Verne, Ca.','','','','','','Financial & Investment Advisor','Several & Eclectic','',NULL),(70,1,'Jhandley','c9c9a40f891c1b8b96040083e3efc31f',0,0,0,1042489481,0,0,-8.00,2,'english','D M d, Y g:i a',0,0,0,NULL,1,0,0,1,1,1,1,1,1,1,1,0,'',0,'jwhandyman@Yahoo.com','','','','','','','','','Teacher (High School English)','','',NULL),(69,1,'Jessica Ivans','c03b46cd896e8a0ca38000dfc032d0cb',1042265429,0,1042265429,1042265407,0,0,-8.00,2,'english','D M d, Y g:i a',0,0,0,NULL,0,1,0,1,1,1,1,1,0,1,1,0,'',0,'j.ivans@attbi.com','','','','','','','','','','','',NULL),(71,1,'Barbara Kuhne','c4de7df1bafd6d9b8f5d35d4328c93b0',1043880223,-7,1043879881,1043879817,0,0,-8.00,2,'english','D M d, Y g:i a',0,0,0,NULL,0,1,0,1,1,1,1,1,1,1,1,0,'',0,'kuhne@att.net','','','Seattle','','','','','','','','',NULL),(72,1,'Merry Messing','da6b22374b978c23217a557997363254',1043883555,13,1043883186,1043882917,0,2,-8.00,2,'english','D M d, Y g:i a',0,0,0,NULL,0,1,0,1,1,1,1,1,0,1,1,0,'',0,'merrygregg429@hotmail.com','','','Benicia, CA','','','','','','Business Owner/Manager','','',NULL),(73,1,'Monica Sinclair','2f229719d736909e90ea9eb4d58fc105',1044036798,1,1044036656,1044036606,0,0,-8.00,2,'english','D M d, Y g:i a',0,0,0,NULL,0,1,0,1,1,1,1,1,1,1,1,0,'',0,'monicasinc@earthlink.net','','','Temple City','','','monicasinc','','','Office Manager','','',NULL),(74,1,'bob64','276f8db0b86edaa7fc805516c852c889',1044168580,0,1044168580,1044168527,0,0,-8.00,2,'english','D M d, Y g:i a',0,0,0,NULL,0,1,0,1,1,1,1,1,0,1,1,0,'',0,'warrior@citlink.net','','','elko, nv','','','','','','','','',NULL); UNLOCK TABLES; # # Table structure for table 'phpbb_vote_desc' # DROP TABLE IF EXISTS phpbb_vote_desc; CREATE TABLE phpbb_vote_desc ( vote_id mediumint(8) unsigned NOT NULL auto_increment, topic_id mediumint(8) unsigned NOT NULL default '0', vote_text text NOT NULL, vote_start int(11) NOT NULL default '0', vote_length int(11) NOT NULL default '0', PRIMARY KEY (vote_id), KEY topic_id(topic_id) ) TYPE=MyISAM; # # Dumping data for table 'phpbb_vote_desc' # LOCK TABLES phpbb_vote_desc WRITE; INSERT INTO phpbb_vote_desc VALUES (2,62,'Is he guilty?',1045030444,604800); UNLOCK TABLES; # # Table structure for table 'phpbb_vote_results' # DROP TABLE IF EXISTS phpbb_vote_results; CREATE TABLE phpbb_vote_results ( vote_id mediumint(8) unsigned NOT NULL default '0', vote_option_id tinyint(4) unsigned NOT NULL default '0', vote_option_text varchar(255) NOT NULL default '', vote_result int(11) NOT NULL default '0', KEY vote_option_id(vote_option_id), KEY vote_id(vote_id) ) TYPE=MyISAM; # # Dumping data for table 'phpbb_vote_results' # LOCK TABLES phpbb_vote_results WRITE; INSERT INTO phpbb_vote_results VALUES (2,2,'No',0),(2,1,'Yes',0); UNLOCK TABLES; # # Table structure for table 'phpbb_vote_voters' # DROP TABLE IF EXISTS phpbb_vote_voters; CREATE TABLE phpbb_vote_voters ( vote_id mediumint(8) unsigned NOT NULL default '0', vote_user_id mediumint(8) NOT NULL default '0', vote_user_ip char(8) NOT NULL default '', KEY vote_id(vote_id), KEY vote_user_id(vote_user_id), KEY vote_user_ip(vote_user_ip) ) TYPE=MyISAM; # # Dumping data for table 'phpbb_vote_voters' # LOCK TABLES phpbb_vote_voters WRITE; UNLOCK TABLES; # # Table structure for table 'phpbb_words' # DROP TABLE IF EXISTS phpbb_words; CREATE TABLE phpbb_words ( word_id mediumint(8) unsigned NOT NULL auto_increment, word char(100) NOT NULL default '', replacement char(100) NOT NULL default '', PRIMARY KEY (word_id) ) TYPE=MyISAM; # # Dumping data for table 'phpbb_words' # LOCK TABLES phpbb_words WRITE; UNLOCK TABLES;