-- phpMyAdmin SQL Dump -- version 2.11.5 -- http://www.phpmyadmin.net -- -- Host: localhost -- Generation Time: Apr 21, 2008 at 10:26 PM -- Server version: 5.0.45 -- PHP Version: 5.2.3 SET SQL_MODE="NO_AUTO_VALUE_ON_ZERO"; -- -- Database: `dbaer_leaves` -- -- -------------------------------------------------------- -- -- Table structure for table `base_dtlmatch` -- DROP TABLE IF EXISTS `base_dtlmatch`; CREATE TABLE IF NOT EXISTS `base_dtlmatch` ( `rowID` smallint(6) unsigned NOT NULL auto_increment, `firstnameID` mediumint(9) unsigned NOT NULL default '0', `lastnameID` mediumint(9) unsigned NOT NULL default '0', `indiID` mediumint(9) unsigned NOT NULL, `bYear` smallint(4) unsigned NOT NULL default '0', `dYear` smallint(4) unsigned NOT NULL default '0', `siteID` smallint(6) unsigned NOT NULL default '0', PRIMARY KEY (`rowID`), KEY `indiID` (`indiID`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_bin AUTO_INCREMENT=1 ; -- -- Dumping data for table `base_dtlmatch` -- -- -------------------------------------------------------- -- -- Table structure for table `base_fncounts` -- DROP TABLE IF EXISTS `base_fncounts`; CREATE TABLE IF NOT EXISTS `base_fncounts` ( `firstNameID` mediumint(8) unsigned NOT NULL, PRIMARY KEY (`firstNameID`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_bin; -- -- Dumping data for table `base_fncounts` -- -- -------------------------------------------------------- -- -- Table structure for table `base_fnmatch` -- DROP TABLE IF EXISTS `base_fnmatch`; CREATE TABLE IF NOT EXISTS `base_fnmatch` ( `rowID` mediumint(9) unsigned NOT NULL auto_increment, `firstnameID` mediumint(9) unsigned NOT NULL, `firstName` varchar(250) collate utf8_bin NOT NULL, `firstnameLC` varchar(250) collate utf8_bin NOT NULL, `nCnt` mediumint(9) unsigned NOT NULL, PRIMARY KEY (`rowID`), KEY `lastnameID` (`firstnameID`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_bin AUTO_INCREMENT=1 ; -- -- Dumping data for table `base_fnmatch` -- -- -------------------------------------------------------- -- -- Table structure for table `base_lncounts` -- DROP TABLE IF EXISTS `base_lncounts`; CREATE TABLE IF NOT EXISTS `base_lncounts` ( `lastNameID` mediumint(8) unsigned NOT NULL, PRIMARY KEY (`lastNameID`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_bin; -- -- Dumping data for table `base_lncounts` -- -- -------------------------------------------------------- -- -- Table structure for table `base_lnmatch` -- DROP TABLE IF EXISTS `base_lnmatch`; CREATE TABLE IF NOT EXISTS `base_lnmatch` ( `rowID` mediumint(9) unsigned NOT NULL auto_increment, `lastnameID` mediumint(9) unsigned NOT NULL, `lastName` varchar(250) collate utf8_bin NOT NULL, `lastNameLC` varchar(250) collate utf8_bin default NULL, `nCnt` mediumint(9) unsigned NOT NULL, PRIMARY KEY (`rowID`), KEY `lastnameID` (`lastnameID`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_bin AUTO_INCREMENT=1 ; -- -- Dumping data for table `base_lnmatch` -- -- -------------------------------------------------------- -- -- Table structure for table `base_stmatch` -- DROP TABLE IF EXISTS `base_stmatch`; CREATE TABLE IF NOT EXISTS `base_stmatch` ( `rowID` mediumint(9) unsigned NOT NULL auto_increment, `siteID` smallint(6) unsigned NOT NULL, PRIMARY KEY (`rowID`), UNIQUE KEY `siteID` (`siteID`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_bin AUTO_INCREMENT=1 ; -- -- Dumping data for table `base_stmatch` -- -- -------------------------------------------------------- -- -- Stand-in structure for view `concentratednames` -- CREATE TABLE IF NOT EXISTS `concentratednames` ( `SiteID` smallint(6) unsigned ,`SiteName` varchar(250) ,`LastNameID` mediumint(9) unsigned ,`LastName` varchar(250) ,`iCount` mediumint(9) unsigned ); -- -------------------------------------------------------- -- -- Table structure for table `debug_log` -- DROP TABLE IF EXISTS `debug_log`; CREATE TABLE IF NOT EXISTS `debug_log` ( `logID` int(11) unsigned NOT NULL auto_increment, `logData` mediumtext NOT NULL, PRIMARY KEY (`logID`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='InnoDB free: 1394688 kB' AUTO_INCREMENT=1 ; -- -- Dumping data for table `debug_log` -- -- -------------------------------------------------------- -- -- Table structure for table `engines` -- DROP TABLE IF EXISTS `engines`; CREATE TABLE IF NOT EXISTS `engines` ( `EngineID` tinyint(4) unsigned NOT NULL auto_increment, `EngineName` varchar(250) NOT NULL, PRIMARY KEY (`EngineID`), UNIQUE KEY `EngineName` (`EngineName`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='InnoDB free: 1394688 kB' AUTO_INCREMENT=7 ; -- -- Dumping data for table `engines` -- INSERT INTO `engines` (`EngineID`, `EngineName`) VALUES (6, 'Custom - not supported yet'), (1, 'John Cardinal''s Second Site'), (5, 'Personal Ancestral File'), (3, 'PHPGedView'), (4, 'RootsWeb'), (2, 'TNG'); -- -------------------------------------------------------- -- -- Table structure for table `firstnames` -- DROP TABLE IF EXISTS `firstnames`; CREATE TABLE IF NOT EXISTS `firstnames` ( `FirstNameID` mediumint(9) unsigned NOT NULL auto_increment, `FirstName` varchar(250) collate utf8_bin NOT NULL, `FirstNameLC` varchar(250) collate utf8_bin NOT NULL, PRIMARY KEY (`FirstNameID`), UNIQUE KEY `FirstName` (`FirstName`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_bin AUTO_INCREMENT=1 ; -- -- Dumping data for table `firstnames` -- -- -------------------------------------------------------- -- -- Table structure for table `fnfrags` -- DROP TABLE IF EXISTS `fnfrags`; CREATE TABLE IF NOT EXISTS `fnfrags` ( `fragID` mediumint(8) unsigned NOT NULL, `firstnameID` mediumint(8) unsigned NOT NULL, PRIMARY KEY (`fragID`,`firstnameID`), KEY `Index_2` (`firstnameID`,`fragID`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_bin; -- -- Dumping data for table `fnfrags` -- -- -------------------------------------------------------- -- -- Table structure for table `fullnames` -- DROP TABLE IF EXISTS `fullnames`; CREATE TABLE IF NOT EXISTS `fullnames` ( `IndiID` mediumint(9) unsigned NOT NULL, `LastnameID` mediumint(9) unsigned NOT NULL, `FirstnameID` mediumint(9) unsigned NOT NULL, `fStatus` tinyint(4) unsigned NOT NULL default '0', PRIMARY KEY (`IndiID`,`LastnameID`,`FirstnameID`), KEY `FirstnameID` (`FirstnameID`), KEY `LastnameID` (`LastnameID`,`FirstnameID`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_bin; -- -- Dumping data for table `fullnames` -- -- -------------------------------------------------------- -- -- Stand-in structure for view `highfreqnamesbyname` -- CREATE TABLE IF NOT EXISTS `highfreqnamesbyname` ( `LastName` varchar(250) ,`SiteName` varchar(250) ,`iCount` mediumint(9) unsigned ); -- -------------------------------------------------------- -- -- Table structure for table `individuals` -- DROP TABLE IF EXISTS `individuals`; CREATE TABLE IF NOT EXISTS `individuals` ( `IndiID` mediumint(9) unsigned NOT NULL auto_increment, `SiteID` smallint(6) unsigned NOT NULL, `IndiHref` varchar(20) character set utf8 NOT NULL, `iStatus` tinyint(4) unsigned NOT NULL default '0', `bYear` smallint(4) unsigned NOT NULL default '0', `dYear` smallint(4) unsigned NOT NULL default '0', PRIMARY KEY (`IndiID`), UNIQUE KEY `SiteID` (`SiteID`,`IndiHref`), KEY `bYear` (`bYear`,`dYear`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_bin AUTO_INCREMENT=1 ; -- -- Dumping data for table `individuals` -- -- -------------------------------------------------------- -- -- Stand-in structure for view `lastnamecounts` -- CREATE TABLE IF NOT EXISTS `lastnamecounts` ( `lastname` varchar(250) ,`lastnameid` mediumint(9) unsigned ,`iCount` decimal(30,0) ); -- -------------------------------------------------------- -- -- Stand-in structure for view `lastnamecountsbysite` -- CREATE TABLE IF NOT EXISTS `lastnamecountsbysite` ( `LastName` varchar(250) ,`LastNameID` mediumint(9) unsigned ,`SiteID` smallint(6) unsigned ,`iCount` mediumint(9) unsigned ,`nRank` bigint(21) ); -- -------------------------------------------------------- -- -- Table structure for table `lastnames` -- DROP TABLE IF EXISTS `lastnames`; CREATE TABLE IF NOT EXISTS `lastnames` ( `LastNameID` mediumint(9) unsigned NOT NULL auto_increment, `LastName` varchar(250) collate utf8_bin NOT NULL, `LastNameLC` varchar(250) collate utf8_bin NOT NULL, PRIMARY KEY (`LastNameID`), UNIQUE KEY `LastName` (`LastName`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_bin COMMENT='InnoDB free: 1394688 kB' AUTO_INCREMENT=1 ; -- -- Dumping data for table `lastnames` -- -- -------------------------------------------------------- -- -- Stand-in structure for view `lastnames_at_site` -- CREATE TABLE IF NOT EXISTS `lastnames_at_site` ( `siteID` smallint(6) unsigned ,`Lastname` varchar(250) ,`hRef` varchar(20) ); -- -------------------------------------------------------- -- -- Table structure for table `lnfrags` -- DROP TABLE IF EXISTS `lnfrags`; CREATE TABLE IF NOT EXISTS `lnfrags` ( `fragID` mediumint(8) unsigned NOT NULL, `lastnameID` mediumint(8) unsigned NOT NULL, PRIMARY KEY (`fragID`,`lastnameID`), KEY `Index_2` (`lastnameID`,`fragID`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_bin; -- -- Dumping data for table `lnfrags` -- -- -------------------------------------------------------- -- -- Stand-in structure for view `namecountsbysite` -- CREATE TABLE IF NOT EXISTS `namecountsbysite` ( `SiteID` smallint(6) unsigned ,`SiteName` varchar(250) ,`nameCount` bigint(21) ,`indiCount` decimal(30,0) ); -- -------------------------------------------------------- -- -- Table structure for table `new_frags` -- DROP TABLE IF EXISTS `new_frags`; CREATE TABLE IF NOT EXISTS `new_frags` ( `rowID` int(10) unsigned NOT NULL auto_increment, `nameID` mediumint(8) unsigned NOT NULL, `fragVal` varchar(5) character set ascii NOT NULL, `fragID` mediumint(8) unsigned NOT NULL default '0', PRIMARY KEY (`rowID`), KEY `fragVal` (`fragVal`), KEY `fragID` (`fragID`), KEY `nameID` (`nameID`,`fragID`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_bin AUTO_INCREMENT=1 ; -- -- Dumping data for table `new_frags` -- -- -------------------------------------------------------- -- -- Table structure for table `new_individuals_base` -- DROP TABLE IF EXISTS `new_individuals_base`; CREATE TABLE IF NOT EXISTS `new_individuals_base` ( `siteID` smallint(6) unsigned NOT NULL, `LastNameID` mediumint(9) unsigned NOT NULL default '0', `LastName` varchar(250) collate utf8_bin NOT NULL, `LastNameLC` varchar(250) collate utf8_bin NOT NULL, `FirstNameID` mediumint(9) unsigned NOT NULL default '0', `FirstName` varchar(250) collate utf8_bin NOT NULL, `FirstNameLC` varchar(250) collate utf8_bin NOT NULL, `InHref` varchar(20) character set utf8 NOT NULL, `IndiID` mediumint(9) unsigned NOT NULL default '0', `bYear` smallint(4) unsigned NOT NULL, `dYear` smallint(4) unsigned NOT NULL, KEY `IndiID` (`IndiID`,`LastNameID`,`FirstNameID`), KEY `siteID` (`siteID`,`LastName`,`FirstName`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_bin; -- -- Dumping data for table `new_individuals_base` -- -- -------------------------------------------------------- -- -- Table structure for table `new_lastnames_base` -- DROP TABLE IF EXISTS `new_lastnames_base`; CREATE TABLE IF NOT EXISTS `new_lastnames_base` ( `siteID` smallint(6) unsigned NOT NULL, `LastNameID` mediumint(9) unsigned NOT NULL default '0', `LastName` varchar(250) collate utf8_bin NOT NULL, `LastNameLC` varchar(250) collate utf8_bin NOT NULL, `lnHref` varchar(20) character set utf8 NOT NULL, `lnFreq` tinyint(2) unsigned NOT NULL default '1', PRIMARY KEY (`LastName`), KEY `siteID` (`siteID`,`LastNameID`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_bin; -- -- Dumping data for table `new_lastnames_base` -- -- -------------------------------------------------------- -- -- Stand-in structure for view `peer_research` -- CREATE TABLE IF NOT EXISTS `peer_research` ( `LastNameID` mediumint(9) unsigned ,`LastName` varchar(250) ,`SiteID` smallint(6) unsigned ,`iCount` mediumint(9) unsigned ,`scDisp` varbinary(17) ,`nRank` bigint(21) ); -- -------------------------------------------------------- -- -- Stand-in structure for view `same_people` -- CREATE TABLE IF NOT EXISTS `same_people` ( `site` varchar(250) ,`lastname` varchar(250) ,`firstname` varchar(250) ,`hRef` varchar(20) ,`hRef2` varchar(20) ,`bYear` smallint(4) unsigned ,`bDif` int(7) ,`dYear` smallint(4) unsigned ,`dDif` int(7) ,`site2` varchar(250) ); -- -------------------------------------------------------- -- -- Stand-in structure for view `same_people_one_site` -- CREATE TABLE IF NOT EXISTS `same_people_one_site` ( `site` varchar(250) ,`lastname` varchar(250) ,`firstname` varchar(250) ,`hRef` varchar(20) ,`hRef2` varchar(20) ,`bYear` smallint(4) unsigned ,`bDif` int(7) ,`dYear` smallint(4) unsigned ,`dDif` int(7) ,`site2` varchar(250) ); -- -------------------------------------------------------- -- -- Table structure for table `searchfrags` -- DROP TABLE IF EXISTS `searchfrags`; CREATE TABLE IF NOT EXISTS `searchfrags` ( `fragId` mediumint(8) NOT NULL auto_increment, `fragVal` varchar(5) NOT NULL, PRIMARY KEY (`fragId`), UNIQUE KEY `fragVal` (`fragVal`) ) ENGINE=InnoDB DEFAULT CHARSET=ascii AUTO_INCREMENT=1 ; -- -- Dumping data for table `searchfrags` -- -- -------------------------------------------------------- -- -- Table structure for table `sitefirstnames` -- DROP TABLE IF EXISTS `sitefirstnames`; CREATE TABLE IF NOT EXISTS `sitefirstnames` ( `SiteID` smallint(5) unsigned NOT NULL, `FirstNameID` mediumint(8) unsigned NOT NULL, `iCount` mediumint(8) unsigned NOT NULL default '0', `uStatus` tinyint(1) unsigned NOT NULL default '0', PRIMARY KEY (`SiteID`,`FirstNameID`), KEY `FirstNameID` USING BTREE (`FirstNameID`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_bin; -- -- Dumping data for table `sitefirstnames` -- -- -------------------------------------------------------- -- -- Table structure for table `sitelastnames` -- DROP TABLE IF EXISTS `sitelastnames`; CREATE TABLE IF NOT EXISTS `sitelastnames` ( `SiteID` smallint(6) unsigned NOT NULL, `LastNameID` mediumint(9) unsigned NOT NULL, `LastNameHref` varchar(20) NOT NULL, `iCount` mediumint(9) unsigned NOT NULL default '0', `uStatus` tinyint(1) NOT NULL default '0', PRIMARY KEY (`SiteID`,`LastNameID`), KEY `LastNameID` (`LastNameID`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -- Dumping data for table `sitelastnames` -- -- -------------------------------------------------------- -- -- Table structure for table `sites` -- DROP TABLE IF EXISTS `sites`; CREATE TABLE IF NOT EXISTS `sites` ( `SiteID` smallint(6) unsigned NOT NULL auto_increment, `SiteName` varchar(250) NOT NULL, `SiteURL` varchar(250) NOT NULL, `EngineID` tinyint(4) unsigned NOT NULL default '1', `LastRefreshed` date default NULL, `LocalPGV` tinyint(1) NOT NULL default '0', `UpdateInProgress` tinyint(1) NOT NULL default '0', `PageSuffix` varchar(5) default 'htm', `PageDate` date default NULL, `Notes` varchar(255) default NULL, PRIMARY KEY (`SiteID`), UNIQUE KEY `SiteName` (`SiteName`), UNIQUE KEY `SiteURL` (`SiteURL`), KEY `EngineID` (`EngineID`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=994 ; -- -- Dumping data for table `sites` -- INSERT INTO `sites` (`SiteID`, `SiteName`, `SiteURL`, `EngineID`, `LastRefreshed`, `LocalPGV`, `UpdateInProgress`, `PageSuffix`, `PageDate`, `Notes`) VALUES (1, 'Norma Shantz''s Genealogy', 'http://www.ournetwork.net/complete/May-June', 1, '2001-01-31', 0, 0, 'htm', '2008-03-13', NULL), (2, 'Swiss Anabaptist Genealogical Association', 'http://www.omii.org/tng', 2, '2001-01-31', 0, 0, 'htm', NULL, NULL), (3, 'Rachel, Erik, Caleb, & Sarah Arndt''s Ancestors', 'http://wc.rootsweb.com/cgi-bin/igm.cgi?db=darndt', 4, '2001-01-31', 0, 0, 'htm', NULL, NULL), (4, 'Barry Shantz''s (mostly Mennonite) connections', 'http://localhost/phpgedview/index.php?command=gedcom&ged=ancestors.ged', 3, '2001-01-31', 1, 0, 'htm', NULL, NULL), (5, 'Ancestors Compiled by John Buck, Jr.', 'http://freepages.genealogy.rootsweb.ancestry.com/~johnbuckjr', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (6, 'PASK, PASKE One-Name Study Narratives', 'http://www.pask.org.uk/Pask-p', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (7, 'Burness Genealogy and Family History', 'http://www.burness.ca', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (8, 'Maynard Founders', 'http://web.maynard.ma.us/history/founders', 1, '2001-01-31', 0, 0, 'htm', '2008-02-29', NULL), (9, 'NHA Barney Genealogical Record', 'http://12.46.127.86/bgr/BGR-o', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (10, 'Kelly Family of Georgia, Florida and Alabama', 'http://www.burval.net/kelly-p', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (11, 'Descendants of John Hotchkin of Guilford, CT', 'http://hotchkinfamilyhistory.com', 1, '2001-01-31', 0, 0, 'htm', '2008-04-03', NULL), (12, 'Grawrock Parker Genealogy', 'http://dwgslpfamily.com/genpages', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (13, 'A rough draft of my family tree (Q1 2007 Edition)', 'http://www.robweir.com/genealogy/mytree', 1, '2001-01-31', 0, 0, 'htm', NULL, 'UTF-8'), (14, 'Howard Family Genealogy', 'http://www.bh-systems.com/genealogy', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (15, 'TRIBUTARIES Genealogies of the Brooks Families of New England', 'http://www.tributaries.us/secondsite/founders2-o', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (16, 'Krafft Family Relatives and Connections of Dean Blackmar Krafft', 'http://krafftfamily.org/Krafft-p', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (17, 'Whisnant Surname Center', 'http://www.raymondwhisnant.com', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (18, 'An American Family', 'http://www.dumond.org/famtrees', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (19, 'Kenneth Blazek', 'http://www.kenneth-blazek.com', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (20, 'David Murray Marshall Hall''s Ancestors & Descendants', 'http://www.wildwood.org.nz/david', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (21, 'Family Site of Kimberly Lein Peine', 'http://www.lein-lavoie.com', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (22, 'Oelz Genealogy', 'http://www.oelz.org', 1, '2001-01-31', 0, 0, 'html', NULL, NULL), (23, 'MacNutt-Murray Family History of Nova Scotia', 'http://www.jkmacnutt.net', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (24, 'The Musclow Family and related families mostly from Ontario', 'http://www.mindspring.com/~siddons/genealogy/musclow', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (25, 'STEWART CLAN', 'http://members.shaw.ca/gypsy999/Stewart-p', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (26, 'Ryan Genealogy', 'http://theryanweb.com/genealogy/2ndsite/charts', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (27, 'O''Grady McCormick O''Hara McCashin', 'http://www.bctonline.com/~pooka', 1, '2001-01-31', 0, 0, 'htm', '2008-04-13', NULL), (28, 'Ancestors, Cousins, Potential Cousins, etc of Garril Kueber', 'http://kueber.us', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (29, 'Downens.org', 'http://www.downens.org/TMG/SS_Downings-p', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (30, 'SomeRelations A South County Family', 'http://www.5thirdstreet.com/somerelations', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (31, 'Our Family Tree Karl, Churchett, Sprong, Kenefick, Dohoney, Strubel, Rentz, McCullough, Dunford, Bone, et al.', 'http://www.karlfamilyhistory.com', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (32, 'URIDGE, EURIDGE One-Name Study Narratives', 'http://www.uridge.org/Euridge_Uridge-p', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (33, 'Another Mayflower Descendant', 'http://www.citereh.com', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (34, 'Price Family of New Brunswick', 'http://www.pricefamilyofnb.ca', 5, '2001-01-31', 0, 0, 'htm', NULL, NULL), (35, 'Ancestors of Shauna Lynne YELLAND', 'http://www.yelland.ca/Ancest', 5, '2001-01-31', 0, 0, 'htm', NULL, NULL), (36, 'The Biggerstaff Genealogical Society and Family Association Site', 'http://www.biggerstaff.info', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (37, 'Winn Family Tree', 'http://thomas-winn-1767.me.uk/Winn-o', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (38, 'Washburn / Taylor Family Genealogy', 'http://genealogy.etaylors.org', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (39, 'Abercrombie Family Tree', 'http://www.lgabercrombie.com', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (40, 'Thomas Holcombe of Connecticut', 'http://www.holcombegenealogy.com/data', 1, '2001-01-31', 0, 0, 'htm', '2008-04-12', NULL), (41, 'Wills - Taylor Genealogy', 'http://david-crouch.com', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (42, 'My Family Genealogy', 'http://www.jimr.com', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (43, 'The People of Little Shelford', 'http://members.optushome.com.au/robalsmith/people/people-p', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (44, 'Nevins Family of Kingston MA and Canterbury CT', 'http://www.ourwebsite.org/nevins/nevins-p', 1, '2001-01-31', 0, 0, 'shtml', NULL, NULL), (45, 'Stoker Wilson''s Family History Page', 'http://www.stokerwilson.me.uk', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (46, 'Welland Family History', 'http://www.well-and.co.uk/Welland-p', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (47, 'WOODROUGH, BLAKELY, FLOYD, BASS, HOLLAND, PIATT, OGLE, VOLLMER, RICHARDSON, DE VALCOURT, HOLLAND, BRYANT, CALMES, PIATT, HART, ODUM, BASS, BASSE, RUFFNER, RUDD, GALLOPIN,LENDRUM, BUCKNER, HOUGHTON', 'http://margotwoodrough.com', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (48, 'Teets Family & Ancestry', 'http://johnteets.com', 1, '2001-01-31', 0, 0, 'htm', '2008-04-13', NULL), (49, 'Our Genealogies - Family Research Group', 'http://www.familyresearchlibrary.com/genealogy', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (50, 'Brink-Day-Johnston-Fletcher', 'http://www.brinkfamily.net/tree', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (51, 'Ginni Morey''s Family Attic', 'http://freepages.genealogy.rootsweb.ancestry.com/~reinwald', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (52, 'Your Heritage', 'http://freepages.genealogy.rootsweb.ancestry.com/~havens5', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (53, 'Some Descendants of "Revolutionary" John Rickerson', 'http://www.klaidlaw.net/rickerson', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (54, 'Wing Family of America, Inc.', 'http://freepages.genealogy.rootsweb.ancestry.com/~wingfamilyofamerica', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (55, 'Genealogy for the Grandkids', 'http://freepages.genealogy.rootsweb.ancestry.com/~dano/secondsite', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (56, 'Shirer Family Genealogy Project', 'http://freepages.genealogy.rootsweb.ancestry.com/~mysong', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (57, 'Family of Robert Burton Stauffer', 'http://www.mindspring.com/~siddons/genealogy/stauffer', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (58, 'My Family Tree Climbing the branches of my family tree', 'http://freepages.genealogy.rootsweb.ancestry.com/~thorodin/familly-p', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (59, 'EDLER, FISHER, REDSECKER, WALD and Related Families', 'http://www.edlers.org/notes', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (60, 'Jim & Marlene''s Website', 'http://members.shaw.ca/jcosgrave/paf2', 5, '2001-01-31', 0, 0, 'htm', NULL, NULL), (61, 'James Stanfield', 'http://www.rideau-info.com/ken/genealogy/french', 5, '2001-01-31', 0, 0, 'htm', NULL, NULL), (62, 'Descendants of Louis GUERTIN', 'http://www.guertin.com/genealogy/guertin/first9', 5, '2001-01-31', 0, 0, 'htm', NULL, NULL), (63, 'Descendants of Claude MARCY', 'http://www.merceyfamily.ca', 5, '2001-01-31', 0, 0, 'htm', NULL, NULL), (64, 'Descendants of Andreas Andersen Bjerkegjerdingen', 'http://www.bjerke.ca/aabjerkef', 5, '2001-01-31', 0, 0, 'htm', NULL, NULL), (65, 'Welcome to the Grandon Family Webpage', 'http://www.grandons.org', 5, '2001-01-31', 0, 0, 'htm', NULL, NULL), (66, 'Ancestors of the LIDDELL and WARREN Families', 'http://liddell-genealogy.netfirms.com', 5, '2001-01-31', 0, 0, 'htm', NULL, NULL), (67, 'Field, Wagoner, Hoover & Curtis Genealogy', 'http://fieldgenealogy.com', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (68, 'The Yelton Family Descendants of James Yelton & Isabel Hinson', 'http://homepages.rootsweb.ancestry.com/~yelton', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (69, 'Hankinson-Martiny Genealogy', 'http://genealogy.dnhankinson.com', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (70, 'The Oliver - Fletcher Family', 'http://genealogy.oliver4.com', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (71, 'Caauwe Family Genealogy', 'http://www.caauwe.net/Second%20Site%202/Caauwe-o', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (72, 'Descendants of John O''Rea', 'http://www.tmgtips.com/OrearWeb', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (73, 'The Family of Robert Alan & Susan Bennett', 'http://cheshirealan.infinology.net/My%20Family', 1, '2001-01-31', 0, 0, 'htm', '2008-04-15', NULL), (74, 'Ancestral Lines of Jared Handspicker', 'http://www.jedh.com/src/genealogy/Full07a-p', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (75, 'Family History for Alice L Benson - Sleutel', 'http://home.earthlink.net/~6alicebenson', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (76, 'Burval Family of Moravia and Ohio', 'http://www.burval.net/burvaloh-p', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (77, 'Newcombe and Knill Genealogies', 'http://www.newcombe.info/Second%20Site%20Newcombe%20Genealogy/Newcombe%2014%20Feb%202005-p', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (78, 'O''Rorke - Dunbar - Killigrew', 'http://ororke.id.au/genealogy/fam_tree', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (79, 'GenAttic', 'http://www.genattic.com', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (80, 'Family History of Roger Williams', 'http://www.angelfire.com/super/r_williams', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (81, 'RamblingRoots.com Pioneer Families of WASHINGTON CO., VIRGINIA', 'http://www.ramblingroots.com/RYB-p', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (82, 'a JACKSON, BULL, TIPPER & HOLLOWAY Genealogy', 'http://www.clanjackson.co.uk/genealogy', 1, '2001-01-31', 0, 2, 'htm', NULL, NULL), (83, 'The Family History of the Calzaretta, Krieger, Michaels and Rafael Families', 'http://www.calzareth.com/tree', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (84, 'THOMAS MCCLURE RICE and ELIZABETH WILSON RICE', 'http://home.swbell.net/txanita/Genealogy', 1, '2001-01-31', 0, 2, 'htm', NULL, NULL), (85, 'Some Descendants of Rev. John Tindall of Devonshire, England', 'http://www.tindalltree.com', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (86, 'Dakan Family', 'http://dakan.palladiun.org', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (87, 'Stonehouse and Related Families', 'http://www.stonehouse.ca/tree', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (88, 'Our Family Heartland Genealogy', 'http://heartlandgenealogy.org/tmgw/heartland-p', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (89, 'Bagwells.com', 'http://www.bagwells.com/genealogy/genproject/genproject-p', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (90, 'My Turpin Family', 'http://www.nigel-brown.pwp.blueyonder.co.uk', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (91, 'Carrillo Family of Sonoma County California', 'http://www.carrillo.info/genealogy/online2-p', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (92, 'Ken Jordan''s Family History Database', 'http://www.kljordan.org/SecSite', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (93, 'Braddon Family History Database', 'http://www.braddongendata.org.uk/braddons-p', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (94, 'Jenny''s Family and Lineage', 'http://www.rasmussonwebworks.com/genealogy/Rasmusson-p', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (95, 'Savage Family', 'http://personal.ayrix.net/~savage1', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (96, 'BILLINGS Family Finding Aid Version 1.1', 'http://www.ogsottawa.on.ca/billings', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (97, 'The Shine and Sheehy family of Co Limerick and the Burke and Coffey family of Co Clare', 'http://home.alphalink.com.au/~datatree/Burke/Burke-p', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (98, 'Bonnie Ruefenacht', 'http://www.bonnieruefenacht.com/secondsite/web-p', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (99, 'Cornwall BASSETT, BASSET One-Name Study', 'http://members.optusnet.com.au/~keithgbassett', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (100, 'Ogilvie Godfrey Family Website', 'http://ogilviefamilytree.com', 1, '2001-01-31', 0, 0, 'htm', '2008-04-12', NULL), (101, 'Rice Cousins who emigrated to Nova Scotia', 'http://george-king.com/Planter', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (102, 'Vivien Tomlinson''s Family History', 'http://www.vivientomlinson.com/batley', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (103, 'Kymm Coveney''s Ancestry', 'http://members.fortunecity.com/dickcoveney', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (104, 'NEEL Family History', 'http://www.neelfamilyhistory.com', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (105, 'a Scobie/Rathmann family tree', 'http://scobie.org', 1, '2001-01-31', 0, 0, 'htm', '2008-02-04', NULL), (106, 'UK Ballard Pedigrees', 'http://www.paul-ballard.com/pedigrees', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (107, 'PILLANS WORLD', 'http://pillansworld.homestead.com/files', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (108, 'An O''Farrell Family History', 'http://www.ofarrellfamily.com/ssite', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (109, 'Page Lowrey Forrester Van Petten Famlies', 'http://www.ralphpage.com/PageV2-o', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (110, 'Smith / Race Genealogy Research', 'http://www.wadesmith.org/genealogy', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (111, 'Descendants of James Craig of Delaware', 'http://www.craigfam.info/Craig/James', 1, '2001-01-31', 0, 0, 'htm', '1969-12-31', NULL), (112, 'Layt / Johnston Genealogy', 'http://www.layt.net/genes/ss', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (113, 'Caseys of Carbondale', 'http://caseyhistory.com', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (114, 'John Walsh Relations', 'http://www.irishwalsh.com/WalshTMG-p', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (115, 'Robert Locke Family Tree', 'http://ralii.com/Genealogy', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (116, 'Gregory Parker', 'http://www.nhn.ou.edu/~parker/Genealogy/Ancestors/FamilyGroups/PF02/FG02-p', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (117, 'The Descendants of William Shankland', 'http://www.shankland.name/4shankname-p', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (118, 'New Jersey Family Research Sutton and Extended Families', 'http://njsuttonfamily.org/Sutton', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (119, 'Sharing Family History Information', 'http://uqconnect.net/gunner/my_family_140104-p', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (120, 'The Tardieus of Trinidad', 'http://members.shaw.ca/lindaalleyne/Tardieu-p', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (121, 'Kathy''s Family Tree', 'http://homepage.mac.com/kmacardoza/Genealogy/Kathy', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (122, 'Lumbard Genealogy and More', 'http://www.lumbardgenealogy.com/gendata', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (123, 'The Descendants of John Tinker of Yorkshire and their Extended Families', 'http://uk.geocities.com/line0a@btinternet.com', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (124, 'Robert Venter''s Family Genealogy', 'http://www.venter.org/soke1/ss_vent_comp_1', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (125, 'Tilley Pearsall Genealogy', 'http://www.stonecropstudio.com/genealogy', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (126, 'Martin and Caroline Davis''s families', 'http://www.freerangephotography.co.uk/MMDgenealogy-p', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (127, 'Smerczynski, Bozek and Associated Families', 'http://www.jimsmerczynski.com/smuzsiteA-p', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (128, 'Bloom & Related Families', 'http://www.genealogymort.net/bloom', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (129, 'My Wood Family', 'http://mywoodfamily.us/genealogy/SS', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (130, 'Alvy''s Database', 'http://alvyray.com/Family/dag/all_v2-o', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (131, 'Tenney Puncochar Web Pages', 'http://www.users.ties.k12.mn.us/~tenneyl/Moe_Web-p', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (132, 'Miles Files 4.0', 'http://www.ghotes.net/miles_files', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (133, 'Our Ancestral Roots', 'http://www.ourancestralroots.com/ss/myfamilysite-p', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (134, 'Gill Family', 'http://www.goodey.me.uk/gill', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (135, 'The Mank Family', 'http://www.adamgaus.com/MANK', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (136, 'Chris Coveney''s Ancestors', 'http://www.dickcoveney.us/Chris''%20Ancestry/Chris''%20Ancestry-p', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (137, 'The Craves Family Site', 'http://craves.net/html/tree', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (138, 'Kellerman/Dana Genealogy', 'http://www.kellermangenealogy.com', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (139, 'The Eamigh-Rainville Web Site', 'http://www.eamigh.com', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (140, 'Ken Harper''s Family', 'http://www.kenharper.ca/harper-p', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (141, 'Mark''s Family', 'http://www.rasco.info/Family%20Tree-p', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (142, 'Debbie Shields'' Genealogy Pages', 'http://debbieshields.com/genealogy', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (143, 'My Family Tree Vickers, Pearts and other allied families.', 'http://altair.us', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (144, 'The Ancestors of Timothy D. Cook', 'http://www.rangeweb.net/~hmscook/ances/ances-p', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (145, 'Ancestry of Robert Roy and Family', 'http://www.genealogy.theroyfamily.com', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (146, 'Ancestors of David Kipp Conover', 'http://www.conovergenealogy.com/ancestor-p', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (147, 'Those Who Went Before Arnspiger, Archer and Wise Families', 'http://arnspiger.org', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (148, 'Sansom Genealogy', 'http://www.sansomgenealogy.net', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (149, 'Hatfield Family Origins', 'http://www.gilmurraytimes.com/Hatfield/Hatfield_Geneology/Hatfield-p', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (150, 'JG Weston', 'http://belshaw.cmweston.me.uk/Belshaw-o', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (151, 'Ilniski to Baker', 'http://www.cwbjib.com/family', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (152, 'England Ancestors', 'http://www.ourfamilyresearch.com/familytree/England-p', 1, '2001-01-31', 0, 2, 'htm', NULL, NULL), (153, 'Anetsprungenheim', 'http://users.homeworkswildblue.com/anetsprungentmg', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (154, 'The Family Speaks Out!', 'http://www.tutman.net/family/tmgss/Family-p', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (155, 'Rhinehart & Bassett Family Tree', 'http://bassett.net/secondsite/kathryn-p', 1, '2001-01-31', 0, 0, 'shtml', NULL, NULL), (156, 'TreesByDan', 'http://www.treesbydan.com', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (157, 'Family Tree Pages - Doug Gordon''s Family History', 'http://www.wdgordon.com/history/gedcom', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (158, 'Decendants of Needham Bryan', 'http://www.oehmann.net/Bryan_N/Bryan_N-o', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (159, 'AndorferRoots.com', 'http://andorferroots.com/roots/andorferroots-p', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (160, 'My Roots and Vines: Genealogy of Kruse and Koob Families', 'http://myrootsandvines.net', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (161, 'Stein J Rypern', 'http://home.online.no/~steinjr/genealogy/kron', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (162, 'www.jlesser.com', 'http://www.jlesser.com/lesser-p', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (163, 'A Van Ness Family History', 'http://waltervanness.com/Riker%20Manuscript-p', 1, '2001-01-31', 0, 0, 'htm', '2007-10-15', NULL), (164, 'Ancestors of Edwin Bernhard Finseth', 'http://sanchito.com', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (165, 'Ancestors of the Marshall and Walsh Families of Burin and Placentia, Newfoundland', 'http://www.pbalkcom.com/Second%20Site/Marshall2-o', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (166, 'Decendants of John H. Hughes', 'http://www.oehmann.net/Hughes_J_H/Hughes_J_H-o', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (167, 'Morts from Frederick/Carroll Co, Md & Related Families', 'http://www.genealogymort.net/Mort', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (168, 'Geneocity', 'http://www.geneocity.com/sarah2-o', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (169, 'The Genealogy of Michael E. and Julie L. Moore', 'http://www.federalassembly.com/mike', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (170, 'Ancestors of Paul Abner Emanuel', 'http://www.bartemanuel.com/emanuel2-o', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (171, 'Lane R. Ellis - Genealogy Database', 'http://www.activeancestry.com/minnesotagenealogist/lellis/genealogy', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (172, 'Banks/Dean Genealogy', 'http://www.gordonbanks.com/gordon/family/2nd_Site/geb-p', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (173, 'My Ancestors & Related Families', 'http://www.paulfeatherstone.info/paulsnew-o', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (174, 'A Sewell from Sheerness - Raymond', 'http://a-sewell-from-sheerness.com/Ray%20ss2-o', 1, '2001-01-31', 0, 2, 'htm', NULL, 'no response on Apr 15'), (175, 'Christine Sutherland''s Family Tree', 'http://a-sewell-from-sheerness.com/chriss%20ss2-o', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (176, 'Nathan Hadsell''s Line', 'http://www.jagtrembley.com/familytreepublic/SS/Nathan%20Hadsell-p', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (177, 'Waggoner-Ramsey', 'http://www.greybeard.org/TMG', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (178, 'Michel and Hendrickson Families', 'http://www.mindspring.com/~siddons/genealogy/mom', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (179, 'Our Bankert Ancestors', 'http://www.bankert.org/genreport', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (180, 'Laurie J. Kenville''s Genealogy Web Page', 'http://members.aol.com/lauriejken', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (181, 'Our Family History - Alwons, Assetlys, Azars, Gorabs, Oujiles, Katens and Zrakes', 'http://bellsouthpwp.net/a/l/alwon7457/alwon-p', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (182, 'The Liquorish Family', 'http://www.lickorish.org.uk/liquorish', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (183, 'Robert D. Wright Genealogy Data', 'http://www.ldrgen.org/rdw', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (184, 'Hooker Family Tree', 'http://ourwebsite.org/hooker/hooker-p', 1, '2001-01-31', 0, 0, 'shtml', NULL, NULL), (185, 'Smith - Tilton Genealogy', 'http://www.mindfreedom.net/gen/t-s-p', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (186, 'Anthony W. Cox Genealogy', 'http://tonycoxhome.com/cox2005-p', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (187, 'The Carter Lineage', 'http://www.hughcarter.com/HMC-o', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (188, 'Digout / O''Brien Family Tree', 'http://www.familytreeweb.org/digout/digout-o', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (189, 'Our Family - Bob and Elsa Pendleton', 'http://bobandelsa.com/ss28aug06-p', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (190, 'Members Research', 'http://www.featherstone-society.com/members/birthbriefs-p', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (191, 'Generations Past', 'http://www.jamesmilne-generations.dsl.pipex.com', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (192, 'Robyn''s Relative Research', 'http://www.robalsmith.id.au/dbase', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (193, 'Duncan Campbell''s Family Tree', 'http://afinitas.org/ztree/campbell-p', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (194, 'Bob Copeland''s Family History Database', 'http://www.btinternet.com/~robert_copeland/all-o', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (195, 'Lineage Database for the BIDDLE Y-DNA Surname Project', 'http://dgmweb.net/genealogy/DNA/Biddle/BIDDLE-o', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (196, 'Ancestors and Family of Richard and Sandra Cornish', 'http://home.comcast.net/~rich4839', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (197, 'Haine-Hays ', 'http://home.midsouth.rr.com/hainews', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (198, 'Lesher of Rye and Colorado', 'http://lesher.net/genealogy/lesher%20of%20Colorado-p', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (199, 'Schreiner-Krupp Family Genealogy Project Web Site', 'http://www.theyosts.net/genealogy/Schreiner', 1, '2001-01-31', 0, 0, 'htm', '2008-04-10', NULL), (200, 'Hunt - Beeston Family Tree', 'http://www.philiphunt.com/Hunt%20Tree-o', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (201, 'Generations - Genealogy of the Corcoran Quinn Rowan and Haley Families', 'http://members.cox.net/irish.roots', 1, '2001-01-31', 0, 2, 'htm', NULL, NULL), (202, 'McIntyre of Blackavon', 'http://makowiec.org/mcintyre', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (203, 'Descendants of Edmund Rice', 'http://www.edmund-rice.org/era5gens', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (204, 'Family History Data for Margaret Macculloch & David Hall', 'http://freepages.genealogy.rootsweb.ancestry.com/~macculloch', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (205, 'Descendants of James Graham and Rosanna MacLaughlin', 'http://george-king.com/Graham', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (206, 'Antigonish Priests', 'http://www.rootsweb.ancestry.com/~nsantigo/priests', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (207, 'Erwin Family History', 'http://erwinfamilyhistory.com', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (208, 'Ancestors and Cousins', 'http://www.members.westnet.com.au/banbury/myfamily/MyFamilySS2Eng-o', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (209, 'Doreen''s Toye Family', 'http://www.fehrgenealogy.com/trees/toye', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (210, 'The Home Page of John Southard Hogg', 'http://www.johnhogg.us', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (211, 'SaraBrooks.com', 'http://sarabrooks.com', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (212, 'MORRISON FAMILY CONNECTIONS', 'http://www.morrisonfamilyconnections.net/genealogy', 1, '2001-01-31', 0, 2, 'htm', NULL, NULL), (213, 'My Lines', 'http://homepages.rootsweb.ancestry.com/~cousin/html', 1, '2001-01-31', 0, 0, 'htm', '1969-12-31', NULL), (214, 'Langstaff:Longhurst:Krienke:Neely Family Tree', 'http://www.langstaff.net/Family_Tree', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (215, 'Dowler and Yates Family History', 'http://www.russellajj.co.uk/dowlerweb-o', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (216, 'Sethne Family', 'http://www.shankland.name/Sethne-p', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (217, '"By Our Hand"', 'http://www.tankardsaweigh.com/Our_Hand', 1, '2001-01-31', 0, 0, 'htm', '2004-09-27', NULL), (218, 'thePeerage.com', 'http://www.thepeerage.com', 1, '2001-01-31', 0, 2, 'htm', NULL, NULL), (219, 'Teach Your Children Well', 'http://genejunky.com/Teach_Your_Children_Well', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (220, 'Descendants of Henry Dooley', 'http://www.fridley.net/dooley-p', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (221, 'Fred''s TMG Database', 'http://www2.genealogy.net/privat/rump', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (222, 'Carl Surnames', 'http://lolathompson.net/Carl%202nd%20Site', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (223, 'Lola''s Family', 'http://lolathompson.net/Lola%202nd%20Site/My%20Family-p/Lola%20surname_index.htm', 1, '2001-01-31', 0, 2, 'htm', NULL, NULL), (224, 'Cootes Family Free', 'http://cootes.name', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (225, 'Descendants of Remie Longeway', 'http://www.woodwaugh.com/longeway', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (226, 'Esther''s Genealogy Site', 'http://www3.telus.net/public/byrt/Esther''s%20Web%20Site-o', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (227, 'Ancestors of Mary Kathryn Middleton', 'http://www.planetkc.com/jmcpa/secsite', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (228, 'Larremore * Austin * Wapniarski', 'http://larremores.com/Family%20Trees/NewFamilyGroup', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (229, 'Crabbe Family Pages', 'http://crabbe.accessgenealogy.com/2004Trees/2004SecondSite/CFHS-p', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (230, 'Crider Family', 'http://www.criderfamily.net/SS_crider-o', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (231, 'Ancestors and Family Connections of Ed Zwieback', 'http://ezwieback.com/ZPK-p', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (232, 'The Royal Descent of Meriwether Lewis ', 'http://www.gordonbanks.com/gordon/family/2nd_Site/l&c-p', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (233, 'The Medieval Connection', 'http://www.hughcarter.com/Julian-o', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (234, 'Lummis Branches & Twigs', 'http://www.btinternet.com/~lummis/second_site', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (235, 'Coyne-Strasser Connections', 'http://home.nycap.rr.com/tcstrasser', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (236, 'Cason, Smith and Related Familiies', 'http://www.geocities.com/Heartland/Ridge/5546/SSite', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (237, 'Descendants of Loyd Upton', 'http://www.fridley.net/upton-p', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (238, 'Fehr''s Famous Family', 'http://www.fehrgenealogy.com/trees/fehr', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (239, 'HOWARD MITCHELL FAMILY GENEALOGY', 'http://home.comcast.net/~h.mitchell/SecondSite2HM-o', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (240, 'Jennifer Smith''s Genealogy Site', 'http://homepages.rootsweb.ancestry.com/~truax/smith-p', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (241, 'Alan & Margery Cordner''s Family', 'http://www.cordner.info/dottycom', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (242, 'Melting Pot Manor', 'http://www.geocities.com/ancestor411/genealogy/2006_August_19-p', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (243, 'Hamley, Newberry and Wendle Families', 'http://freepages.history.rootsweb.ancestry.com/~mirabella', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (244, 'The Wheeler and McDermott Families', 'http://freepages.family.rootsweb.ancestry.com/~mirabella', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (245, 'Slektstavle for Petter Langeland', 'http://home.c2i.net/jplange', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (246, 'Cheyne Family History', 'http://www.rootsweb.ancestry.com/~cheyne/200705-p', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (247, 'Willy''s Genealogy site', 'http://home.online.no/~willy-f/ssite/slekt-p', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (248, 'van de Langerijt - Genealogy', 'http://www.vandelangerijt.us/Genealogy', 1, '2001-01-31', 0, 2, 'htm', NULL, NULL), (249, 'Genealogy Of Cornelis Piers Commissaris', 'http://users.pandora.be/entracte/CommissarisEng-p', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (250, 'Jim Ward’s Family Connections', 'http://members.shaw.ca/hal2001', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (251, 'Houghton/Haughton Project', 'http://freepages.genealogy.rootsweb.ancestry.com/~houghtonfamily', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (252, 'Scott Family of Georgia and Florida.', 'http://www.burval.net/scott-p', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (253, 'Eaton-Thomas-Morse Public Pages', 'http://www.cordes.ca/genealogy/thomas/EatonThomasMorse07_Public', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (254, 'Burval Family of Bohemia and Illinois', 'http://www.burval.net/burvalil-p', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (255, 'Some Ancestors of Stanley and Mary Rickerson Laidlaw', 'http://www.klaidlaw.net/laidlaw', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (256, 'Ancestors of Robert T. Howey and Carole Mrak', 'http://freepages.genealogy.rootsweb.ancestry.com/~howeypages', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (257, 'Hubert Family of Cleveland Ohio', 'http://www.burval.net/hubert-p', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (258, 'Bullard Family of New York, Ohio and Michigan', 'http://www.burval.net/bullard-p', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (259, 'Caulk Family of South Carolina and Florida', 'http://www.burval.net/caulk-p', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (260, 'ON WHOSE SHOULDERS WE STAND - BOB & IRENE TOMONTO', 'http://freepages.genealogy.rootsweb.ancestry.com/~daysgoneby', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (261, 'Hadden Family of Florida.', 'http://www.burval.net/hadden-p', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (262, 'Parker Family of Florida', 'http://www.burval.net/parker-p', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (263, 'Descendants of George Kieffer and Ancestors of Craig Kieffer', 'http://freepages.genealogy.rootsweb.ancestry.com/~kieffer', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (264, 'Jamison Family of North Carolina to Missouri, Wisconsin, Montana and beyond!', 'http://freepages.genealogy.rootsweb.ancestry.com/~elsinger/jamison', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (265, 'Randy W. Whited Genealogy', 'http://freepages.genealogy.rootsweb.ancestry.com/~rwhited', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (266, 'Descendants of George Elsinger', 'http://freepages.genealogy.rootsweb.ancestry.com/~elsinger', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (267, 'Doris''s Genealogy', 'http://freepages.genealogy.rootsweb.ancestry.com/~dorisw', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (268, 'THE FAMILIES OF JOE AND JERRY GRANT', 'http://freepages.genealogy.rootsweb.ancestry.com/~joeandjerry/GEN', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (269, 'Donaldson Family of Alabama', 'http://www.burval.net/donaldsn-p', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (270, 'Brannen Family of Georgia and Florida', 'http://www.burval.net/brannan-p', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (271, 'Tompkins Family of Washington County Georgia', 'http://www.burval.net/tompkins-p', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (272, 'Boatright Family of Florida', 'http://www.burval.net/boatrigh-p', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (273, 'Halter Family of Ohio and Poland', 'http://www.burval.net/halter-p', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (274, 'Sullivan Family of Georgia and Florida', 'http://www.burval.net/sullivan-p', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (275, 'Sapp Family of Florida', 'http://www.burval.net/sapp-p', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (276, 'Dawn''s Genealogy Page', 'http://freepages.genealogy.rootsweb.ancestry.com/~dawnellis', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (277, 'Williams - Sherwood Family History', 'http://freepages.genealogy.rootsweb.ancestry.com/~swilliams', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (278, 'Cole and Stocker Families', 'http://freepages.genealogy.rootsweb.ancestry.com/~decole', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (279, 'Smithwick Family of North Carolina', 'http://www.burval.net/smithwic-p', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (280, 'Nancy Ranck''s Genealogy Web Pages - Colt', 'http://freepages.genealogy.rootsweb.ancestry.com/~nranck/colt-p', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (281, 'Ancestors and Family of Pam Wood Waugh & Randy Waugh', 'http://freepages.genealogy.rootsweb.ancestry.com/~waughp/mine', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (282, 'Descendants of William Nutt, Sr', 'http://freepages.genealogy.rootsweb.ancestry.com/~rayholt/NuttFamily', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (283, 'Win Wood''s Genealogy Page', 'http://freepages.genealogy.rootsweb.ancestry.com/~winwood/SS', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (284, 'Root''d in TEXAS - The Ancestors of Dannye Lee Schmitt Wilson', 'http://freepages.genealogy.rootsweb.ancestry.com/~rfwilson/dannye-p', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (285, 'Berg & Frank Family', 'http://freepages.genealogy.rootsweb.ancestry.com/~blberg', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (286, 'Descendants of Oswald Zoz (1683-1749), Oberöwisheim, Germany', 'http://freepages.genealogy.rootsweb.ancestry.com/~rzoz/zozoswald', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (287, 'Glenn''s Genealogy', 'http://freepages.genealogy.rootsweb.ancestry.com/~glennsgenealogy', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (288, 'Loghry, Thornton, Roush/Rouse, See, Johnson, Jorgenson, Nielsen/Nelson, and Affiliated Families', 'http://freepages.genealogy.rootsweb.ancestry.com/~debjrgnsn', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (289, 'The Whitfords of Eastern North Carolina', 'http://freepages.genealogy.rootsweb.ancestry.com/~vjones/whitford-p', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (290, 'Connect to... Our Family History', 'http://freepages.genealogy.rootsweb.ancestry.com/~piercy', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (291, 'Ancestry of Deborah Lukens Whittaker', 'http://freepages.genealogy.rootsweb.ancestry.com/~lukens/dwhittaker/dsl1-p', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (292, 'Genealogy Tales', 'http://freepages.genealogy.rootsweb.ancestry.com/~michelechavez/second/michele-p', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (293, 'Our Family - Heartland Genealogy', 'http://freepages.genealogy.rootsweb.ancestry.com/~mcphilbrick/tmgw/heartland-p', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (294, 'Ray''s Reddish Connections', 'http://freepages.genealogy.rootsweb.ancestry.com/~rayholt/ReddishFamily', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (295, 'The Tolers of Eastern North Carolina', 'http://freepages.genealogy.rootsweb.ancestry.com/~vjones/tolerwww-p', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (296, 'Worcester Worster Descendants from Maine', 'http://freepages.genealogy.rootsweb.ancestry.com/~worstergene', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (297, 'Ray''s Mims Connections', 'http://freepages.genealogy.rootsweb.ancestry.com/~rayholt/MimsFamily', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (298, 'Genealogy of the Hardiman-Pike Families', 'http://freepages.genealogy.rootsweb.ancestry.com/~panthercreek', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (299, 'Greg Lamberson''s Genealogy Website', 'http://freepages.genealogy.rootsweb.ancestry.com/~glamberson/Main-site-p', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (300, 'The Genealogy of the Millslagle Family', 'http://freepages.genealogy.rootsweb.ancestry.com/~clmillslagle/millslagle-p', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (301, 'Rich Moberly Test Web Site', 'http://freepages.genealogy.rootsweb.ancestry.com/~rmoberly', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (302, 'Ken Harper', 'http://freepages.genealogy.rootsweb.ancestry.com/~harper/harper-p', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (303, 'Unger Family', 'http://freepages.genealogy.rootsweb.ancestry.com/~unger', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (304, 'Tiyospaye', 'http://freepages.genealogy.rootsweb.ancestry.com/~mikestevens/tiyo2-p', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (305, 'Cochran and Shroyer Families', 'http://freepages.genealogy.rootsweb.ancestry.com/~cochshro', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (306, 'Henry of Hingham', 'http://www.chamberlain-society.org/Henry-p', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (307, 'Jamison''s of South Carolina and District of Columbia', 'http://bellsouthpwp.net/j/a/jamison_clan', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (308, 'Janis Walker Gilmore', 'http://www.howellcountymo.com/files/second_site_fourth_try-p', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (309, 'Forefather of Cecil E. Hartman and Joanna M. Barber', 'http://mogenclark.com/hartbarb', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (310, 'Russell and Wadey Family History', 'http://www.russellajj.co.uk/russellweb-o', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (311, 'Descendants of Josiah T. Broughton', 'http://www.oehmann.net/Broughton_J_T/Broughton_J_T-o', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (312, 'Easter Family Genealogy', 'http://www.easterfamily.net', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (313, 'David J. Woodward''s Descendants', 'http://davidgwoodward.com', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (314, 'The Vella Family of the Bay Area California', 'http://freepages.genealogy.rootsweb.ancestry.com/~vellafamily', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (315, 'Wiley Famiy of Virginia and Georgia', 'http://www.burval.net/wiley-p', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (316, 'Hardie Family of North Carolina and Georgia', 'http://www.burval.net/hardie-p', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (317, 'Townsend Family of South Carolina, Florida and Kentucky', 'http://www.burval.net/townsend-p', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (318, 'Ray''s Roberts Connections', 'http://freepages.genealogy.rootsweb.ancestry.com/~rayholt/RobertsFamily', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (319, 'Ray''s Harman Ancestors and Descendants', 'http://freepages.genealogy.rootsweb.ancestry.com/~rayholt/HarmanFamily', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (320, 'Elizabeth Jones Holt''s Family', 'http://freepages.genealogy.rootsweb.ancestry.com/~rayholt/Elizabeth''s%20Family', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (321, 'Ray''s Martin Connections', 'http://freepages.genealogy.rootsweb.ancestry.com/~rayholt/MartinFamily', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (322, 'Rushby Genealogy', 'http://freepages.genealogy.rootsweb.ancestry.com/~rushby', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (323, 'Ancestors/Connections of Karla Huebner', 'http://freepages.genealogy.rootsweb.ancestry.com/~huebnerlamb/rootsweb-p', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (324, 'Family Tree of Kara Noble', 'http://freepages.genealogy.rootsweb.ancestry.com/~knoble', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (325, 'Searching The Past', 'http://freepages.genealogy.rootsweb.ancestry.com/~fenstemaker', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (326, 'The Hyatt & Smith Families', 'http://freepages.genealogy.rootsweb.ancestry.com/~hyattsmith', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (327, 'andy coates genealogy', 'http://freepages.genealogy.rootsweb.ancestry.com/~andycoates/second/second-p', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (328, 'Hart, Rushing, Edwards, and Granberry', 'http://freepages.genealogy.rootsweb.ancestry.com/~vhart/Second%20Site3-p', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (329, 'Ray and Elizabeth''s Genealogy', 'http://freepages.genealogy.rootsweb.ancestry.com/~rayholt/HoltCrow%20Dataset', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (330, 'The O''Hara-Walsh-Greene-Glidden Family', 'http://freepages.genealogy.rootsweb.ancestry.com/~raohara/SecondSite/TMG-All-p', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (331, 'Jane''s Genealogy Pages - All lines (old)', 'http://freepages.genealogy.rootsweb.ancestry.com/~janej/Jane/All-p', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (332, 'Ancestors and Descendants of Catherine Pierce Holt', 'http://freepages.genealogy.rootsweb.ancestry.com/~rayholt/PierceFamily', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (333, 'Carolina Cousins', 'http://freepages.genealogy.rootsweb.ancestry.com/~mvb63/Baker-p', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (334, 'Hobe/Zoz Family Genealogy and related lines.', 'http://freepages.genealogy.rootsweb.ancestry.com/~rzoz/ged', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (335, 'Ancestors of Harold Stephenson and Eva Lentz', 'http://freepages.genealogy.rootsweb.ancestry.com/~jlucke/Marcia', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (336, 'Ray''s Hall Connections', 'http://freepages.genealogy.rootsweb.ancestry.com/~rayholt/HallFamily', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (337, 'Shar''s Genealogy Site', 'http://www.greycatsoftware.com/sharon/genealogy', 6, '2001-01-31', 0, 0, 'htm', NULL, NULL), (338, 'Descendants of Wolphert Gerretse Van Kouwenhoven', 'http://freepages.genealogy.rootsweb.ancestry.com/~conover/conover-p', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (339, 'The Family of Clouston', 'http://www.clouston.co.uk', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (340, 'The Benner, Cleaveland and Related Families', 'http://www.rgcle.com/SS2', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (341, 'Stanton and Bonner Families', 'http://www.genealogysf.com/Stanton-p', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (342, 'Roster and Genealogies of the 15th Massachusetts Volunteer Infantry', 'http://www.nextech.de/ma15mvi/ma15mvi-p', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (343, 'Muddock Family History (www.muddock.com)', 'http://www.muddock.com/Muddock-p', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (344, 'Jack Hardesty Genealogy', 'http://members.aol.com/hardeja/trees/Hardesty-p', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (345, 'Chris Kefel', 'http://www.kefel.be/Kefel-UK-p', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (346, 'Our Bale / Lamm / Prescott Roots', 'http://mybalefamily.com/FamilyTree/Prescott-p', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (347, 'Kastello Genealogy', 'http://www.kintracker.net/Kastello-p', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (348, 'A passage through time...', 'http://fearncombe-hyde.rootsweb.com/FamilyRelations-p', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (349, 'Sisler/Locy/Davis/Bloomberg Genealogy', 'http://www.dianesisler.com/sisler-p', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (350, 'Four Potters of Alberta', 'http://www.thepotters.ca/Genealogy/Potter-p', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (351, 'DE FAMILIE ARNAUTS', 'http://users.skynet.be/walans/JULARN-p', 1, '2001-01-31', 0, 2, 'htm', NULL, NULL), (352, 'Cilley', 'http://cilley.net/thecilleypages/cilley-es-p', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (353, 'Heges slektstre', 'http://www.ruffen.no/ged_hege/Ny%20base-p', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (354, 'Genealogische gegevens van de familie Derudder - Beddeleem', 'http://users.pandora.be/janderudder/DERBED-p', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (355, 'Greci Cousins', 'http://grecicousins.com/GreciCouninsSecondSite-P', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (356, 'John Mazzarella', 'http://grecicousins.com/montecalvogrecissecondsite-p', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (357, 'Familienforschung - Stammbaum Chronik der Familien Fischer, Vogel, Schubert, Oertel, Kowiel, Prystawko ....', 'http://www.all-fischer.de/all-fischer-p', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (358, 'Genealogische Daten der Familien Brixel, Bechtold, Boangiu und vielen anderen', 'http://www.boangiu.de/brixels/Brixels-p', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (359, 'Ten Bruggencate''s Worldwide', 'http://freepages.genealogy.rootsweb.ancestry.com/~bruggencate/bruggencate/brugg-e-p', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (360, 'Almelo Family Reconstructions', 'http://freepages.genealogy.rootsweb.ancestry.com/~bruggencate/almelo/almelo-e-p', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (361, 'The Baker Family', 'http://www.goodey.me.uk/baker', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (362, 'Thomas Nevins of Nova Scotia', 'http://ourwebsite.org/nevins/thomas/thomas-p', 1, '2001-01-31', 0, 0, 'shtml', NULL, NULL), (363, 'The Blonvals of Venezuela and Trinidad', 'http://members.shaw.ca/d.alleyne/Blonval-p', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (364, 'Carole''s Family', 'http://www.caroleriley.id.au/familyTree', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (365, 'Delvee Family Association', 'http://www.delvee.org', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (366, 'Five Families - The Ancestors of Bertrand Fox, Mary Ziegler, Patricia Noyes, LaMar Gulbransen and Mary Ann Green', 'http://www.gulbangi.com/5families-o', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (367, 'Ancestors and Family of Steven Harn Redman', 'http://steveredman.com', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (368, 'Johnson-Tait Family Genealogy', 'http://www.kin-seeker.com', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (369, 'The Descendants of Thomas and Hannah (Annable) Bowerman', 'http://hawkshome.net/html', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (370, 'Southern Tuolumne County Residents', 'http://www.grovelandmuseum.org/genealogy', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (371, 'Descendants of George Mason, 1629-1686', 'http://www.gunstonhall.org/masonweb', 1, '2001-01-31', 0, 1, 'htm', NULL, NULL), (372, 'THOMAS ROGERS SOCIETY', 'http://www.thomasrogerssociety.com', 1, '2001-01-31', 0, 0, 'htm', '2008-04-14', NULL), (373, 'Pam''s Genealogy Page', 'http://www.pamsgenealogy.net/SS', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (374, 'Crocker ~ Ashley Genealogy', 'http://www.tracycrocker.com', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (375, 'The Genealogy of Thomas Lee Clough', 'http://www.tomclough.com', 1, '2001-01-31', 0, 2, 'htm', NULL, NULL), (376, 'The Lewis Family History', 'http://www.photosbykev.com/family/The%20Lewis%20Family-o', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (377, 'Welcome to the Worldwide Greathead family my One-Name Study', 'http://www.greathead.org/greathead2-o', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (378, 'Ancestors of Jon Michaelis and Cindy Reinicke', 'http://www.jonsgen.com', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (379, 'The History and Ancestry of the Richardson & Kimminau Families', 'http://www.englishlass.com', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (380, 'The Genealogy of one Vermonter, Darrell A. Martin', 'http://www.darrell-martin.net/genealogy', 1, '2001-01-31', 0, 2, 'htm', NULL, NULL), (381, 'Order of the Crown of Charlemagne In the United States of America', 'http://www.charlemagne.org', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (382, 'Jim Radja''s Genealogy Research', 'http://www.jimradja.com', 1, '2001-01-31', 0, 0, 'htm', '2007-07-10', NULL); INSERT INTO `sites` (`SiteID`, `SiteName`, `SiteURL`, `EngineID`, `LastRefreshed`, `LocalPGV`, `UpdateInProgress`, `PageSuffix`, `PageDate`, `Notes`) VALUES (383, 'Michelle Dennis'' Genealogy', 'http://www.michelledennis.com.au/MichelleTree', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (384, 'Whipple, Cohen, Ryan and Allied Familes', 'http://whipplefamily.com/genealogy', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (385, 'Royalty to Rogues', 'http://www.l-dunaway.net', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (386, 'Alan & Rosemary''s Family Tree', 'http://www.rmchalmers.net', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (387, 'Tuftin-Ebeltoft-Høysæter-Aas', 'http://www.tuftin.net/genealogy', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (388, 'Gordon-Durrenberger Genealogy', 'http://www.gordons.ws', 1, '2001-01-31', 0, 0, 'htm', '2008-04-06', NULL), (389, 'Leary Relations', 'http://learyrelations.com', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (390, 'Adams - Ashby Family History', 'http://bob-adams.com/gen', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (391, 'Roberts-Holtzner Genealogical Site', 'http://www.familyroberts.net', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (392, 'Texas Durrenbergers', 'http://www.durrenberger.org/TexDurr', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (393, 'The Hall Family and Related Lines', 'http://www.hallfamilylines.com', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (394, 'Cookie Crumbs', 'http://www.gdcooke.org/SS/default.aspx/page/org2-o', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (395, 'The Blackman Family in England & Wales, 1520 - 1901', 'http://www.blackmanfamily.org/tree/blackman', 1, '2001-01-31', 0, 0, 'htm', '2008-04-10', NULL), (396, 'The Wagner Group', 'http://www.thewagnergroup.org/tree', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (397, 'Prescott / Moul Family Tree', 'http://leahsite.name', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (398, 'Tankersley-Holmes', 'http://tankersleyfamily.com', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (399, 'Ohlhausen.ca', 'http://www.ohlhausen.ca', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (400, 'Phillips - Balkcom - Price - Wagner Family History', 'http://phillips-price-family.com', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (401, 'Hagerstown High School - Class of 1955', 'http://www.wilbertforrestwebb.com', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (402, 'George F. Johnson Genealogy ', 'http://www.4cls.org/webpages/members/endicott', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (403, 'My Milligan Family Tree', 'http://www.maolagain.com/FamilyTree', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (404, 'Gathering Leaves - DeBacker, O''Malley, Gaume, etc.', 'http://gatheringleaves.org/debacker-o', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (405, 'The Iddison Genealogy - pre 1900', 'http://www.northwest.demon.co.uk', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (406, 'WEBSTER, HUDSON and associated families', 'http://www.judywebster.gil.com.au/webster', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (407, 'Lorna Henderson Genealogy', 'http://homepages.paradise.net.nz/lornahen/FamilyTree', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (408, 'Terry & Nancy''s Family History', 'http://www.reigelridge.com/family', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (409, 'Ancestors of the Minogue Family of Ontario and the Cassin Family of Quebec', 'http://www.pbalkcom.com/Second%20Site/Monogue2-o', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (410, 'Descendants Of Julius Swift', 'http://www.conovergenealogy.com/julius-p', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (411, 'Robert Lamping', 'http://robertlamping.com/genea/database-o', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (412, 'The Pinckney Family Tree', 'http://www.john-pinckney.co.uk/family', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (413, 'All in the Family', 'http://dalyclan.org/total/total-o', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (414, 'Généalogie Joël Morin Genealogy', 'http://www.famille-morin.com', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (415, 'King''s and Kendall''s', 'http://freepages.genealogy.rootsweb.ancestry.com/~scottk4370', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (416, 'Thomas Campbell and Jane Davidson of Londonderry, N.H., and Their Descendants', 'http://freepages.genealogy.rootsweb.ancestry.com/~pontiusbranch', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (417, 'The Sackett Family Association', 'http://www.sackett.org.uk', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (418, 'The Mavrogeorge Project', 'http://www.genealogysf.com/Mavrogeorge-p', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (419, 'Sewell or Sewall of Coventry', 'http://www.sewellgenealogy.com', 1, '2001-01-31', 0, 2, 'htm', NULL, NULL), (420, 'Oxford: from Scotland to New Brunswick', 'http://www.nextech.de/genealogy/oxford', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (421, 'Relph: from Cumberland to New York', 'http://www.nextech.de/genealogy/relph', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (422, 'Our Family Information', 'http://danielscheer.com/family', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (423, 'Townsend surname in Australia', 'http://www.members.optusnet.com.au/~mark_searle/townsend-p', 1, '2001-01-31', 0, 0, 'htm', '2008-04-13', NULL), (424, 'STEINKE, RIENECKER, HAHN and associated families', 'http://www.judywebster.gil.com.au/steinke', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (425, 'Ancestors and Family Connected to Mona GOLD Panitz', 'http://ezwieback.com/pntz-p', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (426, 'Ancestors of the Franks and Carder Family of southwestern Oklahoma', 'http://www.pbalkcom.com/Second%20Site/Frankssecond-p', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (427, 'Balkcom, Baldwin, Brannon, Galloway, Murphy, Mathews, Preston, Clark, and Associated Families', 'http://www.pbalkcom.com/gwb/Balkcom-p', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (428, 'The Davis-Bean Trees', 'http://kerrysdavis.home.comcast.net/~kerrysdavis', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (429, 'Genaelogische gegevens van Kenneth en Ellen Audenaert', 'http://users.skynet.be/audenaert', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (430, 'Genealogie PANDELAERS - PIEDFORT', 'http://users.skynet.be/gilbert.pandelaers/siteone', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (431, 'Dick O''Malley''s Family History webpages', 'http://www.dickomalley.com/second%20site%202%20files-o', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (432, 'Erik Berntsens slektssider', 'http://vestraat.net/iea-o', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (433, 'Rossfjordslekt', 'http://home.online.no/~ebernts/rossfjord-o', 1, '2001-01-31', 0, 0, 'htm', '2008-04-13', NULL), (434, 'Harald Sørgaard Djupviks Slektssider', 'http://home.online.no/~hardjup/slektssider', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (435, 'Skiftingsmyr-folket', 'http://home.online.no/~kskagest/Kjell-2-o', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (436, 'Slektstavle for Lars Jørgensen', 'http://home.online.no/~ljoerg', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (437, 'Aner til mine besteforeldre', 'http://home.online.no/~orgund/slekt', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (438, 'Svein Wilford Pettersen', 'http://home.online.no/~swpetter/test/liv%20svein-o', 1, '2001-01-31', 0, 0, 'htm', '2007-12-27', NULL), (439, 'Eidskog Slektshistorielag sin database!', 'http://www.eidskogslekt.no/hele', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (440, 'Genealogie Florisoone Stam', 'http://users.telenet.be/Florizoone_Stam/stamboom', 1, '2001-01-31', 0, 0, 'htm', '2008-04-11', NULL), (441, 'Genealogie van de families Lagast en Vertommen', 'http://users.telenet.be/jaak.lagast', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (442, 'Peter Crombecq''s Genealogische databank', 'http://users.telenet.be/PeterCrombecq/Genea%20Stek/Crombecq/Crombecq-o', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (443, 'Genealogie Harry Goegebeur', 'http://users.pandora.be/harry.goegebeur/SecondSite2', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (444, 'Theuber Database', 'http://homepages.rootsweb.ancestry.com/~theuber', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (445, 'Thomas / Steinhauser and Associated Families Genealogy', 'http://freepages.genealogy.rootsweb.ancestry.com/~jhtfamily', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (446, 'Rev William Worcester', 'http://freepages.genealogy.rootsweb.ancestry.com/~lougene', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (447, 'Denton - Herndon Family Genealogy', 'http://freepages.genealogy.rootsweb.ancestry.com/~rayherndon', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (448, 'Genealogy of Margaret Simpson-Meyer', 'http://freepages.genealogy.rootsweb.ancestry.com/~margaretsimpson/meyer2-o', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (449, 'Ancestry of Sheila Altenbernd', 'http://freepages.genealogy.rootsweb.ancestry.com/~altenbernd', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (450, 'Wagner Genealogy', 'http://freepages.genealogy.rootsweb.ancestry.com/~wagner', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (451, 'Carolyn Hatling Family Website', 'http://freepages.genealogy.rootsweb.ancestry.com/~hatling', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (452, 'Bill Wilson''s Genealogy Web Page', 'http://freepages.genealogy.rootsweb.ancestry.com/~wdwilson3', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (453, 'Black and Wayne Families', 'http://freepages.genealogy.rootsweb.ancestry.com/~deblack', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (454, 'Mississippi Roots', 'http://freepages.genealogy.rootsweb.ancestry.com/~westmoreland/surnames', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (455, 'Reynolds & Webb Family History', 'http://freepages.genealogy.rootsweb.ancestry.com/~reynoldswebb', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (456, 'Melin/Dahlgren/Hammarberg Family Tree', 'http://freepages.genealogy.rootsweb.ancestry.com/~bkhammar', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (457, 'The Ford/Faure Family', 'http://freepages.genealogy.rootsweb.ancestry.com/~lawrpaul/ford-o', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (458, 'Descendants and Ancestors of Jean Pierre Bondurant', 'http://freepages.genealogy.rootsweb.ancestry.com/~lawrpaul/bondurant-o', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (459, 'Descendants of James Daughtrey Sr.', 'http://freepages.genealogy.rootsweb.ancestry.com/~lawrpaul/daughtrey-o', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (460, 'The Boone and Henton/Hinton Families', 'http://freepages.genealogy.rootsweb.ancestry.com/~lawrpaul/henton-o', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (461, 'My Family History Research - The Ancestors of Jeff & Linda Piper', 'http://freepages.genealogy.rootsweb.ancestry.com/~jeffpiper', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (462, 'Descendants of Theodore Rose', 'http://freepages.genealogy.rootsweb.ancestry.com/~lawrpaul/rose-o', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (463, 'Wilhite/Wilhoite/Wilhoite', 'http://freepages.genealogy.rootsweb.ancestry.com/~lawrpaul/wilhite-o', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (464, 'The Hardy Family of Virginia', 'http://freepages.genealogy.rootsweb.ancestry.com/~lawrpaul/hardy-o', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (465, 'North Carolina & Kentucky Gilliams & Nantucket Gibbs', 'http://freepages.genealogy.rootsweb.ancestry.com/~gilliamgibbs/genealogy/gilliamgibbs-o', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (466, 'Kincaid and McMurry', 'http://freepages.genealogy.rootsweb.ancestry.com/~lawrpaul/kincaid-o', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (467, 'Descendants of Robert Lawrence', 'http://freepages.genealogy.rootsweb.ancestry.com/~lawrpaul/robtlawrence-o', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (468, 'McCaffrey/McCorkle Database', 'http://freepages.genealogy.rootsweb.ancestry.com/~dwoody/mm/mccaffreymccorkle-o', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (469, 'Lawrences of Ashton Hall', 'http://freepages.genealogy.rootsweb.ancestry.com/~lawrpaul/ashton-o', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (470, 'Short/Woody Database', 'http://freepages.genealogy.rootsweb.ancestry.com/~dwoody/sw/shortwoody-o', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (471, 'Family Files', 'http://freepages.genealogy.rootsweb.ancestry.com/~rice/master2-o', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (472, 'DE ALOUDE FAMILIE VAN LANDSCHOOT - Tak - Maldegem - Branch', 'http://freepages.genealogy.rootsweb.ancestry.com/~havaland/maldegem', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (473, 'Descendants of Martin Hickey', 'http://freepages.genealogy.rootsweb.ancestry.com/~harringtonfamily/martinhickey2', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (474, 'Boswell Genealogy', 'http://freepages.genealogy.rootsweb.ancestry.com/~wboswell/boswell-o', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (475, 'THE DARROW BRANCH', 'http://freepages.genealogy.rootsweb.ancestry.com/~ourfamilyhistory2006/flbhistory/darrowbranch', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (476, 'Hammer, Lasater, Waitt and Scott Families in Indiana Genealogy', 'http://freepages.genealogy.rootsweb.ancestry.com/~dvhammer', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (477, 'Merritt Meanderings', 'http://freepages.genealogy.rootsweb.ancestry.com/~merritt', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (478, 'Elliff name and variants in the UK', 'http://freepages.genealogy.rootsweb.ancestry.com/~elliff', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (479, 'Karen Worley''s Genealogy Database', 'http://freepages.genealogy.rootsweb.ancestry.com/~krworley', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (480, 'Bert''s Family Links Over 500 Surnames', 'http://freepages.genealogy.rootsweb.ancestry.com/~yearsgoneby', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (481, 'Ancestors of Howard Hickman', 'http://freepages.genealogy.rootsweb.ancestry.com/~hhickman', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (482, 'The Waldron Clan', 'http://freepages.genealogy.rootsweb.ancestry.com/~waldron', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (483, 'BROWN, BURT, ABNEY, WATTS, and related families', 'http://freepages.genealogy.rootsweb.ancestry.com/~opus', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (484, 'Descendants of William Marquis - 1683', 'http://freepages.genealogy.rootsweb.ancestry.com/~rzoz/marquis', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (485, 'Stepping Stones', 'http://freepages.genealogy.rootsweb.ancestry.com/~rdrunner', 1, '2001-01-31', 0, 0, 'htm', '1969-12-31', NULL), (486, 'Root''d in TEXAS - The Ancestors of Robert Frank Wilson', 'http://freepages.genealogy.rootsweb.ancestry.com/~rfwilson/robert-p', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (487, 'Laneta''s & Chuck''s Site', 'http://freepages.genealogy.rootsweb.ancestry.com/~mayfield', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (488, 'Lennox - Dacey Ancestry', 'http://freepages.genealogy.rootsweb.ancestry.com/~mariano', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (489, 'The Warn Family in Tetbury from 1722 and related families', 'http://freepages.genealogy.rootsweb.ancestry.com/~warnies', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (490, 'Famíla Charters d''Azevedo', 'http://freepages.genealogy.rootsweb.ancestry.com/~charters', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (491, 'Louviere Data Base', 'http://homepages.rootsweb.ancestry.com/~louviere', 1, '2001-01-31', 0, 0, 'htm', '1969-12-31', NULL), (492, 'Blood, Collateral and Otherwise', 'http://www.rootsweb.ancestry.com/~hft/ss2', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (493, 'cheyne family history - updated', 'http://www.rootsweb.ancestry.com/~cheyne/200712-o', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (494, 'A NOSSA FAMÍLIA', 'http://freepages.family.rootsweb.ancestry.com/~familiasportugal', 1, '2001-01-31', 0, 0, 'htm', '1969-12-31', NULL), (495, 'Phinneysplace - Genealogy', 'http://www.phinneysplace.com/genealogy', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (496, 'Aspland Families', 'http://aspland.search4ancestors.net', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (497, 'Tevern Genealogy', 'http://tevern.us/genealogy', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (498, 'adam barner family reunion', 'http://www.adambarner.org/bfrweb', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (499, 'KNOCH Genealogy and Family History', 'http://members.cox.net/aknoch/john%20knoch-o', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (500, 'FredQuest Genealogy', 'http://genealogy.fredquest.com/gendata', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (501, 'The Genealogical Records of James M. & Elsie Klinger Eaves', 'http://www.eaves-klinger-genealogy.info', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (502, 'Stoy Family Genealogy', 'http://www.robertstoy.com/StoyFamily-o', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (503, 'Barnell Family Genealogy', 'http://home.comcast.net/~tdolan/barnell-o', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (504, 'Harless Homepage', 'http://www.genealogy-quest.com/Harless-Homepage/tree', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (505, 'Culpepper Daughters & Their Descendants', 'http://freepages.family.rootsweb.ancestry.com/~lewgriffin', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (506, 'The Dishman Family of Virginia', 'http://dishmanweb.com/Dishman-p', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (507, 'Descendants of Abraham Collins (1648-1719)', 'http://collinsfactor.com/collins/Abe-p', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (508, 'The Richards of Andover, Maine', 'http://homepages.rootsweb.ancestry.com/~richards/Richards2-p', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (509, 'The Moravian Connection', 'http://www.moravian-connection.com/master-p', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (510, 'The Descendants of Robert Tinker (1565 - 1624)', 'http://uk.geocities.com/genealogy2@btinternet.com/Line01', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (511, 'Flohri/Flory/Florey/Flora Family Tree', 'http://theflorys.org/Genealogy/florey_pub', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (512, 'Fate Family Genealogy', 'http://www.genealogy.fatefamily.org/2ndsite', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (513, 'Valentine Mattox', 'http://www.argphotoshop.com/Genealogy/Mattox/vmattox/vmattox-p', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (514, 'Breathless Moon Family Matrix v2.0', 'http://www.burgesslegacy.org/matrix2/Matrix2-p', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (515, 'The Robertson - Smith Connection', 'http://www.geocities.com/jasgrob', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (516, 'Hubbard / Holmen Family History', 'http://www.dxhansen.com/SSHubbard2-o', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (517, 'My Crow Family', 'http://freepages.genealogy.rootsweb.ancestry.com/~rayholt/CrowFamily', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (518, 'A Glimpse into the Past', 'http://freepages.genealogy.rootsweb.ancestry.com/~dbernhardt/A%20Glimpse%20into%20the%20Past-p', 1, '2001-01-31', 0, 0, 'htm', '1969-12-31', NULL), (519, 'My Ansley Family', 'http://freepages.genealogy.rootsweb.ancestry.com/~rayholt/AnsleyFamily', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (520, 'Scroggins Genealogy News', 'http://freepages.genealogy.rootsweb.ancestry.com/~scrogginsdata/news2', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (521, 'The Mayfields - Robert & Sarah', 'http://freepages.genealogy.rootsweb.ancestry.com/~mayfield/GlennWMayfield', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (522, 'The Mulherns and Raffertys of Lawrence County, Ohio', 'http://freepages.genealogy.rootsweb.ancestry.com/~clmillslagle/mulhern-p', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (523, 'Some Families of East Alabama, Georgia, the Carolinas & Virginia', 'http://freepages.genealogy.rootsweb.ancestry.com/~lewgriffin', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (524, 'Carroll Family of South Carolina, Florida and Texas', 'http://www.burval.net/carroll-p', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (525, 'Descendants of Simon Harr', 'http://freepages.genealogy.rootsweb.ancestry.com/~lawrpaul/harr-o', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (526, 'Descendants of Detmar Sternberg', 'http://freepages.genealogy.rootsweb.ancestry.com/~lawrpaul/stansbury-o', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (527, 'The Braun/Brown and Leonard Families', 'http://freepages.genealogy.rootsweb.ancestry.com/~lawrpaul/brown-o', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (528, 'KELLER and HOYLE Families of Western North Carolina', 'http://freepages.genealogy.rootsweb.ancestry.com/~kellergenealogy', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (529, 'Yuille Family', 'http://freepages.genealogy.rootsweb.ancestry.com/~yuille', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (530, 'The Genealogy of Ray and Elizabeth Jones Holt', 'http://freepages.genealogy.rootsweb.ancestry.com/~rayholt/HoltFamily', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (531, 'Mullins Genealogy', 'http://freepages.genealogy.rootsweb.ancestry.com/~kenmullins', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (532, 'Some Wiggin Trees', 'http://freepages.genealogy.rootsweb.ancestry.com/~wigan', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (533, 'The Genealogy of Trumer Daniel Buckelew, Sr. ', 'http://freepages.genealogy.rootsweb.ancestry.com/~ron5180', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (534, 'Arkansas Reynolds', 'http://freepages.genealogy.rootsweb.ancestry.com/~arkansasreynolds', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (535, 'The Delaware River Stout''s of Hunterdon County, NJ', 'http://freepages.genealogy.rootsweb.ancestry.com/~mirabella', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (536, 'Stuart''s Family Tree', 'http://freepages.genealogy.rootsweb.ancestry.com/~stuboyle', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (537, 'Kordyban Genealogy Data', 'http://freepages.genealogy.rootsweb.ancestry.com/~kordyban/familydata', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (538, 'Crouch and related Familes from Washington County, TN', 'http://freepages.genealogy.rootsweb.ancestry.com/~crouch', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (539, 'Lucy''s Family History', 'http://freepages.genealogy.rootsweb.ancestry.com/~lucywhitehead', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (540, 'McLean-Fisk', 'http://freepages.genealogy.rootsweb.ancestry.com/~scrogginsdata/mclean-fisk', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (541, 'McBirnie/McBurney Bear Roots', 'http://freepages.genealogy.rootsweb.ancestry.com/~cathygriffin', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (542, 'Ancestors of Robert McCutcheon', 'http://freepages.genealogy.rootsweb.ancestry.com/~dunsmore', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (543, 'Henderson, Andrews, Rowe, Wight, Sinton, Fairbairn, Bain, Manson, McAdie and many many more', 'http://freepages.genealogy.rootsweb.ancestry.com/~hendersonandandrews', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (544, 'Burnett Family', 'http://freepages.genealogy.rootsweb.ancestry.com/~lawrpaul/burnett-p', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (545, 'The Toye''s', 'http://freepages.genealogy.rootsweb.ancestry.com/~fehr/Toye', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (546, 'Sarah Payne (1759-1801/10); Coastal Braintree MA to Ashfield MA to the NY Frontier', 'http://freepages.genealogy.rootsweb.ancestry.com/~sarahpayne', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (547, 'Holtzermann, Madden, Schetter, Velechovsky, and related families', 'http://freepages.genealogy.rootsweb.ancestry.com/~earbar/hands', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (548, 'Descendants of John Daniel and Catherine Couch', 'http://freepages.genealogy.rootsweb.ancestry.com/~lawrpaul/daniel-o', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (549, 'McNees Family Genealogy', 'http://freepages.genealogy.rootsweb.ancestry.com/~mcneesfamily', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (550, 'My Family Lines', 'http://freepages.genealogy.rootsweb.ancestry.com/~kilbirnieconnections', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (551, 'Wright Families of Overton & Fentress Cos., TN', 'http://freepages.genealogy.rootsweb.ancestry.com/~nataletne/Overton', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (552, 'Descendants of Edouad Bompasse', 'http://freepages.genealogy.rootsweb.ancestry.com/~lawrpaul/bumpass-o', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (553, 'Descendants of Nathaniel Harper', 'http://freepages.genealogy.rootsweb.ancestry.com/~lawrpaul/harper-o', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (554, 'Mullins Family', 'http://freepages.genealogy.rootsweb.ancestry.com/~lawrpaul/mullins-o', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (555, 'Old-Smith Branches - Smith and Richardson Groups', 'http://freepages.genealogy.rootsweb.ancestry.com/~oldsmith/dbs/s-r2ndsite-p', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (556, 'Old-Smith Branches - Old and Coonce Groups', 'http://freepages.genealogy.rootsweb.ancestry.com/~oldsmith/dbs/o-c2ndsite-p', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (557, 'Old-Smith Branches - Ingham and Forbes Groups', 'http://freepages.genealogy.rootsweb.ancestry.com/~oldsmith/dbs/ing2ndsite-p', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (558, 'Old-Smith Branches - Williams and Hansen Groups', 'http://freepages.genealogy.rootsweb.ancestry.com/~oldsmith/dbs/w-h2ndsite-p', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (559, 'Descendants of John Hill and Margaret Covington', 'http://freepages.genealogy.rootsweb.ancestry.com/~lawrpaul/hill-o', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (560, 'Ancestors of Gladys Clifton Wallace', 'http://freepages.genealogy.rootsweb.ancestry.com/~wooddreams/GCW-p', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (561, 'The Towne Family', 'http://freepages.genealogy.rootsweb.ancestry.com/~lawrpaul/towne-o', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (562, 'Hetlage / Underwood Family History', 'http://freepages.genealogy.rootsweb.ancestry.com/~phetlage', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (563, 'Slade Families in the United States after 1800', 'http://freepages.genealogy.rootsweb.ancestry.com/~sladej', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (564, 'Janice Smith', 'http://freepages.genealogy.rootsweb.ancestry.com/~janiceksmith/murr-p', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (565, 'Descendants of George Sloan Sr. from Ireland', 'http://freepages.genealogy.rootsweb.ancestry.com/~lawrpaul/sloan-o', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (566, 'DAHL CLAN', 'http://freepages.genealogy.rootsweb.ancestry.com/~cdahl', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (567, 'Ancestors', 'http://freepages.genealogy.rootsweb.ancestry.com/~lawrpaul/ancestors-o', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (568, 'Somers of Caledonia County, Vermont', 'http://freepages.genealogy.rootsweb.ancestry.com/~earbar/somers', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (569, 'Barnes Families in Norfolk, England', 'http://freepages.genealogy.rootsweb.ancestry.com/~mdtmgug/barnes-p', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (570, 'St. Paul''s Cemetery - Wisbeach, Warwick Twp., Lambton Co., Ontario, Canada', 'http://freepages.genealogy.rootsweb.ancestry.com/~jaiwilliams/Wisbeach', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (571, 'Sziebert Michael Családfa', 'http://freepages.genealogy.rootsweb.ancestry.com/~jlucke/MSziebert', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (572, 'Our Family - Donahues, Winslows, and Beyond...', 'http://freepages.genealogy.rootsweb.ancestry.com/~donahue/families/families-p', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (573, 'Sziebert and Berecz Families of Baranya Megye Hungary', 'http://freepages.genealogy.rootsweb.ancestry.com/~jlucke/Sziebert', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (574, 'The Genealogy of the Winchester Family from Wayne County, Kentucky', 'http://freepages.genealogy.rootsweb.ancestry.com/~clmillslagle/winchester-p', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (575, 'The Genealogy of the Donaker Family', 'http://freepages.genealogy.rootsweb.ancestry.com/~clmillslagle/donaker-p', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (576, 'Family History of the Lucke and Meyer Families of Putnam County, Ohio', 'http://freepages.genealogy.rootsweb.ancestry.com/~jlucke/Lucke_Meyer', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (577, 'The Genealogy of the Daellenbach Family', 'http://freepages.genealogy.rootsweb.ancestry.com/~clmillslagle/daellenbach-p', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (578, 'DE ALOUDE FAMILIE VAN LANDSCHOOT - TAK- EEKLO - BRANCH', 'http://freepages.genealogy.rootsweb.ancestry.com/~havaland/eeklo1', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (579, 'DE ALOUDE FAMILIE VAN LANDSCHOOT - TAK - KNOKKE - BRANCH', 'http://freepages.genealogy.rootsweb.ancestry.com/~havaland/knokke', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (580, 'Haven Project', 'http://freepages.genealogy.rootsweb.ancestry.com/~houghtonfamily/Haven', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (581, 'LANDSCHOOF - LANDSCHOF - LANDSCHOOFT - LANDSCHO - LANDSHOF - LANDSHOF - LANDSHEFT......', 'http://freepages.genealogy.rootsweb.ancestry.com/~havaland/landshof', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (582, 'Lauren''s Genealogy - Daniel(s) and Associated Families of Pennsylvania and Delaware', 'http://freepages.genealogy.rootsweb.ancestry.com/~lsnell/Laurens%20Daniels-o', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (583, 'Brooks, Morkill, and related families', 'http://freepages.genealogy.rootsweb.ancestry.com/~earbar/bandm', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (584, 'Lauren''s Genealogy - Georgia - Snellgrove, Walters, Bozeman, and others', 'http://freepages.genealogy.rootsweb.ancestry.com/~lsnell/Laurens%20Georgia-o', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (585, 'Lauren''s Genealogy - Mahorter / Mehorter Relatives', 'http://freepages.genealogy.rootsweb.ancestry.com/~lsnell/Laurens%20Mahorters-o', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (586, 'Lauren''s Genealogy - Pennsylvania Germans - Kiefer, Schwager, Hauck, Weand, and others', 'http://freepages.genealogy.rootsweb.ancestry.com/~lsnell/Laurens%20PA%20Germans-o', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (587, 'Lamprell Genealogy', 'http://freepages.genealogy.rootsweb.ancestry.com/~rvoull', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (588, 'Civil War Soldiers', 'http://freepages.genealogy.rootsweb.ancestry.com/~mdtmgug/civil-war-p', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (589, 'THE OLSON BRANCH OF THE NORWEGIAN CONNECTION', 'http://freepages.genealogy.rootsweb.ancestry.com/~ourfamilyhistory2006/omhhistory/olsonbranch', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (590, 'THE NORWAY BRANCH OF THE NORWEGIAN CONNECTION', 'http://freepages.genealogy.rootsweb.ancestry.com/~ourfamilyhistory2006/omhhistory/norwaybranch', 1, '2001-01-31', 0, 0, 'htm', '1969-12-31', NULL), (591, 'Trost-Mooney Genealogy', 'http://freepages.genealogy.rootsweb.ancestry.com/~mccartjh/Trost-o', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (592, 'McCarthy-Anderson Genealogy', 'http://freepages.genealogy.rootsweb.ancestry.com/~mccartjh/McCarthy-o', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (593, 'THE DEVEREAUX-WEBBER BRANCH', 'http://freepages.genealogy.rootsweb.ancestry.com/~ourfamilyhistory2006/flbhistory/webber-devereauxbranch', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (594, 'THE LATHAM-PACKER BRANCH', 'http://freepages.genealogy.rootsweb.ancestry.com/~ourfamilyhistory2006/flbhistory/latham-packerbranch', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (595, 'THE BERLIN BRANCH', 'http://freepages.genealogy.rootsweb.ancestry.com/~ourfamilyhistory2006/flbhistory/berlinbranch', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (596, 'Rutzinski - Wamser - Hess - Hoffmann', 'http://freepages.genealogy.rootsweb.ancestry.com/~treffen', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (597, 'Rumgay Central', 'http://freepages.genealogy.rootsweb.ancestry.com/~lsnell/Rumgay-o', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (598, 'Ancestors and their Descendants', 'http://freepages.genealogy.rootsweb.ancestry.com/~solongago/GERL1920_files', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (599, 'Genealogy Pages of Astrid Kranzbuhler', 'http://freepages.genealogy.rootsweb.ancestry.com/~astrid/GenEn', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (600, 'Uran Surname Project', 'http://freepages.genealogy.rootsweb.ancestry.com/~houghtonfamily/Uran', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (601, 'Graingers of Worcester', 'http://freepages.genealogy.rootsweb.ancestry.com/~hendersonandandrews/grainger', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (602, 'Wells Surname DNA Project - Wells DNA Family - W002', 'http://freepages.genealogy.rootsweb.ancestry.com/~hillmer/DNA/W002', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (603, 'Wells Surname DNA Project - Wells DNA Family - W001', 'http://freepages.genealogy.rootsweb.ancestry.com/~hillmer/DNA/W001', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (604, 'Descendants of Humphrey Scroggin II', 'http://freepages.genealogy.rootsweb.ancestry.com/~scrogginsdata/humphrey2', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (605, 'Descendants of Jonah Scoggin', 'http://freepages.genealogy.rootsweb.ancestry.com/~scrogginsdata/jonah', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (606, 'Jane''s Genealogy Pages - Brennan Surname Index', 'http://freepages.genealogy.rootsweb.ancestry.com/~janej/Jane/Brennan/Brennan-o', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (607, 'Broekman-Seidler Genealogie', 'http://freepages.genealogy.rootsweb.ancestry.com/~bruggencate/family/family-d-p', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (608, 'The Naturani Family', 'http://freepages.genealogy.rootsweb.ancestry.com/~naturani', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (609, 'Ten Bruggencate''s Wereldwijd', 'http://freepages.genealogy.rootsweb.ancestry.com/~bruggencate/bruggencate/brugg-d-p', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (610, 'Kwartierstaat Hans Van Landschoot en Renée Gallé', 'http://freepages.genealogy.rootsweb.ancestry.com/~havaland/hans', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (611, 'VAN LANDSCHOOT DELFT', 'http://freepages.genealogy.rootsweb.ancestry.com/~havaland/delft', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (612, 'DE ALOUDE FAMILIE VAN LANDSCHOOT - TAK KLEIT', 'http://freepages.genealogy.rootsweb.ancestry.com/~havaland/kleit', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (613, 'VAN LANSCHOT -- ZUNDERT', 'http://freepages.genealogy.rootsweb.ancestry.com/~havaland/zundert', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (614, 'Genealogie Familie Van Landschoot - Brugge', 'http://freepages.genealogy.rootsweb.ancestry.com/~havaland/brugge', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (615, 'DE ALOUDE FAMILIE VAN LANDSCHOOT - TAK ADEGEM', 'http://freepages.genealogy.rootsweb.ancestry.com/~havaland/adegem', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (616, 'UBER 400 JAHRE LANDSCHOOF -- LANDSCHOF FAMILIEN IN SCHLESWEG-HOLSTEIN', 'http://freepages.genealogy.rootsweb.ancestry.com/~havaland/landschoof', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (617, 'Genealogie Seiten', 'http://freepages.genealogy.rootsweb.ancestry.com/~astrid/GenDe', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (618, 'Holdridge Family of Texas, Alabama, Georgia, South Carolina and England', 'http://freepages.genealogy.rootsweb.ancestry.com/~holdridge/people/holdridgecharts-p', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (619, 'Jane''s Genealogy Pages - Bowring Surname Index - old', 'http://freepages.genealogy.rootsweb.ancestry.com/~janej/Jane/Bowring/Bowring-o', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (620, 'Jane''s Genealogy Pages - All lines', 'http://freepages.genealogy.rootsweb.ancestry.com/~janej/Jane/Jane-o', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (621, 'Flint, Blake, and Related Families.', 'http://www.joeflint.com', 1, '2001-01-31', 0, 0, 'htm', '2008-04-12', NULL), (622, 'Descendants of Andreas L. Oehmann', 'http://www.oehmann.net/Oehmann_A_L/Oehmann_A_L-o', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (623, 'My Christmas Family', 'http://www.christmas-family-tree.org.uk', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (624, 'The Pamunkey Bakers', 'http://pamunkeybakers.com', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (625, 'Germantown Cemeteries', 'http://www.schulteis.com/omnibus/germantown/interments', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (626, 'Randy Funk', 'http://funks.org/ancestry/unsecure', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (627, 'Minnesota Durrenbergers', 'http://www.durrenberger.org/MinnDurr', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (628, 'Hocker McIlwain Ancestors', 'http://www.lajollacal.net', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (629, 'Genealogies Compiled by Bill Blandin', 'http://www.blandinfam.com/second_site/SSAug1404-p', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (630, 'Hemsteger Family Genealogy', 'http://www.hemsteger.com/HemstegerGen', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (631, 'Our Family - Michelle Boccaccio', 'http://www.shellyboccaccio.com', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (632, 'Kates Family Genealogy', 'http://members.cox.net/kelly-davis1/Genealogy', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (633, 'DeSilva Lines', 'http://home.comcast.net/~desilva11', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (634, 'Descendants of John Crabtree', 'http://www.dalyclan.org/page4/sscrab/sscrab-o', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (635, 'Ancestors and Family Connections for the ZWIEBACK Family Name', 'http://ezwieback.com/ZFN-p', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (636, 'Skifter Orkdal, Meldal, Rennebu og Oppdal 1689-1805', 'http://astavne.net/Rennebu', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (637, 'Bjørns Flåtens slektstre', 'http://www.ruffen.no/ged_bjorn/Bj%C3%B8rns%20slektstre-p', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (638, 'Genealogie der Familie Rüegg - Bigler', 'http://homepage.bluewin.ch/ruegg/', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (639, 'Slægtsforskning og lokalhistorie i Danmark og Nordslesvig', 'http://home25.inet.tele.dk/genealogi', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (640, 'FAMILIE BORRE', 'http://www.borre-katti.be', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (641, 'Ann-Carin Bøyesen', 'http://www.fkarlsen.net/acbslekt', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (642, 'Hedmark-slekt', 'http://home.online.no/~kskagest/Kjell-3-o', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (643, 'Bjarne Andersen', 'http://www.donatifamily.dk/second%20site/Donati-o', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (644, 'Westlake and Walker', 'http://freepages.genealogy.rootsweb.ancestry.com/~westlakewalker', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (645, 'Jane''s Genealogy Pages - Bowring Surname Index', 'http://freepages.genealogy.rootsweb.ancestry.com/~janej/Jane/Bowring/Bowring%20Family-o', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (646, 'Roy Stone''s family history website', 'http://futuredynamic.com/history', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (647, 'Winters Genealogy', 'http://winters-online.net/winters', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (648, 'Genealogy In Depth', 'http://www.pansy-paws.com/second%20site', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (649, 'Sussex Withall to Durham Withell', 'http://withell.org/sussex', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (650, 'Call Family History and Genealogy', 'http://darrellcall.com/calls', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (651, 'Groettum and Gilman Genealogy Home', 'http://www.groettum.net/genealogy', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (652, 'Parsonage Family History UK', 'http://www.parsonage.co.uk', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (653, 'Massengill Ancestors', 'http://www.bartemanuel.com/massengill-p', 1, '2001-01-31', 0, 0, 'htm', '2004-10-20', NULL), (654, 'Welcome to the home of the Goodrich Family Association', 'http://www.goodrichfamilyassoc.org', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (655, 'Ancestors of John F. Bruns', 'http://brunsfamily.com/brunsfamilytree-o', 1, '2001-01-31', 0, 0, 'htm', '2008-01-08', NULL), (656, 'Wallace Web Site', 'http://www.rwallace.ca/wallacesiteone-p', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (657, 'Gene-alogy', 'http://www.gene-alogy.org', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (658, 'Medieval Royalty', 'http://pages.prodigy.net/chuckwolfram', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (659, 'John and Patricia Weston''s family history', 'http://www.family.earlsway.co.uk', 1, '2001-01-31', 0, 0, 'htm', '2008-04-05', NULL), (660, 'The Descendants and Ancestors of John William & Eunice Holloway Shryock', 'http://shryock.info', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (661, 'Isbell Genealogy', 'http://randyisbell.com/Other_Stuff/family_tree/Isbell_web-p', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (662, 'Deem Family', 'http://www.deemfamily.com', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (663, 'A Jefferies Genealogy', 'http://www.galton.id.au', 1, '2001-01-31', 0, 0, 'htm', '2008-04-05', NULL), (664, 'Althouse Family of Berks County, Pennsylvania', 'http://www.althouses.com/genealogy/Althouses-o', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (665, 'Hunter, Jordan & Related Families Genealogy', 'http://genes.hunterfromtexas.com', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (666, 'The Cawthon Family Tree', 'http://www.cawthonfamilytree.com', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (667, 'Cordes-Edwards-Greenwood-Moser', 'http://www.cordes.ca/genealogy/cordes/Cordes-Edwards-Greenwood-Moser', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (668, 'Miles Files 7.0', 'http://espl-genealogy.org/Miles7', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (669, 'Bonnycastle Genealogy', 'http://jen.kolthammer.org/Bonnycastle-o', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (670, 'Carol Ann (Danneman) Dunshee''s Family History', 'http://danneman-family.com', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (671, 'Arnott and Vederoff Ancestors', 'http://lynellarnott.com', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (672, 'The Bradford Genealogy', 'http://home.comcast.net/~frbrd/Genealogy', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (673, 'Johnson and Wydra Ancestors', 'http://www.bartemanuel.com/johnson-p', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (674, 'The Deller Family in England, 1520 - 1901', 'http://dellerfamily.com/tree/deller', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (675, 'Mickey Genealogy', 'http://www.kintracker.net/Mickey-p', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (676, 'Daniel Scheer', 'http://www.danielscheer.com/family', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (677, 'Ramsey-Farrell Family', 'http://www.ramsisle.com/genealogy/ramsey', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (678, 'Dodsworth Family History', 'http://myweb.tiscali.co.uk/dorithycraggs', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (679, 'Shenberger Family', 'http://home.houston.rr.com/shenberger/family', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (680, 'World Wars', 'http://www.featherstone-society.com/Indexes/World%20Wars-p', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (681, 'Ancestors and Family', 'http://members.cox.net/lbankson', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (682, 'Lomas / Cohen / Scouller / Woods Family Trees', 'http://www.tizzana.com.au/familyhistory/lomas-p', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (683, 'Descendants of George Fridley', 'http://www.fridley.net/gfridley-p', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (684, 'Bryan Wetton''s Genealogy Breakfast', 'http://beesoft.soho.on.net/2ndSite/one', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (685, 'The Poppino Family', 'http://www.popenoe.com/Poppino/_overlay/ss', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (686, 'Hamilton', 'http://www.cilley.net/thecilleypages/hamilton-p', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (687, 'The Descendants of Jacob Sortore', 'http://www.sortore.com/database', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (688, 'Winter Family History', 'http://www.arkansas-roots.com/winter', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (689, 'Day x Day Genealogy', 'http://dayxday.org/daygenealogy-o', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (690, 'The Dunstan - Gowman Family History', 'http://homepage.ntlworld.com/meld', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (691, 'Dura/Dury/Napawance & Related Families', 'http://www.genealogymort.net/Dury', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (692, 'Elias Converse Descendants', 'http://mysite.verizon.net/hbwhitmore/converse', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (693, 'Roberts Family History', 'http://www.main-family.com/roberts', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (694, 'Ancestors of Michael Rigby', 'http://www.mike777.fsnet.co.uk', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (695, 'Butler Ancestry Website', 'http://the-butlers.com/ancestors/butler-p', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (696, 'Descendants of Hans Flohri of Birkenau, Darmstadt-Hesse, Germany', 'http://theflorys.org/Genealogy/flohri', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (697, 'Lind, Yonge and Related Lines', 'http://ilind.net/ancestry/jfdyDesc', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (698, 'Pepall a "One Name Study"', 'http://www.markpepall.plus.com', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (699, 'CORBRIDGE ~ NODDINGS Line', 'http://jean.corbridges.net/familyTrees/genealogy/corbridgeNoddings-p', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (700, 'A People called Schwenkfelder', 'http://pages.prodigy.net/halteman', 1, '2001-01-31', 0, 0, 'htm', '2008-02-20', NULL), (701, 'the makowiecs - cameron', 'http://makowiec.org/cameron', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (702, 'Anderson / Buchanan / Vinnicombe / Head Family Trees', 'http://www.tizzana.com.au/familyhistory/anderson-p', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (703, 'Tileston', 'http://cilley.net/thecilleypages/tileston-p', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (704, 'Bryan Wetton''s Genealogy Breakfast - The focus is on WETTON', 'http://beesoft.soho.on.net/2ndSite/two', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (705, 'The Family of Joan Helen Hammond', 'http://www.mindspring.com/~siddons/genealogy/hammond', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (706, 'Descendants of Jesse Treadway', 'http://www.fridley.net/treadway-p', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (707, 'Descendents of Jack & Rosemary Mort', 'http://www.genealogymort.net/JackRose', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (708, 'Lord Family History', 'http://www.main-family.com/lord', 1, '2001-01-31', 0, 0, 'htm', '2007-11-13', NULL), (709, 'Spears Family History', 'http://spears.arkansas-roots.com/spears', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (710, 'Coker family history', 'http://www.greathead.org/Coker/Coker-p', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (711, 'WOOD ~ WHITE Line', 'http://www.jean.corbridges.net/familyTrees/genealogy/woodWhite-p', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (712, 'The Bode, Jacobson, and Morelli Families', 'http://home.columbus.rr.com/bjmgenealogy/Genealogy', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (713, 'Dickens Family', 'http://spears.arkansas-roots.com/dickens', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (714, 'GENEALOGIE DE JEAN A. TONNELLIER', 'http://jeantonnellier.com/DEC-07-o', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (715, 'Kongehuset i Norge (demoslektsbok)', 'http://www.tha.no/kongehuset_thano-p', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (716, 'DIS-Finnmarks nettutstilling om Kolanordmenn', 'http://www.disnorge.no/fi/nettutstilling', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (717, 'Slekta mi', 'http://manglerud.net:8080/slekt', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (718, 'Genealogy of Jim McKinney', 'http://mckinneygenealogy.org', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (719, 'Nordfjord, Norway – Hendens and Grøneviks', 'http://benedict.isomedia.com/homes/hertz/Henden-public-o', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (720, 'Die Kehbel Familie', 'http://kehbel.de/secondsite/secondsite/stammbaumdaten-p', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (721, 'Homepage Deboosere', 'http://www.coenen-deboosere.net', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (722, 'Meine Familienforschung', 'http://ulrich-scheuer.de/Webneu-o', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (723, 'Familie Kronies', 'http://kronies.org', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (724, 'Karen Ulrichsen', 'http://ulrichsen.org/Sekondsite2/Karen-o', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (725, 'Welcome to the Archdekin Family Page', 'http://freepages.family.rootsweb.ancestry.com/~narchdekin/archdekin', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (726, 'Miller', 'http://cilley.net/thecilleypages/miller-p', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (727, 'Research of Janet P Gummer', 'http://www.featherstone-society.com/members/gedcom/UK/gummer/gummer-p', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (728, 'The FIASCHI''s of Tizzana', 'http://www.tizzana.com.au/familyhistory/fiaschi-p', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (729, 'The Mahons of Barbados', 'http://members.shaw.ca/d.alleyne/Mahon-p', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (730, 'Research Of Carole Alderton', 'http://www.featherstone-society.com/members/gedcom/UK/alderton/alderton-p', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (731, 'Descendants of George Huntress', 'http://home.comcast.net/~huntresp/reports', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (732, 'The Research of Margaret Clough', 'http://www.featherstone-society.com/Indexes/england/other/parkinson/Parkinson-p', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (733, 'Alleyne of Barbados', 'http://members.shaw.ca/d.alleyne/Abel%20Alleyne-p', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (734, 'DE FAMILIE (H)ANSEEUW UIT WEST-VLAANDEREN', 'http://users.skynet.be/walans', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (735, 'Descendants of Dougald MacFarlane & Margaret MacDonnell', 'http://homepages.rootsweb.ancestry.com/~maritime/Maritime_Mosaic/ID-0036-p', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (736, 'Jerry Thompson''s Genealogy Site', 'http://freepages.genealogy.rootsweb.ancestry.com/~thompsongenealogy', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (737, 'Nancy Ranck''s Genealogy Web Pages - Gailey', 'http://freepages.genealogy.rootsweb.ancestry.com/~nranck/gailey-p', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (738, 'Jackson Family Tree', 'http://freepages.genealogy.rootsweb.ancestry.com/~pnj1000/jackson-summary-p', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (739, 'Descendants of Rev. Wm. Otis Prentiss', 'http://freepages.genealogy.rootsweb.ancestry.com/~wooddreams/WOP-p', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (740, 'Seidler - Broekman Ancestry', 'http://freepages.genealogy.rootsweb.ancestry.com/~bruggencate/family/family-e-p', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL); INSERT INTO `sites` (`SiteID`, `SiteName`, `SiteURL`, `EngineID`, `LastRefreshed`, `LocalPGV`, `UpdateInProgress`, `PageSuffix`, `PageDate`, `Notes`) VALUES (741, 'The Genealogy of the Macke Family from Cincinnati, Ohio', 'http://freepages.genealogy.rootsweb.ancestry.com/~clmillslagle/macke-p', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (742, 'The Genealogy of the Downing Family', 'http://freepages.genealogy.rootsweb.ancestry.com/~clmillslagle/downing-p', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (743, 'Descendants of Hugh Boyd & Mary MacFarlane', 'http://homepages.rootsweb.ancestry.com/~maritime/Maritime_Mosaic/ID-0390-p', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (744, 'Tuttiett and Related Families', 'http://webpages.charter.net/lannylowe', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (745, 'Descendants of John O''Neall', 'http://homepages.rootsweb.ancestry.com/~joneall/secondsite/son_john-p', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (746, 'O''Brien Family Research', 'http://njsuttonfamily.org/O''Brien', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (747, 'Jones Family Research', 'http://njsuttonfamily.org/Jones', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (748, 'Biebers of W. MI', 'http://home.earthlink.net/~bieber.genealogy', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (749, 'THURLEY SURNAME RESEARCH - project #2', 'http://members.optusnet.com.au/karen.thurley/Other2', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (750, 'THURLEY SURNAME RESEARCH - project #3', 'http://members.optusnet.com.au/karen.thurley/Other3', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (751, 'Family History: The DeVoe, Josselyn, and Related Families', 'http://www.wam.umd.edu/~hdevoe/FamHist', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (752, 'Lilley Family Tree', 'http://www.members.westnet.com.au/banbury/myfamily/Lilley/lilley-o', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (753, 'Palmer/Warner Genealogy', 'http://home.maine.rr.com/spalmer/Palmer%20Warner-p', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (754, 'Gathering Leaves - Dobbs, Prothro, Spiegel, etc.', 'http://gatheringleaves.org/dobbs-o', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (755, 'Tarrant One-Name Study for Hampshire, England', 'http://benedict.isomedia.com/homes/hertz/TarrantStudy-p', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (756, 'Cooney - Fregoe Family Tree', 'http://home.twcny.rr.com/fivecooneys/roots', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (757, 'Kollros, Bannon, Ringswald, etc.', 'http://www.gatheringleaves.org/kollros-o', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (758, 'Family History of Ken Phillips', 'http://k.phillips1.users.btopenworld.com/FamHistData2-o', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (759, 'Glen Stassen Family Tree', 'http://ourwebsite.org/stassen/stassen-p', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (760, 'Dearnley/Dearnaley/Dearnaly etc. Family Trees', 'http://familytree.dearnley.com/reports/combined_data', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (761, 'Ancestors of the Kay, Star, Steel(e) & Stock families', 'http://www.stockfamily.nildram.co.uk', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (762, 'Our Ancestry', 'http://www.funks.org/ancestry/unsecure', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (763, 'Wolf Family Heritage', 'http://www.schulteis.com/omnibus/wolf', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (764, 'Mounday Family Tree', 'http://ourwebsite.org/mounday/mounday-p', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (765, 'from Pincemaille & Pincemalge to Pinchemaille & Spincemaille etc...', 'http://www.spincemaille.be', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (766, 'The Cree One-Name Study', 'http://www.cree.ie/genealogies/cree-o', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (767, 'Culpepper Family Tree', 'http://gen.culpepper.com/ss', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (768, '1930 Census - "South" Germantown, Washington County, Wisconsin, USA', 'http://www.schulteis.com/omnibus/germantown/1930_census', 1, '2001-01-31', 0, 0, 'htm', '2007-07-28', NULL), (769, 'The Haigh and Moss Families', 'http://members.aol.com/ECWilcock/Haighweb', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (770, 'Researching the Mote Surname in the UK', 'http://mote.search4ancestors.net', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (771, 'Metcalf', 'http://www.cilley.net/thecilleypages/metcalf-p', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (772, 'Hemsteger and Skrable Genealogy Home Page', 'http://hemsteger.com/HemstegerGen', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (773, 'Linley & Jim Hooper''s family history pages', 'http://www.linleyfh.com/oursecondsite-p', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (774, 'Stewart', 'http://www.cilley.net/thecilleypages/stewart-p', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (775, 'OZIGEN - Australian Genealogy', 'http://www.ozigen.com', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (776, 'Marrs, Finneman, Mullett, Stohmayer, Schrom', 'http://bis.midco.net/genes', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (777, 'BRAY FAMILIES', 'http://users.cyberone.com.au/nevmoya/bray%20families2-o', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (778, 'ALFRED MURACH', 'http://www.wmqn129v3.homepage.t-online.de', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (779, 'Howard', 'http://www.cilley.net/thecilleypages/howard-p', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (780, 'What Do You Mean, We''re Cousins?', 'http://www.keatingsearch.com/MyGenealogy', 1, '2001-01-31', 0, 0, 'htm', '2008-04-06', NULL), (781, 'Bishop Richard Meredith', 'http://winters-online.net/bishopmeredith', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (782, 'Turnbull Clan Genealogy Collection', 'http://www.turnbullclan.com/tca_genealogy/tca_all2-o', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (783, 'Founding BANDY fathers', 'http://www.bandy.co.uk/ff5-p', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (784, 'Stanfield/Fry Ancestry', 'http://ristow.us/Genealogy/Fry-Stanfield', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (785, 'Conrad - Todd - Garrison - Carman Genealogy', 'http://cjwords.net/genea/ctgc', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (786, 'Ancestry of DeWolf Melvin Stanley', 'http://stanleyhistory.net/stanley-p', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (787, 'Hawes Family Cemetery', 'http://hawesfamilysite.com', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (788, 'Munson, Underwood, Horn, Fairfield and Allied Families', 'http://brazoriaroots.com', 1, '2001-01-31', 0, 0, 'htm', '2008-01-28', NULL), (789, 'Relatives of Clarence Lee Stewart, Sr. and Marie Waldron', 'http://www.isomedia.com/homes/hertz/Stewart-o', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (790, 'Frank slægten', 'http://www.henrikfrank.dk/frank/TMG/frank7-o', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (791, 'Eide slekten', 'http://home.online.no/~arneko/Eide-p', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (792, 'Farfar og farmors aner', 'http://astavne.net/1a', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (793, 'Collins / Chalmers', 'http://www.tony-collins.pwp.blueyonder.co.uk/family', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (794, 'KINGERY KIN', 'http://bellsouthpwp2.net/f/i/fish_head', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (795, 'DE LIMBURGSE STAMMEN FREDERIX', 'http://users.skynet.be/stamfrederix', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (796, 'Ancesters of Christine and Jack', 'http://babcockancestry.com/SS2-o', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (797, 'Descendants of John Burdette', 'http://www.fridley.net/burdette-p', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (798, 'Vos(s)ler Family Genealogy', 'http://home.comcast.net/~dolantd/vossler-o', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (799, 'GRANT - KLINGER ANCESTRY HOME PAGE', 'http://home.comcast.net/~familygrant', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (800, 'Purchase: from Dorset to New York', 'http://www.nextech.de/genealogy/purchase', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (801, 'Harnwell Genealogy', 'http://www.nextech.de/genealogy/harnwell', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (802, 'Adams Family', 'http://www.goodey.me.uk/adams', 1, '2001-01-31', 0, 0, 'htm', '2007-07-17', NULL), (803, 'Wildings & Thurleys, Cantophers & McConnells', 'http://website.lineone.net/~hstjw', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (804, 'The Houk Project', 'http://www.genealogysf.com/Houk-p', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (805, 'St. Mary Catholic Cemetery - Richfield, Washington County, Wisconsin, USA', 'http://www.schulteis.com/omnibus/stmary/interments', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (806, 'Thomas Morrow Genealogy Project', 'http://www.tomorrowdigital.com/trmorrownet/gendb-p', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (807, 'Simone Kehbel', 'http://www.kefel.be/Kehbel-UK-p', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (808, 'Nigel''s Family Tree', 'http://homepage.ntlworld.com/n.rix/Rix-p', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (809, 'David M. Lawrence/Alison M. Sinclair genealogy pages', 'http://fuzzo.com/genealogy/ssite', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (810, 'Some Descendants of John Singleton', 'http://www.rootsweb.ancestry.com/~tsingle/singleto', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (811, 'Nye Family History', 'http://www.main-family.com/nye', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (812, 'Family Lines of Merton Robert Kilpatrick, Jr.', 'http://www.stonecropstudio.com/genkilp', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (813, 'The Paquet dit Lavallée Family Web Site', 'http://mysite.verizon.net/vze7w18q/Paquet%20dit%20Lavallee-o', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (814, 'Yesterday''s People', 'http://home.cogeco.ca/~rayrogers2/For%20the%20web-p', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (815, 'THURLEY SURNAME RESEARCH', 'http://members.optusnet.com.au/wthurley', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (816, 'Ancestors of Frank Lowe', 'http://home.clara.net/glowe/father', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (817, 'Levegood and Levergood Family History and Genealogy', 'http://www.levergood.privat.t-online.de/family/report', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (818, 'My Father''s Families', 'http://www3.telus.net/public/fayewest/doyle', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (819, 'Some descendants of James Broder of Co Sligo', 'http://www3.telus.net/public/fayewest/broder', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (820, 'Hansen / Gould Family History', 'http://www.dxhansen.com/SS2Hansen-o', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (821, 'Eckman Family Website', 'http://web.tampabay.rr.com/cyndiee/cyndie-o', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (822, 'Knowles & Stafford', 'http://jen.kolthammer.org/Knowles-p', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (823, 'The family of Michael Duncan Stenhouse', 'http://home.c2i.net/stenhouse/stenhouse/MICHAELSPAGES', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (824, 'Stourton, Kilmington and Mere Genealogies', 'http://arts.anu.edu.au/dayca', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (825, 'Short - Horn Family History', 'http://www.genealogy.pwp.blueyonder.co.uk', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (826, 'The Fruto Project', 'http://www.fruto.us/Fruto-p', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (827, 'John Walter Vaughn''s Selected Families', 'http://jvrx7.0catch.com', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (828, 'Robs Genealogy', 'http://www.robsgenealogy.net/reyes', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (829, 'Thomas Jefferson Babcock''s Line', 'http://www.jagtrembley.com/familytreepublic/SS/Thomas%20Jefferson%20Babcock-p', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (830, 'MyMispoche.com', 'http://www.mymispoche.com/genealogy/minimal-p', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (831, 'Cuie''s Treasures', 'http://www.cuiestreasures.com/family_gedcom-p', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (832, 'James Mattox - Tennessee', 'http://www.argphotoshop.com/Genealogy/Mattox/jmattox/jmattox-p', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (833, 'Daugherty Genealogy', 'http://www.kintracker.net/Daugherty-p', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (834, 'Mueller - Moisan - Redewill - Harris Genealogy', 'http://cjwords.net/genea/mmrh', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (835, 'Benjamin Phipps of Clay County, IN', 'http://www.argphotoshop.com/Genealogy/Phipps/B_Phipps-p', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (836, 'Descendants of William Christy', 'http://www.dalyclan.org/page2/christy/christy-o', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (837, 'Pickering, etc.', 'http://gatheringleaves.org/pickering-o', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (838, 'Le monde selon Louise', 'http://userpages.prexar.com/greensme/Second%20Site', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (839, 'Davis and Reagan Families', 'http://www.christianreunion.org/family01/davis01/Davis1-p', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (840, 'The Damon and Taber Family Connections', 'http://www.richard.damon.name/genealogy', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (841, 'Kathryn''s Ancestors', 'http://home.nvbell.net/gratop', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (842, 'My very big family', 'http://www.mine-aner.dk/SS%20engelsk/bjarneeng-o', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (843, 'Ancestors of Sheryl Denise Thomas', 'http://www.paghs.net/genealogy/thomas', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (844, 'The Raupp & Weidner Families of Buffalo Grove, Lake County, Illinois', 'http://www.weidner.org/Weidner_II/weidner_site_two-o', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (845, 'Roots and Shoots', 'http://www.danasdigs.net/roots-n-shoots-p', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (846, 'My Genealogy - The Stephen M. Curry Home Page', 'http://www.stephen.curry.net', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (847, 'Welcome to our family history site. Here, we have searchable data for the ancestors of our children . . . and those of our cousins.', 'http://donsherrill.com', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (848, 'Serendib Genealogy Pages', 'http://www.serendib.co.uk/Genealogy', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (849, 'A History and Genealogy of the von der Drössel AKA Dressel Family', 'http://www.dresselgenealogy.us', 1, '2001-01-31', 0, 0, 'htm', '2006-09-30', NULL), (850, 'Order of Merovingian Dynasty~Database provided by OCC', 'http://www.merovingiandynasty.com/data', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (851, 'genealogy.grredford.co.uk', 'http://www.grredford.co.uk/gen/Pedigree/RedfordPart-p', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (852, 'Sussex to New South Wales: - the Fairhall Family', 'http://www.fairhall.id.au/families/web', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (853, 'Borup Family', 'http://ourwebsite.org/borup/borup-p', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (854, 'Seth''s Ancestry', 'http://ourwebsite.org/seth/seth-p', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (855, 'Wiley Family History', 'http://www.main-family.com/wiley', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (856, 'Murdock Family History', 'http://members.cox.net/mhuirich', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (857, 'Descendants of William Johnson', 'http://www.fridley.net/johnsonkan-p', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (858, 'Ian Strang', 'http://homepage.ntlworld.com/hamamelis/SamEyck/srtree', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (859, 'Ancestors of Annie West', 'http://home.clara.net/glowe/mother', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (860, 'Gumper Family Genealogy', 'http://home.comcast.net/~dolantd/gumper-o', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (861, 'Ancestors of Wayne Cardoza', 'http://homepage.mac.com/kmacardoza/Genealogy/Wayne-p', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (862, 'SEARLE - One Name Study of the SEARLE Surname in Australia', 'http://www.members.optusnet.com.au/~onenamestudy/ons-p', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (863, 'Paul M Taylor, Leicester, ENGLAND', 'http://www.btinternet.com/~taylor_paul/piggins-p', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (864, 'Some Descendants of William McConnehey', 'http://www.rootsweb.ancestry.com/~tsingle/mcconhey', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (865, 'www.langaasan.no > Slekts- og lokalhistorie > Slektsregister', 'http://www.langaasan.no/base', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (866, 'Mosli', 'http://www.mosli.no', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (867, 'Gibson and Shields Families of Baltimore, MD', 'http://jsfecmd.fortunecity.com/gibsonweb-p', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (868, 'Emperor Charlemagne and Mérovée King of the Salic Franks', 'http://www.tracycrocker.com/OCC', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (869, 'Horner', 'http://www.cilley.net/thecilleypages/horner-p', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (870, 'Titcheners', 'http://www.galton.id.au/titch', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (871, 'Morfar og mormors aner', 'http://astavne.net/1b', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (872, 'Caroline & Martin Davis''s families', 'http://www.freerangephotography.co.uk/MMDg2-o', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (873, 'Arne Samskott', 'http://home.loqal.no/~magski4/slekt', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (874, 'Christensen, Erichsen, Thorsager, Villaume, Wøldike og alle de andre', 'http://www.myerichsen.net', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (875, 'Slekt i Odalen', 'http://www.villabali.org/genealogy/mother', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (876, 'Begraven op de Oude begraafplaats aan de Deugenweerd te Borculo', 'http://home.skyaccess.nl/2vrug543/deug/Deugenweerd-p', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (877, 'Lurie Family Tree', 'http://ourwebsite.org/rocky/rocky-p', 1, '2001-01-31', 0, 0, 'shtml', '1969-12-31', NULL), (878, 'Lane - Vanhooks Family Tree', 'http://ourwebsite.org/lanevanhooks/gendata-o', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (879, 'Lowe Ancestry', 'http://ourwebsite.org/lowe/lowe-p', 1, '2001-01-31', 0, 0, 'shtml', '1969-12-31', NULL), (880, 'Zanteson Ancestry', 'http://ourwebsite.org/zanteson/zanteson-p', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (881, 'Descendants of my Ancestors', 'http://www.goldwingbums.org/genealogy', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (882, 'Golden-Hubbard Ancestry', 'http://ourwebsite.org/golden/golden-p', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (883, 'Descendants of George Boothe', 'http://www.fridley.net/boothe-p', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (884, 'Family History for Alice L Benson - Szczepanik', 'http://home.earthlink.net/~7alicebenson', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (885, 'Family History for Alice L Benson - Benson', 'http://home.earthlink.net/~2alicebenson', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (886, 'Family History for Alice L Benson - Gunn', 'http://home.earthlink.net/~3alicebenson', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (887, 'Family History for Alice L Benson - Sheppard', 'http://home.earthlink.net/~4alicebenson', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (888, 'Family History for Alice L Benson - Perkins', 'http://home.earthlink.net/~5alicebenson', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (889, 'Family History for Alice L Benson - Baxter', 'http://home.earthlink.net/~8alicebenson', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (890, 'The Descendants of Joseph Tinker (1700 - ?)', 'http://uk.geocities.com/genealogy1@btinternet.com/Line0C', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (891, 'Descendants of Henry Dozier', 'http://www.fridley.net/dozier-p', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (892, 'Genealogy of the Farr and Webb Families', 'http://home.earthlink.net/~dwebb002', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (893, 'Family of Wilfred Junior Siddons', 'http://www.mindspring.com/~siddons/genealogy/dad', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (894, 'Bunkers Family Genealogy', 'http://home.comcast.net/~tdolan/bunkers-o', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (895, 'Miles Family', 'http://ourwebsite.org/miles/miles-p', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (896, 'Descendants of Jermiah Shea', 'http://www.dalyclan.org/page2/shay/shay-o', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (897, 'Descendants of William Cambridge', 'http://www.dalyclan.org/page2/cam/cam-o', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (898, 'Decendants of Dermot Daly', 'http://www.dalyclan.org/page2/daly/daly-o', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (899, 'Descendants of William Taylor', 'http://www.dalyclan.org/page2/taylor/taylor-o', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (900, 'Descendants of Lucas Spieker', 'http://www.dalyclan.org/page2/spieker/spieker-o', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (901, 'Descendants of Catherine McGinley', 'http://www.dalyclan.org/page2/mcgin/mcgin-o', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (902, 'Descendants of Robert Sproul', 'http://www.dalyclan.org/page3/sproul/sproul-o', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (903, 'Descendants of John Belding', 'http://www.dalyclan.org/page3/belding/belding-o', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (904, 'Hoefling, McGowan, Tarrant and Landon families', 'http://www.isomedia.com/homes/hertz/Hoefling-o', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (905, 'Simpson Family Genealogy', 'http://home.comcast.net/~dolantd/simpson-o', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (906, 'Nevins/Nivens/Niven of TN, VA and the Carolinas', 'http://ourwebsite.org/nevins/TNnevins/TNnevins-p', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (907, 'Ancestors of W.K. Hutchinson', 'http://users.aol.com/hutch10', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (908, 'Descendants of Joseph Bragg', 'http://www.fridley.net/bragg-p', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (909, 'Gathering Leaves - Kollros, Bannon, Ringswald, etc.', 'http://gatheringleaves.org/kollros-o', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (910, 'Tribute to Mike Haggerty', 'http://ourwebsite.org/haggerty/haggerty-p', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (911, 'Wells - Campbell Family Tree', 'http://ourwebsite.org/jane/jane-p', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (912, 'Relatives of Joyce Ethel Woods and her sisters and brother Coral, Grace and Floyd', 'http://www.isomedia.com/homes/hertz/Woods-o', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (913, 'Descendants of Robert Withrow', 'http://www.fridley.net/withrow-p', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (914, 'The Di Carlantonio Family Tree', 'http://ca.geocities.com/fdicarlantonio@rogers.com/Pennsylvania-p', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (915, 'The Descendants of Joshua Tinker (1700 - ?)', 'http://uk.geocities.com/genealogy2@btinternet.com/Line08', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (916, 'The Descendants of Robert Tynker (Tinker) ( - 1609)', 'http://uk.geocities.com/genealogy1@btinternet.com/Line0F', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (917, 'Seeking the relations and ancestors of the Marrs & Hughes Family and the Rosales & Barrett Family', 'http://home.comcast.net/~jrwhiskey/Upload-p', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (918, 'Another Loyalist Family', 'http://www3.telus.net/public/fayewest/PeterJones', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (919, 'Øverlands slekta', 'http://home.online.no/~arneko/Overland-p', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (920, 'Arild Ingebrigtsens slektside', 'http://home.online.no/~arildji/slekt/ss/arild_slekt-o', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (921, 'Richard Tonsing''s and Margaret Bernard''s Family Trees', 'http://freepages.genealogy.rootsweb.ancestry.com/~okrick', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (922, 'My Ancestry Research', 'http://freepages.genealogy.rootsweb.ancestry.com/~oakleyfamilytree', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (923, 'Descendants of Philip Case and Lydia (Soveril) Case', 'http://freepages.genealogy.rootsweb.ancestry.com/~mdtmgug/case-p', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (924, 'DE FAMILIE LANSLOTS - LANDSLOTS - LANTSLOT', 'http://freepages.genealogy.rootsweb.ancestry.com/~havaland/lanslots', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (925, 'Stenslands slekten', 'http://home.online.no/~arneko/Steen_2005-p', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (926, 'Bergen - Passaic County, NJ', 'http://afinab.tripod.com/bergen/bergen-p', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (927, 'The Herodian Dynasty', 'http://pages.prodigy.net/chuckwolfram/ancient/ss', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (928, 'Orum Family history', 'http://www.main-family.com/orum', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (929, 'Searight Family History', 'http://www.main-family.com/searight', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (930, 'Manning Family History', 'http://www.main-family.com/manning', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (931, 'Troutner Family History', 'http://www.main-family.com/troutner', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (932, 'Descendants of Alexander Beaton & Flora Cameron', 'http://homepages.rootsweb.ancestry.com/~maritime/Maritime_Mosaic/ID-0495-p', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (933, 'Research of David Drew', 'http://www.featherstone-society.com/members/gedcom/UK/david%20drew/David%20Drew-p', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (934, 'Lauren''s Genealogy - Old Website', 'http://freepages.genealogy.rootsweb.ancestry.com/~lsnell/old_site/', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (935, 'Satterwhite Family History', 'http://www.arkansas-roots.com/satterwhite', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (936, 'Robs Genealogy - Cobb Lineage', 'http://www.robsgenealogy.net/cobb', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (937, 'Robs Genealogy - Bauer Lineage', 'http://www.robsgenealogy.net/bauer', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (938, 'Robs Genealogy - Woodson Lineage', 'http://www.robsgenealogy.net/woodson', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (939, 'Roberts - Hubbard Ancestry', 'http://ourwebsite.org/marilyn/gendata-o', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (940, 'Connor, Kelley and Related Families', 'http://njsuttonfamily.org/Connor', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (941, 'Descendants of John Alderson', 'http://www.fridley.net/alderson-p', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (942, 'Descendants of William W. S. Johnson', 'http://www.fridley.net/johnsongbr-p', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (943, 'Descendants of John Poff', 'http://www.fridley.net/poff-p', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (944, 'Descendants of Joseph Scott', 'http://www.fridley.net/scott-p', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (945, 'Descendants of Wiley Tatum', 'http://www.fridley.net/tatum-p', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (946, 'Schwebach Family Genealogy', 'http://home.comcast.net/~tdolan/schwebach-o', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (947, 'H(e)inze Family Genealogy', 'http://home.comcast.net/~dolantd/hinze-o', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (948, 'Family of W. Paul Featherstone', 'http://www.featherstone-society.com/gedcom/UK/my%20ancestors-p', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (949, 'Zanzigs, Zanzichs and related names', 'http://www.isomedia.com/homes/hertz/ZanzigStudy-p', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (950, 'Johnston Family History', 'http://www.main-family.com/johnston', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (951, 'Main Family History', 'http://www.main-family.com/main', 1, '2001-01-31', 0, 0, 'htm', '2008-04-09', NULL), (952, 'David Conover''s Famous Cousins', 'http://www.conovergenealogy.com/famous-p', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (953, 'Descendants of Thomas O''Neall', 'http://homepages.rootsweb.ancestry.com/~joneall/secondsite/son_thomas-p', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (954, 'Stuart Pask''s Maternal & Direct Family', 'http://www.pask.org.uk/Maternal-p', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (955, 'Family History of Stephen Paul FORTESCUE and Jane CORBETT', 'http://www.pask.org.uk/Fortescue-p', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (956, 'Kringstad slekten', 'http://home.online.no/~arneko/Kringstad-p', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (957, 'Eidskog Slektshistorielag', 'http://www.eidskogslekt.no/kjente/kai', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (958, 'Cosentino Family Genealogy', 'http://home.comcast.net/~dolanbs/cosentino-o', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (959, 'Larsen Family Genealogy', 'http://home.comcast.net/~dolanbs/larsen-o', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (960, 'Clary Family Genealogy', 'http://home.comcast.net/~tbunkers/clary-o', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (961, 'Current Family Genealogy', 'http://home.comcast.net/~tdolan/current-o', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (962, 'Dolan Family Genealogy', 'http://home.comcast.net/~dolanbs/dolan-o', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (963, 'Ramspott Family Genealogy', 'http://home.comcast.net/~dolanbs/ramspott-o', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (964, 'Cavatario Family Genealogy', 'http://home.comcast.net/~dolanbs/cavatario-o', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (965, 'Descendants of Mary O''Neall', 'http://homepages.rootsweb.ancestry.com/~joneall/secondsite/dau_mary-p', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (966, 'The Yelton Family in the United Kingdom', 'http://members.cox.net/yelton', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (967, 'Genealogy site of one of the Gangnes families (Gangnes søndre)', 'http://home.online.no/~tron-ga/Gangnes1-p', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (968, 'What Do You Mean, We''re Cousins? - The families of John W. and Theresa I. (Shroyer) Keating', 'http://www.keatingsearch.com/PrivateGenealogy', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (969, 'Gillis Gillis & Catherine MacLellan', 'http://homepages.rootsweb.ancestry.com/~maritime/ID-1581-p', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (970, 'Descendants of Henry O''Neall', 'http://homepages.rootsweb.ancestry.com/~joneall/secondsite/son_henry-p', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (971, 'Weardale County Durham Census - 1851', 'http://www.featherstone-society.com/Indexes/england/census/1851/durham/weardale-p', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (972, 'Husher, Anderson & Related Famlies', 'http://www.genealogymort.net/Husher', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (973, 'rish Fetherston(haugh''s)', 'http://www.featherstone-society.com/Indexes/ireland/AJF/project/Irishdata-p', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (974, 'Normington and Ashby Lines', 'http://www.featherstone-society.com/gedcom/UK/mem192/normington-p', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (975, 'Patricia Balkcom', 'http://www.pbalkcom.com/public_html/Second%20Site/Monogue-p', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (976, 'The Descendants of Allan Cameron & Jane McIvor', 'http://homepages.rootsweb.ancestry.com/~maritime/Maritime_Mosaic/ID-2112-p', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (977, 'Family of Murray Miller', 'http://www.featherstone-society.com/members/gedcom/UK/murraymiller/Murrey%20Miller-p', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (978, 'Durham 1851-1861 Census', 'http://www.featherstone-society.com/Indexes/england/census/Durham%20census1851-61-p', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (979, 'The Descendants of John Boyd & Catherine MacPherson', 'http://homepages.rootsweb.ancestry.com/~maritime/ID-2948-p', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (980, 'The Descendants of John Gillis & Ann MacFarlane', 'http://homepages.rootsweb.ancestry.com/~maritime/Maritime_Mosaic/ID-0292-p', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (981, 'Larry''s Family Tree Roots', 'http://members.optusnet.com.au/~lhtyoung', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (982, 'Weardale County Durham 1861 Census', 'http://www.featherstone-society.com/Indexes/england/census/1861/Durham/Weardale%201861-p', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (983, 'The Descendants of Angus MacDonnell & Isabella Gillis', 'http://homepages.rootsweb.ancestry.com/~maritime/Maritime_Mosaic/ID-1723-p', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (984, 'Descendants of George and Elizabeth Singleton Neal', 'http://homepages.rootsweb.ancestry.com/~joneall/secondsite/son_george-p', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (985, 'Christine''s Parkhill and Cameron ancestors and relations', 'http://freepages.genealogy.rootsweb.ancestry.com/~parkhill', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (986, 'The Genealogy of the Jahn Family from Bohemia', 'http://freepages.genealogy.rootsweb.ancestry.com/~clmillslagle/jahn-p', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (987, 'The Descendants of Alexander Campbell & Lucy Kennedy', 'http://homepages.rootsweb.ancestry.com/~maritime/Maritime_Mosaic/ID-3976-p', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (988, 'The Descendants of Archibald Cameron & Mary Cameron', 'http://homepages.rootsweb.ancestry.com/~maritime/ID-3676-p', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (989, 'Harold E. Pennington', 'http://homepages.rootsweb.ancestry.com/~genepenn/Excluded%20Living%20Set-05-1-p', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (990, 'Descendants of William and Mary Frost O''Neall', 'http://homepages.rootsweb.ancestry.com/~joneall/secondsite/son_william-p', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (991, 'Morgan''s Genealogy', 'http://homepages.rootsweb.ancestry.com/~morgan/secondsite', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (992, 'Mitt Familie Tre', 'http://home.online.no/~tw-granl/secondsite/2004-12-16-p', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL), (993, 'THE DESCENDANTS OF BERTRAND CHESNAY dit LAGARENNE', 'http://freepages.genealogy.rootsweb.ancestry.com/~chesnay', 1, '2001-01-31', 0, 0, 'htm', NULL, NULL); -- -------------------------------------------------------- -- -- Stand-in structure for view `siteswithname` -- CREATE TABLE IF NOT EXISTS `siteswithname` ( `LastName` varchar(250) ,`sCnt` bigint(21) ); -- -------------------------------------------------------- -- -- Stand-in structure for view `valid_sites` -- CREATE TABLE IF NOT EXISTS `valid_sites` ( `siteID` smallint(6) unsigned ,`pageDate` date ,`siteName` varchar(250) ,`siteURL` varchar(250) ,`engineid` tinyint(4) unsigned ,`LastRefreshed` date ,`updateInProgress` tinyint(1) ,`PageSuffix` varchar(5) ); -- -------------------------------------------------------- -- -- Structure for view `concentratednames` -- DROP TABLE IF EXISTS `concentratednames`; DROP VIEW IF EXISTS `concentratednames`; CREATE ALGORITHM=UNDEFINED DEFINER=`root`@`localhost` SQL SECURITY DEFINER VIEW `dbaer_leaves`.`concentratednames` AS select `s`.`SiteID` AS `SiteID`,`s`.`SiteName` AS `SiteName`,`l`.`LastNameID` AS `LastNameID`,(`l`.`LastName` collate utf8_general_ci) AS `LastName`,`sl`.`iCount` AS `iCount` from ((`dbaer_leaves`.`sitelastnames` `sl` join `dbaer_leaves`.`lastnames` `l` on((`sl`.`LastNameID` = `l`.`LastNameID`))) join `dbaer_leaves`.`sites` `s` on((`sl`.`SiteID` = `s`.`SiteID`))) where ((`s`.`LastRefreshed` >= cast(_utf8'2008-02-15' as date)) and (`sl`.`iCount` > 49)) order by `sl`.`iCount` desc,(`l`.`LastName` collate utf8_general_ci),`s`.`SiteName`; -- -------------------------------------------------------- -- -- Structure for view `highfreqnamesbyname` -- DROP TABLE IF EXISTS `highfreqnamesbyname`; DROP VIEW IF EXISTS `highfreqnamesbyname`; CREATE ALGORITHM=UNDEFINED DEFINER=`root`@`localhost` SQL SECURITY DEFINER VIEW `dbaer_leaves`.`highfreqnamesbyname` AS select `concentratednames`.`LastName` AS `LastName`,`concentratednames`.`SiteName` AS `SiteName`,`concentratednames`.`iCount` AS `iCount` from `dbaer_leaves`.`concentratednames` order by `concentratednames`.`LastName`; -- -------------------------------------------------------- -- -- Structure for view `lastnamecounts` -- DROP TABLE IF EXISTS `lastnamecounts`; DROP VIEW IF EXISTS `lastnamecounts`; CREATE ALGORITHM=UNDEFINED DEFINER=`root`@`localhost` SQL SECURITY DEFINER VIEW `dbaer_leaves`.`lastnamecounts` AS select `l`.`LastName` AS `lastname`,`sl`.`LastNameID` AS `lastnameid`,sum(`sl`.`iCount`) AS `iCount` from (`dbaer_leaves`.`sitelastnames` `sl` join `dbaer_leaves`.`lastnames` `l` on((`sl`.`LastNameID` = `l`.`LastNameID`))) where (`sl`.`iCount` > 99) group by `sl`.`LastNameID` order by sum(`sl`.`iCount`) desc; -- -------------------------------------------------------- -- -- Structure for view `lastnamecountsbysite` -- DROP TABLE IF EXISTS `lastnamecountsbysite`; DROP VIEW IF EXISTS `lastnamecountsbysite`; CREATE ALGORITHM=UNDEFINED DEFINER=`root`@`localhost` SQL SECURITY DEFINER VIEW `dbaer_leaves`.`lastnamecountsbysite` AS select `l1`.`LastName` AS `LastName`,`sl1`.`LastNameID` AS `LastNameID`,`sl1`.`SiteID` AS `SiteID`,`sl1`.`iCount` AS `iCount`,count(`sl2`.`SiteID`) AS `nRank` from (((`dbaer_leaves`.`sitelastnames` `sl1` join `dbaer_leaves`.`lastnames` `l1` on((`sl1`.`LastNameID` = `l1`.`LastNameID`))) join `dbaer_leaves`.`lastnames` `l2` on(((`l1`.`LastName` collate utf8_general_ci) = (`l2`.`LastName` collate utf8_general_ci)))) join `dbaer_leaves`.`sitelastnames` `sl2` on(((`l2`.`LastNameID` = `sl2`.`LastNameID`) and ((`sl1`.`iCount` < `sl2`.`iCount`) or ((`sl1`.`iCount` = `sl2`.`iCount`) and (`sl1`.`SiteID` >= `sl2`.`SiteID`)))))) where ((`sl1`.`iCount` > 99) and (`sl2`.`iCount` > 99)) group by `sl1`.`SiteID`,`sl1`.`LastNameID` order by `l1`.`LastName`,count(`sl2`.`SiteID`); -- -------------------------------------------------------- -- -- Structure for view `lastnames_at_site` -- DROP TABLE IF EXISTS `lastnames_at_site`; DROP VIEW IF EXISTS `lastnames_at_site`; CREATE ALGORITHM=UNDEFINED DEFINER=`root`@`localhost` SQL SECURITY DEFINER VIEW `dbaer_leaves`.`lastnames_at_site` AS select `sl`.`SiteID` AS `siteID`,`l`.`LastName` AS `Lastname`,`sl`.`LastNameHref` AS `hRef` from (`dbaer_leaves`.`sitelastnames` `sl` join `dbaer_leaves`.`lastnames` `l` on((`sl`.`LastNameID` = `l`.`LastNameID`))) where (`sl`.`SiteID` = 49) order by (`l`.`LastName` collate utf8_general_ci); -- -------------------------------------------------------- -- -- Structure for view `namecountsbysite` -- DROP TABLE IF EXISTS `namecountsbysite`; DROP VIEW IF EXISTS `namecountsbysite`; CREATE ALGORITHM=UNDEFINED DEFINER=`root`@`localhost` SQL SECURITY DEFINER VIEW `dbaer_leaves`.`namecountsbysite` AS select `s`.`SiteID` AS `SiteID`,`s`.`SiteName` AS `SiteName`,count(`sl`.`LastNameID`) AS `nameCount`,sum(`sl`.`iCount`) AS `indiCount` from (`dbaer_leaves`.`sites` `s` left join `dbaer_leaves`.`sitelastnames` `sl` on((`sl`.`SiteID` = `s`.`SiteID`))) group by `s`.`SiteID` order by count(`sl`.`LastNameID`) desc; -- -------------------------------------------------------- -- -- Structure for view `peer_research` -- DROP TABLE IF EXISTS `peer_research`; DROP VIEW IF EXISTS `peer_research`; CREATE ALGORITHM=UNDEFINED DEFINER=`root`@`localhost` SQL SECURITY DEFINER VIEW `dbaer_leaves`.`peer_research` AS select `l`.`LastNameID` AS `LastNameID`,(`l`.`LastName` collate utf8_general_ci) AS `LastName`,`c`.`SiteID` AS `SiteID`,`c`.`iCount` AS `iCount`,concat(_utf8'(',`c`.`SiteID`,_utf8') ',`c`.`iCount`) AS `scDisp`,`c`.`nRank` AS `nRank` from (`dbaer_leaves`.`lastnamecountsbysite` `c` join `dbaer_leaves`.`lastnames` `l` on((`c`.`LastNameID` = `l`.`LastNameID`))); -- -------------------------------------------------------- -- -- Structure for view `same_people` -- DROP TABLE IF EXISTS `same_people`; DROP VIEW IF EXISTS `same_people`; CREATE ALGORITHM=UNDEFINED DEFINER=`root`@`localhost` SQL SECURITY DEFINER VIEW `dbaer_leaves`.`same_people` AS select `s`.`SiteName` AS `site`,`l`.`LastName` AS `lastname`,`f`.`FirstName` AS `firstname`,`i`.`IndiHref` AS `hRef`,`i2`.`IndiHref` AS `hRef2`,`i`.`bYear` AS `bYear`,cast((`i2`.`bYear` - `i`.`bYear`) as signed) AS `bDif`,`i`.`dYear` AS `dYear`,cast((`i2`.`dYear` - `i`.`dYear`) as signed) AS `dDif`,`s2`.`SiteName` AS `site2` from (((((((`dbaer_leaves`.`individuals` `i` join `dbaer_leaves`.`fullnames` `fn` on((`i`.`IndiID` = `fn`.`IndiID`))) join `dbaer_leaves`.`fullnames` `fn2` on(((`fn`.`LastnameID` = `fn2`.`LastnameID`) and (`fn`.`FirstnameID` = `fn2`.`FirstnameID`)))) join `dbaer_leaves`.`individuals` `i2` on((`fn2`.`IndiID` = `i2`.`IndiID`))) join `dbaer_leaves`.`firstnames` `f` on((`fn`.`FirstnameID` = `f`.`FirstNameID`))) join `dbaer_leaves`.`lastnames` `l` on((`fn`.`LastnameID` = `l`.`LastNameID`))) join `dbaer_leaves`.`sites` `s` on((`i`.`SiteID` = `s`.`SiteID`))) join `dbaer_leaves`.`sites` `s2` on((`i2`.`SiteID` = `s2`.`SiteID`))) where (((`l`.`LastName` collate utf8_general_ci) like _utf8'b%') and (`i`.`bYear` > 1599) and (`i`.`SiteID` <> `i2`.`SiteID`) and (cast((`i`.`dYear` - `i`.`bYear`) as signed) > 9) and (abs(cast((`i`.`bYear` - `i2`.`bYear`) as signed)) < 3) and (abs(cast((`i`.`dYear` - `i2`.`dYear`) as signed)) < 3)) order by if((`i`.`SiteID` = `i2`.`SiteID`),1,0),`s`.`SiteName`,(`l`.`LastName` collate utf8_general_ci),(`f`.`FirstName` collate utf8_general_ci),`i`.`bYear` desc,`i`.`dYear` desc; -- -------------------------------------------------------- -- -- Structure for view `same_people_one_site` -- DROP TABLE IF EXISTS `same_people_one_site`; DROP VIEW IF EXISTS `same_people_one_site`; CREATE ALGORITHM=UNDEFINED DEFINER=`root`@`localhost` SQL SECURITY DEFINER VIEW `dbaer_leaves`.`same_people_one_site` AS select `s`.`SiteName` AS `site`,`l`.`LastName` AS `lastname`,`f`.`FirstName` AS `firstname`,`i`.`IndiHref` AS `hRef`,`i2`.`IndiHref` AS `hRef2`,`i`.`bYear` AS `bYear`,cast((`i2`.`bYear` - `i`.`bYear`) as signed) AS `bDif`,`i`.`dYear` AS `dYear`,cast((`i2`.`dYear` - `i`.`dYear`) as signed) AS `dDif`,`s2`.`SiteName` AS `site2` from (((((((`dbaer_leaves`.`individuals` `i` join `dbaer_leaves`.`fullnames` `fn` on((`i`.`IndiID` = `fn`.`IndiID`))) join `dbaer_leaves`.`fullnames` `fn2` on(((`fn`.`LastnameID` = `fn2`.`LastnameID`) and (`fn`.`FirstnameID` = `fn2`.`FirstnameID`)))) join `dbaer_leaves`.`individuals` `i2` on((`fn2`.`IndiID` = `i2`.`IndiID`))) join `dbaer_leaves`.`firstnames` `f` on((`fn`.`FirstnameID` = `f`.`FirstNameID`))) join `dbaer_leaves`.`lastnames` `l` on((`fn`.`LastnameID` = `l`.`LastNameID`))) join `dbaer_leaves`.`sites` `s` on((`i`.`SiteID` = `s`.`SiteID`))) join `dbaer_leaves`.`sites` `s2` on((`i2`.`SiteID` = `s2`.`SiteID`))) where ((`i`.`SiteID` = 203) and ((`l`.`LastName` collate utf8_general_ci) like _utf8'%') and (`i`.`bYear` > 1599) and (`i`.`SiteID` <> `i2`.`SiteID`) and (cast((`i`.`dYear` - `i`.`bYear`) as signed) > 9) and (abs(cast((`i`.`bYear` - `i2`.`bYear`) as signed)) < 3) and (abs(cast((`i`.`dYear` - `i2`.`dYear`) as signed)) < 3)) order by if((`i`.`SiteID` = `i2`.`SiteID`),1,0),`s`.`SiteName`,(`l`.`LastName` collate utf8_general_ci),(`f`.`FirstName` collate utf8_general_ci),`i`.`bYear` desc,`i`.`dYear` desc; -- -------------------------------------------------------- -- -- Structure for view `siteswithname` -- DROP TABLE IF EXISTS `siteswithname`; DROP VIEW IF EXISTS `siteswithname`; CREATE ALGORITHM=UNDEFINED DEFINER=`root`@`localhost` SQL SECURITY DEFINER VIEW `dbaer_leaves`.`siteswithname` AS select `l`.`LastName` AS `LastName`,count(`sl`.`SiteID`) AS `sCnt` from (`dbaer_leaves`.`sitelastnames` `sl` join `dbaer_leaves`.`lastnames` `l` on((`sl`.`LastNameID` = `l`.`LastNameID`))) group by `sl`.`LastNameID` having (`sCnt` >= 20) order by count(`sl`.`SiteID`) desc,(`l`.`LastName` collate utf8_general_ci); -- -------------------------------------------------------- -- -- Structure for view `valid_sites` -- DROP TABLE IF EXISTS `valid_sites`; DROP VIEW IF EXISTS `valid_sites`; CREATE ALGORITHM=UNDEFINED DEFINER=`root`@`localhost` SQL SECURITY DEFINER VIEW `dbaer_leaves`.`valid_sites` AS select `dbaer_leaves`.`sites`.`SiteID` AS `siteID`,`dbaer_leaves`.`sites`.`PageDate` AS `pageDate`,`dbaer_leaves`.`sites`.`SiteName` AS `siteName`,`dbaer_leaves`.`sites`.`SiteURL` AS `siteURL`,`dbaer_leaves`.`sites`.`EngineID` AS `engineid`,`dbaer_leaves`.`sites`.`LastRefreshed` AS `LastRefreshed`,`dbaer_leaves`.`sites`.`UpdateInProgress` AS `updateInProgress`,`dbaer_leaves`.`sites`.`PageSuffix` AS `PageSuffix` from `dbaer_leaves`.`sites` where ((`dbaer_leaves`.`sites`.`EngineID` = 1) and (`dbaer_leaves`.`sites`.`UpdateInProgress` < 2)) order by (`dbaer_leaves`.`sites`.`SiteName` collate utf8_general_ci); -- -- Constraints for dumped tables -- -- -- Constraints for table `fullnames` -- ALTER TABLE `fullnames` ADD CONSTRAINT `fullnames_ibfk_1` FOREIGN KEY (`IndiID`) REFERENCES `individuals` (`IndiID`), ADD CONSTRAINT `fullnames_ibfk_2` FOREIGN KEY (`LastnameID`) REFERENCES `lastnames` (`LastNameID`), ADD CONSTRAINT `fullnames_ibfk_3` FOREIGN KEY (`FirstnameID`) REFERENCES `firstnames` (`FirstNameID`); -- -- Constraints for table `individuals` -- ALTER TABLE `individuals` ADD CONSTRAINT `individuals_ibfk_1` FOREIGN KEY (`SiteID`) REFERENCES `sites` (`SiteID`); -- -- Constraints for table `sitelastnames` -- ALTER TABLE `sitelastnames` ADD CONSTRAINT `sitelastnames_ibfk_1` FOREIGN KEY (`SiteID`) REFERENCES `sites` (`SiteID`), ADD CONSTRAINT `sitelastnames_ibfk_2` FOREIGN KEY (`LastNameID`) REFERENCES `lastnames` (`LastNameID`); -- -- Constraints for table `sites` -- ALTER TABLE `sites` ADD CONSTRAINT `sites_ibfk_1` FOREIGN KEY (`EngineID`) REFERENCES `engines` (`EngineID`);