-- MySQL dump 10.9
--
-- Host: localhost    Database: uk2thelodgecouk27435_1
-- ------------------------------------------------------
-- Server version	4.1.20

/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8 */;
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;

--
-- Table structure for table `tng_addresses`
--

DROP TABLE IF EXISTS `tng_addresses`;
CREATE TABLE `tng_addresses` (
  `addressID` int(11) NOT NULL auto_increment,
  `address1` varchar(64) NOT NULL default '',
  `address2` varchar(64) NOT NULL default '',
  `city` varchar(64) NOT NULL default '',
  `state` varchar(64) NOT NULL default '',
  `zip` varchar(10) NOT NULL default '',
  `country` varchar(64) NOT NULL default '',
  `www` varchar(100) NOT NULL default '',
  `email` varchar(100) NOT NULL default '',
  `phone` varchar(30) NOT NULL default '',
  `gedcom` varchar(20) NOT NULL default '',
  PRIMARY KEY  (`addressID`),
  KEY `address` (`gedcom`,`country`,`state`,`city`,`address1`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;

--
-- Dumping data for table `tng_addresses`
--


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

--
-- Table structure for table `tng_albumlinks`
--

DROP TABLE IF EXISTS `tng_albumlinks`;
CREATE TABLE `tng_albumlinks` (
  `albumlinkID` int(11) NOT NULL auto_increment,
  `albumID` int(11) NOT NULL default '0',
  `mediaID` int(11) NOT NULL default '0',
  `ordernum` int(11) default NULL,
  `defphoto` char(1) NOT NULL default '',
  PRIMARY KEY  (`albumlinkID`),
  KEY `albumID` (`albumID`,`ordernum`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;

--
-- Dumping data for table `tng_albumlinks`
--


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

--
-- Table structure for table `tng_albumplinks`
--

DROP TABLE IF EXISTS `tng_albumplinks`;
CREATE TABLE `tng_albumplinks` (
  `alinkID` int(11) NOT NULL auto_increment,
  `gedcom` varchar(20) NOT NULL default '',
  `linktype` char(1) NOT NULL default '',
  `entityID` varchar(100) NOT NULL default '',
  `eventID` varchar(10) NOT NULL default '',
  `albumID` int(11) NOT NULL default '0',
  `ordernum` float NOT NULL default '0',
  PRIMARY KEY  (`alinkID`),
  UNIQUE KEY `alinkID` (`gedcom`,`entityID`,`albumID`),
  KEY `entityID` (`gedcom`,`entityID`,`ordernum`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;

--
-- Dumping data for table `tng_albumplinks`
--


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

--
-- Table structure for table `tng_albums`
--

DROP TABLE IF EXISTS `tng_albums`;
CREATE TABLE `tng_albums` (
  `albumID` int(11) NOT NULL auto_increment,
  `albumname` varchar(50) NOT NULL default '',
  `description` text,
  `keywords` text,
  PRIMARY KEY  (`albumID`),
  KEY `albumname` (`albumname`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;

--
-- Dumping data for table `tng_albums`
--


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

--
-- Table structure for table `tng_associations`
--

DROP TABLE IF EXISTS `tng_associations`;
CREATE TABLE `tng_associations` (
  `assocID` int(11) NOT NULL auto_increment,
  `gedcom` varchar(20) NOT NULL default '',
  `personID` varchar(22) NOT NULL default '',
  `passocID` varchar(22) NOT NULL default '',
  `relationship` varchar(25) NOT NULL default '',
  PRIMARY KEY  (`assocID`),
  KEY `assoc` (`gedcom`,`personID`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;

--
-- Dumping data for table `tng_associations`
--


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

--
-- Table structure for table `tng_branches`
--

DROP TABLE IF EXISTS `tng_branches`;
CREATE TABLE `tng_branches` (
  `branch` varchar(20) NOT NULL default '',
  `gedcom` varchar(20) NOT NULL default '',
  `description` varchar(128) NOT NULL default '',
  PRIMARY KEY  (`branch`),
  KEY `description` (`gedcom`,`description`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;

--
-- Dumping data for table `tng_branches`
--


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

--
-- Table structure for table `tng_branchlinks`
--

DROP TABLE IF EXISTS `tng_branchlinks`;
CREATE TABLE `tng_branchlinks` (
  `ID` int(11) NOT NULL auto_increment,
  `branch` varchar(20) NOT NULL default '',
  `gedcom` varchar(20) NOT NULL default '',
  `persfamID` varchar(22) NOT NULL default '',
  PRIMARY KEY  (`ID`),
  UNIQUE KEY `branch` (`gedcom`,`branch`,`persfamID`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;

--
-- Dumping data for table `tng_branchlinks`
--


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

--
-- Table structure for table `tng_cemeteries`
--

DROP TABLE IF EXISTS `tng_cemeteries`;
CREATE TABLE `tng_cemeteries` (
  `cemeteryID` int(11) NOT NULL auto_increment,
  `cemname` varchar(64) NOT NULL default '',
  `maplink` varchar(64) default NULL,
  `city` varchar(64) default NULL,
  `county` varchar(64) default NULL,
  `state` varchar(64) default NULL,
  `country` varchar(64) default NULL,
  `longitude` varchar(20) default NULL,
  `latitude` varchar(20) default NULL,
  `zoom` tinyint(4) default NULL,
  `notes` text,
  PRIMARY KEY  (`cemeteryID`),
  KEY `cemname` (`cemname`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;

--
-- Dumping data for table `tng_cemeteries`
--


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

--
-- Table structure for table `tng_children`
--

DROP TABLE IF EXISTS `tng_children`;
CREATE TABLE `tng_children` (
  `ID` int(11) NOT NULL auto_increment,
  `gedcom` varchar(20) NOT NULL default '',
  `familyID` varchar(22) NOT NULL default '',
  `personID` varchar(22) NOT NULL default '',
  `relationship` varchar(20) NOT NULL default '',
  `sealdate` varchar(50) NOT NULL default '',
  `sealdatetr` date NOT NULL default '0000-00-00',
  `sealplace` text NOT NULL,
  `haskids` tinyint(4) NOT NULL default '0',
  `ordernum` smallint(6) NOT NULL default '0',
  `parentorder` tinyint(4) NOT NULL default '0',
  PRIMARY KEY  (`ID`),
  UNIQUE KEY `familyID` (`gedcom`,`familyID`,`personID`),
  KEY `personID` (`gedcom`,`personID`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;

--
-- Dumping data for table `tng_children`
--


/*!40000 ALTER TABLE `tng_children` DISABLE KEYS */;
LOCK TABLES `tng_children` WRITE;
INSERT INTO `tng_children` VALUES (1,'1','F002','I0001','','','0000-00-00','',1,1,1),(2,'1','F005','I0003','','','0000-00-00','',1,1,1),(3,'1','F004','I0004','','','0000-00-00','',0,1,1),(4,'1','F006','I0006','','','0000-00-00','',0,1,1),(5,'1','F008','I0007','','','0000-00-00','',1,1,1),(6,'1','F006','I0008','','','0000-00-00','',0,2,1),(7,'1','F010','I0009','','','0000-00-00','',0,1,1),(8,'1','F011','I0010','','','0000-00-00','',0,1,1),(9,'1','F013','I0011','','','0000-00-00','',1,11,1),(10,'1','F012','I0012','','','0000-00-00','',1,2,1),(11,'1','F012','I0013','','','0000-00-00','',1,5,1),(12,'1','F012','I0014','','','0000-00-00','',1,6,1),(13,'1','F012','I0015','','','0000-00-00','',1,7,1),(14,'1','F012','I0016','','','0000-00-00','',1,9,1),(15,'1','F012','I0017','','','0000-00-00','',1,10,1),(16,'1','F012','I0018','','','0000-00-00','',0,11,1),(17,'1','F023','I0019','','','0000-00-00','',0,2,1),(18,'1','F023','I0020','','','0000-00-00','',1,1,1),(19,'1','F023','I0021','','','0000-00-00','',0,3,1),(20,'1','F027','I0022','','','0000-00-00','',1,2,1),(21,'1','F025','I0023','','','0000-00-00','',1,1,1),(22,'1','F025','I0024','','','0000-00-00','',1,2,1),(23,'1','F031','I0025','','','0000-00-00','',1,2,1),(24,'1','F031','I0026','','','0000-00-00','',0,1,1),(25,'1','F034','I0028','','','0000-00-00','',1,1,1),(26,'1','F035','I0030','','','0000-00-00','',1,1,1),(27,'1','F036','I0031','','','0000-00-00','',1,2,1),(28,'1','F035','I0033','','','0000-00-00','',0,2,1),(29,'1','F037','I0037','','','0000-00-00','',0,2,1),(30,'1','F037','I0038','','','0000-00-00','',0,1,1),(31,'1','F037','I0039','','','0000-00-00','',0,3,1),(32,'1','F040','I0040','','','0000-00-00','',0,1,1),(33,'1','F012','I0041','','','0000-00-00','',1,1,1),(34,'1','F012','I0042','','','0000-00-00','',1,3,1),(35,'1','F008','I0046','','','0000-00-00','',1,4,1),(36,'1','F045','I0051','','','0000-00-00','',0,1,1),(37,'1','F047','I0052','','','0000-00-00','',0,2,1),(38,'1','F027','I0053','','','0000-00-00','',1,1,1),(39,'1','F045','I0056','','','0000-00-00','',1,2,1),(40,'1','F048','I0057','','','0000-00-00','',1,2,1),(41,'1','F048','I0058','','','0000-00-00','',1,1,1),(42,'1','F052','I0059','','','0000-00-00','',0,3,1),(43,'1','F054','I0060','','','0000-00-00','',1,2,1),(44,'1','F056','I0061','','','0000-00-00','',1,1,1),(45,'1','F045','I0062','','','0000-00-00','',1,3,1),(46,'1','F055','I0063','','','0000-00-00','',1,1,1),(47,'1','F055','I0064','','','0000-00-00','',0,2,1),(48,'1','F055','I0065','','','0000-00-00','',0,3,1),(49,'1','F052','I0067','','','0000-00-00','',0,1,1),(50,'1','F059','I0068','','','0000-00-00','',0,1,1),(51,'1','F061','I0069','','','0000-00-00','',1,6,1),(52,'1','F001','I0070','','','0000-00-00','',1,2,1),(53,'1','F063','I0071','','','0000-00-00','',1,4,1),(54,'1','F060','I0072','','','0000-00-00','',1,1,1),(55,'1','F060','I0073','','','0000-00-00','',1,2,1),(56,'1','F060','I0074','','','0000-00-00','',1,3,1),(57,'1','F060','I0075','','','0000-00-00','',0,4,1),(58,'1','F060','I0076','','','0000-00-00','',1,5,1),(59,'1','F060','I0077','','','0000-00-00','',1,7,1),(60,'1','F060','I0078','','','0000-00-00','',1,8,1),(61,'1','F012','I0079','','','0000-00-00','',1,8,1),(62,'1','F003','I0080','','','0000-00-00','',1,2,1),(63,'1','F062','I0081','','','0000-00-00','',0,1,1),(64,'1','F061','I0082','','','0000-00-00','',0,1,1),(65,'1','F061','I0083','','','0000-00-00','',0,2,1),(66,'1','F061','I0084','','','0000-00-00','',1,3,1),(67,'1','F008','I0085','','','0000-00-00','',0,7,1),(68,'1','F061','I0086','','','0000-00-00','',1,4,1),(69,'1','F061','I0087','','','0000-00-00','',1,7,1),(70,'1','F060','I0088','','','0000-00-00','',1,6,1),(71,'1','F072','I0089','','','0000-00-00','',1,3,1),(72,'1','F073','I0091','','','0000-00-00','',1,1,1),(73,'1','F074','I0094','','','0000-00-00','',1,2,1),(74,'1','F075','I0095','','','0000-00-00','',1,1,1),(75,'1','F043','I0096','','','0000-00-00','',1,1,1),(76,'1','F066','I0097','','','0000-00-00','',1,2,1),(77,'1','F066','I0098','','','0000-00-00','',1,1,1),(78,'1','F077','I0099','','','0000-00-00','',1,1,1),(79,'1','F060','I0100','','','0000-00-00','',1,9,1),(80,'1','F070','I0101','','','0000-00-00','',1,1,1),(81,'1','F078','I0103','','','0000-00-00','',1,1,1),(82,'1','F071','I0104','','','0000-00-00','',1,2,1),(83,'1','F080','I0106','','','0000-00-00','',1,4,1),(84,'1','F070','I0107','','','0000-00-00','',0,3,1),(85,'1','F061','I0108','','','0000-00-00','',1,10,1),(86,'1','F061','I0109','','','0000-00-00','',1,11,1),(87,'1','F052','I0114','','','0000-00-00','',0,2,1),(88,'1','F083','I0115','','','0000-00-00','',0,1,1),(89,'1','F084','I0119','','','0000-00-00','',1,3,1),(90,'1','F069','I0120','','','0000-00-00','',0,2,1),(91,'1','F019','I0121','','','0000-00-00','',1,4,1),(92,'1','F012','I0123','','','0000-00-00','',1,4,1),(93,'1','F087','I0126','','','0000-00-00','',1,1,1),(94,'1','F018','I0129','','','0000-00-00','',1,2,1),(95,'1','F061','I0130','','','0000-00-00','',0,8,1),(96,'1','F061','I0131','','','0000-00-00','',0,9,1),(97,'1','F089','I0133','','','0000-00-00','',1,7,1),(98,'1','F014','I0134','','','0000-00-00','',1,4,1),(99,'1','F014','I0135','','','0000-00-00','',0,3,1),(100,'1','F014','I0136','','','0000-00-00','',0,1,1),(101,'1','F092','I0137','','','0000-00-00','',1,8,1),(102,'1','F014','I0138','','','0000-00-00','',1,2,1),(103,'1','F061','I0139','','','0000-00-00','',0,12,1),(104,'1','F094','I0140','','','0000-00-00','',0,1,1),(105,'1','F019','I0142','','','0000-00-00','',1,2,1),(106,'1','F053','I0143','','','0000-00-00','',0,1,1),(107,'1','F019','I0146','','','0000-00-00','',1,3,1),(108,'1','F082','I0148','','','0000-00-00','',1,1,1),(109,'1','F082','I0149','','','0000-00-00','',1,2,1),(110,'1','F082','I0150','','','0000-00-00','',1,3,1),(111,'1','F098','I0152','','','0000-00-00','',1,1,1),(112,'1','F098','I0153','','','0000-00-00','',0,2,1),(113,'1','F099','I0155','','','0000-00-00','',1,1,1),(114,'1','F100','I0158','','','0000-00-00','',1,1,1),(115,'1','F100','I0159','','','0000-00-00','',1,2,1),(116,'1','F105','I0162','','','0000-00-00','',1,3,1),(117,'1','F101','I0163','','','0000-00-00','',1,3,1),(118,'1','F101','I0164','','','0000-00-00','',1,2,1),(119,'1','F101','I0165','','','0000-00-00','',0,1,1),(120,'1','F101','I0166','','','0000-00-00','',1,4,1),(121,'1','F102','I0167','','','0000-00-00','',0,1,1),(122,'1','F103','I0168','','','0000-00-00','',0,1,1),(123,'1','F103','I0169','','','0000-00-00','',0,2,1),(124,'1','F103','I0170','','','0000-00-00','',0,3,1),(125,'1','F103','I0171','','','0000-00-00','',0,4,1),(126,'1','F104','I0172','','','0000-00-00','',0,1,1),(127,'1','F104','I0173','','','0000-00-00','',0,2,1),(128,'1','F104','I0174','','','0000-00-00','',0,3,1),(129,'1','F014','I0175','','','0000-00-00','',1,5,1),(130,'1','F014','I0176','','','0000-00-00','',0,6,1),(131,'1','F014','I0177','','','0000-00-00','',0,7,1),(132,'1','F014','I0178','','','0000-00-00','',0,8,1),(133,'1','F014','I0179','','','0000-00-00','',0,9,1),(134,'1','F113','I0180','','','0000-00-00','',1,3,1),(135,'1','F042','I0181','','','0000-00-00','',1,1,1),(136,'1','F042','I0182','','','0000-00-00','',1,2,1),(137,'1','F042','I0183','','','0000-00-00','',1,3,1),(138,'1','F042','I0184','','','0000-00-00','',1,4,1),(139,'1','F042','I0185','','','0000-00-00','',0,5,1),(140,'1','F042','I0186','','','0000-00-00','',0,6,1),(141,'1','F042','I0187','','','0000-00-00','',1,7,1),(142,'1','F086','I0189','','','0000-00-00','',0,1,1),(143,'1','F086','I0190','','','0000-00-00','',0,2,1),(144,'1','F086','I0191','','','0000-00-00','',0,3,1),(145,'1','F086','I0192','','','0000-00-00','',0,4,1),(146,'1','F086','I0193','','','0000-00-00','',0,5,1),(147,'1','F086','I0194','','','0000-00-00','',0,6,1),(148,'1','F086','I0195','','','0000-00-00','',0,7,1),(149,'1','F015','I0196','','','0000-00-00','',1,1,1),(150,'1','F015','I0197','','','0000-00-00','',1,2,1),(151,'1','F015','I0198','','','0000-00-00','',1,3,1),(152,'1','F015','I0199','','','0000-00-00','',1,4,1),(153,'1','F015','I0200','','','0000-00-00','',1,5,1),(154,'1','F015','I0201','','','0000-00-00','',1,6,1),(155,'1','F015','I0202','','','0000-00-00','',1,7,1),(156,'1','F015','I0203','','','0000-00-00','',1,8,1),(157,'1','F126','I0204','','','0000-00-00','',1,2,1),(158,'1','F016','I0205','','','0000-00-00','',1,1,1),(159,'1','F016','I0206','','','0000-00-00','',1,2,1),(160,'1','F016','I0207','','','0000-00-00','',0,3,1),(161,'1','F016','I0208','','','0000-00-00','',1,4,1),(162,'1','F016','I0209','','','0000-00-00','',1,5,1),(163,'1','F016','I0210','','','0000-00-00','',1,6,1),(164,'1','F016','I0211','','','0000-00-00','',1,7,1),(165,'1','F016','I0212','','','0000-00-00','',1,8,1),(166,'1','F016','I0213','','','0000-00-00','',0,9,1),(167,'1','F136','I0214','','','0000-00-00','',1,1,1),(168,'1','F017','I0215','','','0000-00-00','',0,1,1),(169,'1','F017','I0216','','','0000-00-00','',0,4,1),(170,'1','F017','I0217','','','0000-00-00','',0,5,1),(171,'1','F017','I0218','','','0000-00-00','',0,6,1),(172,'1','F017','I0219','','','0000-00-00','',0,7,1),(173,'1','F017','I0220','','','0000-00-00','',1,9,1),(174,'1','F017','I0221','','','0000-00-00','',0,10,1),(175,'1','F017','I0222','','','0000-00-00','',0,11,1),(176,'1','F017','I0223','','','0000-00-00','',1,13,1),(177,'1','F061','I0224','','','0000-00-00','',0,5,1),(178,'1','F018','I0225','','','0000-00-00','',1,1,1),(179,'1','F019','I0226','','','0000-00-00','',1,5,1),(180,'1','F019','I0227','','','0000-00-00','',1,6,1),(181,'1','F144','I0230','','','0000-00-00','',1,1,1),(182,'1','F145','I0232','','','0000-00-00','',1,1,1),(183,'1','F003','I0236','','','0000-00-00','',1,1,1),(184,'1','F146','I0238','','','0000-00-00','',1,1,1),(185,'1','F147','I0239','','','0000-00-00','',1,1,1),(186,'1','F148','I0240','','','0000-00-00','',1,1,1),(187,'1','F149','I0241','','','0000-00-00','',1,1,1),(188,'1','F150','I0242','','','0000-00-00','',1,1,1),(189,'1','F151','I0244','','','0000-00-00','',1,1,1),(190,'1','F152','I0245','','','0000-00-00','',1,1,1),(191,'1','F153','I0247','','','0000-00-00','',1,1,1),(192,'1','F154','I0249','','','0000-00-00','',1,1,1),(193,'1','F155','I0250','','','0000-00-00','',1,1,1),(194,'1','F156','I0251','','','0000-00-00','',1,1,1),(195,'1','F157','I0252','','','0000-00-00','',1,1,1),(196,'1','F158','I0253','','','0000-00-00','',0,1,1),(197,'1','F159','I0254','','','0000-00-00','',1,1,1),(198,'1','F081','I0255','','','0000-00-00','',0,1,1),(199,'1','F081','I0256','','','0000-00-00','',0,2,1),(200,'1','F081','I0257','','','0000-00-00','',0,3,1),(201,'1','F162','I0260','','','0000-00-00','',1,1,1),(202,'1','F163','I0261','','','0000-00-00','',1,1,1),(203,'1','F059','I0262','','','0000-00-00','',0,2,1),(204,'1','F059','I0263','','','0000-00-00','',1,3,1),(205,'1','F059','I0264','','','0000-00-00','',0,4,1),(206,'1','F059','I0265','','','0000-00-00','',0,5,1),(207,'1','F028','I0268','','','0000-00-00','',0,1,1),(208,'1','F028','I0269','','','0000-00-00','',0,2,1),(209,'1','F029','I0270','','','0000-00-00','',0,1,1),(210,'1','F029','I0271','','','0000-00-00','',0,2,1),(211,'1','F047','I0273','','','0000-00-00','',0,1,1),(212,'1','F051','I0275','','','0000-00-00','',0,1,1),(213,'1','F019','I0277','','','0000-00-00','',0,1,1),(214,'1','F132','I0278','','','0000-00-00','',1,4,1),(215,'1','F132','I0279','','','0000-00-00','',1,1,1),(216,'1','F125','I0280','','','0000-00-00','',0,2,1),(217,'1','F132','I0281','','','0000-00-00','',1,3,1),(218,'1','F132','I0282','','','0000-00-00','',0,2,1),(219,'1','F128','I0283','','','0000-00-00','',0,1,1),(220,'1','F128','I0284','','','0000-00-00','',0,3,1),(221,'1','F128','I0285','','','0000-00-00','',1,2,1),(222,'1','F172','I0286','','','0000-00-00','',1,1,1),(223,'1','F171','I0287','','','0000-00-00','',1,1,1),(224,'1','F097','I0288','','','0000-00-00','',1,7,1),(225,'1','F097','I0289','','','0000-00-00','',1,8,1),(226,'1','F097','I0290','','','0000-00-00','',1,5,1),(227,'1','F097','I0291','','','0000-00-00','',1,3,1),(228,'1','F097','I0292','','','0000-00-00','',1,4,1),(229,'1','F085','I0293','','','0000-00-00','',1,2,1),(230,'1','F085','I0294','','','0000-00-00','',0,4,1),(231,'1','F085','I0295','','','0000-00-00','',1,3,1),(232,'1','F118','I0296','','','0000-00-00','',0,1,1),(233,'1','F118','I0297','','','0000-00-00','',0,2,1),(234,'1','F118','I0298','','','0000-00-00','',0,4,1),(235,'1','F118','I0299','','','0000-00-00','',0,3,1),(236,'1','F095','I0300','','','0000-00-00','',1,1,1),(237,'1','F133','I0301','','','0000-00-00','',1,2,1),(238,'1','F133','I0302','','','0000-00-00','',1,1,1),(239,'1','F188','I0305','','','0000-00-00','',1,1,1),(240,'1','F185','I0306','','','0000-00-00','',1,1,1),(241,'1','F185','I0307','','','0000-00-00','',1,2,1),(242,'1','F185','I0308','','','0000-00-00','',1,3,1),(243,'1','F189','I0312','','','0000-00-00','',1,1,1),(244,'1','F189','I0313','','','0000-00-00','',1,2,1),(245,'1','F189','I0314','','','0000-00-00','',1,3,1),(246,'1','F190','I0315','','','0000-00-00','',1,1,1),(247,'1','F190','I0316','','','0000-00-00','',1,2,1),(248,'1','F191','I0318','','','0000-00-00','',1,1,1),(249,'1','F191','I0319','','','0000-00-00','',1,2,1),(250,'1','F192','I0321','','','0000-00-00','',0,1,1),(251,'1','F192','I0322','','','0000-00-00','',0,2,1),(252,'1','F193','I0324','','','0000-00-00','',0,1,1),(253,'1','F193','I0325','','','0000-00-00','',0,2,1),(254,'1','F193','I0326','','','0000-00-00','',0,3,1),(255,'1','F193','I0327','','','0000-00-00','',0,4,1),(256,'1','F194','I0329','','','0000-00-00','',0,1,1),(257,'1','F194','I0330','','','0000-00-00','',0,2,1),(258,'1','F195','I0332','','','0000-00-00','',0,1,1),(259,'1','F195','I0333','','','0000-00-00','',0,2,1),(260,'1','F195','I0334','','','0000-00-00','',0,3,1),(261,'1','F197','I0336','','','0000-00-00','',0,1,1),(262,'1','F198','I0337','','','0000-00-00','',0,1,1),(263,'1','F198','I0338','','','0000-00-00','',0,2,1),(264,'1','F199','I0340','','','0000-00-00','',0,1,1),(265,'1','F199','I0341','','','0000-00-00','',0,2,1),(266,'1','F199','I0342','','','0000-00-00','',0,3,1),(267,'1','F064','I0344','','','0000-00-00','',0,1,1),(268,'1','F125','I0346','','','0000-00-00','',0,1,1),(269,'1','F125','I0347','','','0000-00-00','',0,3,1),(270,'1','F142','I0348','','','0000-00-00','',1,6,1),(271,'1','F142','I0349','','','0000-00-00','',1,4,1),(272,'1','F142','I0350','','','0000-00-00','',1,5,1),(273,'1','F121','I0351','','','0000-00-00','',0,2,1),(274,'1','F121','I0352','','','0000-00-00','',0,3,1),(275,'1','F121','I0353','','','0000-00-00','',0,1,1),(276,'1','F122','I0354','','','0000-00-00','',0,1,1),(277,'1','F122','I0355','','','0000-00-00','',0,2,1),(278,'1','F122','I0356','','','0000-00-00','',0,3,1),(279,'1','F131','I0357','','','0000-00-00','',0,1,1),(280,'1','F131','I0358','','','0000-00-00','',0,2,1),(281,'1','F129','I0359','','','0000-00-00','',1,2,1),(282,'1','F119','I0360','','','0000-00-00','',0,2,1),(283,'1','F119','I0361','','','0000-00-00','',0,3,1),(284,'1','F119','I0362','','','0000-00-00','',0,4,1),(285,'1','F119','I0363','','','0000-00-00','',0,1,1),(286,'1','F141','I0364','','','0000-00-00','',0,2,1),(287,'1','F003','I0367','','','0000-00-00','',0,3,1),(288,'1','F129','I0368','','','0000-00-00','',1,3,1),(289,'1','F129','I0369','','','0000-00-00','',1,1,1),(290,'1','F211','I0370','','','0000-00-00','',1,4,1),(291,'1','F120','I0371','','','0000-00-00','',0,1,1),(292,'1','F209','I0372','','','0000-00-00','',1,1,1),(293,'1','F030','I0376','','','0000-00-00','',0,1,1),(294,'1','F030','I0377','','','0000-00-00','',0,2,1),(295,'1','F076','I0379','','','0000-00-00','',0,2,1),(296,'1','F076','I0380','','','0000-00-00','',0,1,1),(297,'1','F093','I0383','','','0000-00-00','',0,4,1),(298,'1','F093','I0384','','','0000-00-00','',0,5,1),(299,'1','F093','I0385','','','0000-00-00','',0,3,1),(300,'1','F093','I0386','','','0000-00-00','',0,2,1),(301,'1','F093','I0387','','','0000-00-00','',0,1,1),(302,'1','F110','I0388','','','0000-00-00','',0,1,1),(303,'1','F110','I0389','','','0000-00-00','',0,2,1),(304,'1','F110','I0390','','','0000-00-00','',0,3,1),(305,'1','F110','I0391','','','0000-00-00','',0,4,1),(306,'1','F090','I0393','','','0000-00-00','',0,1,1),(307,'1','F215','I0395','','','0000-00-00','',0,1,1),(308,'1','F216','I0396','','','0000-00-00','',1,1,1),(309,'1','F063','I0399','','','0000-00-00','',0,1,1),(310,'1','F063','I0400','','','0000-00-00','',0,2,1),(311,'1','F063','I0401','','','0000-00-00','',0,3,1),(312,'1','F071','I0402','','','0000-00-00','',0,3,1),(313,'1','F213','I0403','','','0000-00-00','',0,1,1),(314,'1','F120','I0404','','','0000-00-00','',0,2,1),(315,'1','F120','I0405','','','0000-00-00','',0,3,1),(316,'1','F217','I0406','','','0000-00-00','',1,1,1),(317,'1','F218','I0407','','','0000-00-00','',1,1,1),(318,'1','F211','I0408','','','0000-00-00','',0,1,1),(319,'1','F211','I0409','','','0000-00-00','',0,2,1),(320,'1','F211','I0410','','','0000-00-00','',0,3,1),(321,'1','F211','I0411','','','0000-00-00','',0,6,1),(322,'1','F211','I0412','','','0000-00-00','',0,7,1),(323,'1','F211','I0413','','','0000-00-00','',0,8,1),(324,'1','F211','I0414','','','0000-00-00','',0,5,1),(325,'1','F219','I0417','','','0000-00-00','',1,1,1),(326,'1','F218','I0419','','','0000-00-00','',0,2,1),(327,'1','F218','I0420','','','0000-00-00','',0,3,1),(328,'1','F218','I0421','','','0000-00-00','',0,4,1),(329,'1','F218','I0422','','','0000-00-00','',0,5,1),(330,'1','F218','I0423','','','0000-00-00','',0,6,1),(331,'1','F218','I0424','','','0000-00-00','',0,7,1),(332,'1','F218','I0425','','','0000-00-00','',0,8,1),(333,'1','F218','I0426','','','0000-00-00','',0,9,1),(334,'1','F218','I0427','','','0000-00-00','',0,10,1),(335,'1','F219','I0430','','','0000-00-00','',0,2,1),(336,'1','F219','I0431','','','0000-00-00','',0,3,1),(337,'1','F219','I0432','','','0000-00-00','',0,4,1),(338,'1','F219','I0433','','','0000-00-00','',0,5,1),(339,'1','F219','I0434','','','0000-00-00','',0,6,1),(340,'1','F219','I0435','','','0000-00-00','',0,7,1),(341,'1','F219','I0436','','','0000-00-00','',0,8,1),(342,'1','F219','I0437','','','0000-00-00','',0,9,1),(343,'1','F219','I0438','','','0000-00-00','',0,10,1),(344,'1','F030','I0439','','','0000-00-00','',0,3,1),(345,'1','F117','I0440','','','0000-00-00','',0,4,1),(346,'1','F117','I0441','','','0000-00-00','',1,5,1),(347,'1','F117','I0442','','','0000-00-00','',0,1,1),(348,'1','F117','I0443','','','0000-00-00','',0,2,1),(349,'1','F117','I0444','','','0000-00-00','',0,3,1),(350,'1','F220','I0446','','','0000-00-00','',0,1,1),(351,'1','F220','I0448','','','0000-00-00','',1,2,1),(352,'1','F222','I0450','','','0000-00-00','',1,1,1),(353,'1','F223','I0452','','','0000-00-00','',0,1,1),(354,'1','F220','I0453','','','0000-00-00','',1,3,1),(355,'1','F224','I0455','','','0000-00-00','',0,1,1),(356,'1','F224','I0456','','','0000-00-00','',0,2,1),(357,'1','F224','I0457','','','0000-00-00','',0,3,1),(358,'1','F220','I0458','','','0000-00-00','',1,4,1),(359,'1','F226','I0460','','','0000-00-00','',1,1,1),(360,'1','F226','I0461','','','0000-00-00','',1,2,1),(361,'1','F226','I0462','','','0000-00-00','',1,3,1),(362,'1','F227','I0464','','','0000-00-00','',0,1,1),(363,'1','F212','I0465','','','0000-00-00','',0,2,1),(364,'1','F212','I0466','','','0000-00-00','',1,3,1),(365,'1','F071','I0467','','','0000-00-00','',0,1,1),(366,'1','F227','I0468','','','0000-00-00','',0,2,1),(367,'1','F227','I0469','','','0000-00-00','',0,3,1),(368,'1','F228','I0471','','','0000-00-00','',0,1,1),(369,'1','F228','I0472','','','0000-00-00','',0,2,1),(370,'1','F228','I0473','','','0000-00-00','',0,3,1),(371,'1','F229','I0475','','','0000-00-00','',0,1,1),(372,'1','F229','I0476','','','0000-00-00','',0,2,1),(373,'1','F229','I0477','','','0000-00-00','',0,3,1),(374,'1','F140','I0478','','','0000-00-00','',0,1,1),(375,'1','F140','I0479','','','0000-00-00','',0,2,1),(376,'1','F233','I0482','','','0000-00-00','',1,7,1),(377,'1','F107','I0484','','','0000-00-00','',0,1,1),(378,'1','F107','I0485','','','0000-00-00','',0,2,1),(379,'1','F107','I0486','','','0000-00-00','',0,3,1),(380,'1','F106','I0488','','','0000-00-00','',0,1,1),(381,'1','F108','I0490','','','0000-00-00','',1,1,1),(382,'1','F108','I0491','','','0000-00-00','',0,2,1),(383,'1','F235','I0493','','','0000-00-00','',0,1,1),(384,'1','F212','I0495','','','0000-00-00','',0,1,1),(385,'1','F089','I0499','','','0000-00-00','',0,1,1),(386,'1','F089','I0500','','','0000-00-00','',0,2,1),(387,'1','F089','I0501','','','0000-00-00','',1,3,1),(388,'1','F089','I0502','','','0000-00-00','',0,4,1),(389,'1','F089','I0503','','','0000-00-00','',1,5,1),(390,'1','F089','I0504','','','0000-00-00','',0,6,1),(391,'1','F089','I0505','','','0000-00-00','',1,8,1),(392,'1','F089','I0506','','','0000-00-00','',0,9,1),(393,'1','F237','I0514','','','0000-00-00','',0,1,1),(394,'1','F241','I0515','','','0000-00-00','',0,1,1),(395,'1','F239','I0516','','','0000-00-00','',0,1,1),(396,'1','F239','I0517','','','0000-00-00','',0,2,1),(397,'1','F241','I0518','','','0000-00-00','',0,2,1),(398,'1','F113','I0522','','','0000-00-00','',0,1,1),(399,'1','F113','I0523','','','0000-00-00','',0,2,1),(400,'1','F113','I0524','','','0000-00-00','',0,4,1),(401,'1','F113','I0525','','','0000-00-00','',0,5,1),(402,'1','F113','I0526','','','0000-00-00','',0,6,1),(403,'1','F113','I0527','','','0000-00-00','',0,7,1),(404,'1','F113','I0528','','','0000-00-00','',0,8,1),(405,'1','F243','I0529','','','0000-00-00','',1,2,1),(406,'1','F244','I0531','','','0000-00-00','',1,7,1),(407,'1','F245','I0533','','','0000-00-00','',1,2,1),(408,'1','F246','I0535','','','0000-00-00','',1,1,1),(409,'1','F247','I0537','','','0000-00-00','',1,1,1),(410,'1','F247','I0540','','','0000-00-00','',0,2,1),(411,'1','F246','I0541','','','0000-00-00','',1,2,1),(412,'1','F248','I0543','','','0000-00-00','',0,1,1),(413,'1','F248','I0544','','','0000-00-00','',1,2,1),(414,'1','F248','I0545','','','0000-00-00','',0,3,1),(415,'1','F248','I0546','','','0000-00-00','',0,4,1),(416,'1','F249','I0548','','','0000-00-00','',1,1,1),(417,'1','F249','I0549','','','0000-00-00','',0,2,1),(418,'1','F249','I0550','','','0000-00-00','',0,3,1),(419,'1','F249','I0551','','','0000-00-00','',0,4,1),(420,'1','F250','I0552','','','0000-00-00','',0,1,1),(421,'1','F245','I0553','','','0000-00-00','',0,4,1),(422,'1','F245','I0554','','','0000-00-00','',1,5,1),(423,'1','F245','I0555','','','0000-00-00','',0,1,1),(424,'1','F251','I0556','','','0000-00-00','',0,1,1),(425,'1','F251','I0557','','','0000-00-00','',0,2,1),(426,'1','F251','I0558','','','0000-00-00','',0,3,1),(427,'1','F251','I0559','','','0000-00-00','',0,7,1),(428,'1','F251','I0560','','','0000-00-00','',0,4,1),(429,'1','F251','I0561','','','0000-00-00','',0,5,1),(430,'1','F251','I0562','','','0000-00-00','',0,8,1),(431,'1','F251','I0563','','','0000-00-00','',0,9,1),(432,'1','F251','I0564','','','0000-00-00','',0,6,1),(433,'1','F244','I0566','','','0000-00-00','',0,1,1),(434,'1','F244','I0567','','','0000-00-00','',0,2,1),(435,'1','F244','I0568','','','0000-00-00','',1,3,1),(436,'1','F244','I0569','','','0000-00-00','',1,4,1),(437,'1','F244','I0570','','','0000-00-00','',0,5,1),(438,'1','F244','I0571','','','0000-00-00','',0,6,1),(439,'1','F256','I0572','','','0000-00-00','',1,1,1),(440,'1','F254','I0577','','','0000-00-00','',0,1,1),(441,'1','F254','I0578','','','0000-00-00','',0,2,1),(442,'1','F253','I0579','','','0000-00-00','',0,1,1),(443,'1','F253','I0580','','','0000-00-00','',0,2,1),(444,'1','F253','I0581','','','0000-00-00','',0,3,1),(445,'1','F253','I0582','','','0000-00-00','',0,4,1),(446,'1','F253','I0583','','','0000-00-00','',0,5,1),(447,'1','F253','I0584','','','0000-00-00','',0,6,1),(448,'1','F253','I0585','','','0000-00-00','',0,7,1),(449,'1','F253','I0586','','','0000-00-00','',0,8,1),(450,'1','F243','I0587','','','0000-00-00','',0,1,1),(451,'1','F243','I0588','','','0000-00-00','',0,3,1),(452,'1','F245','I0590','','','0000-00-00','',1,3,1),(453,'1','F257','I0592','','','0000-00-00','',0,1,1),(454,'1','F257','I0593','','','0000-00-00','',0,2,1),(455,'1','F257','I0594','','','0000-00-00','',0,3,1),(456,'1','F257','I0595','','','0000-00-00','',0,4,1),(457,'1','F257','I0596','','','0000-00-00','',0,5,1),(458,'1','F257','I0598','','','0000-00-00','',0,6,1),(459,'1','F054','I0600','','','0000-00-00','',0,8,1),(460,'1','F054','I0601','','','0000-00-00','',0,7,1),(461,'1','F054','I0602','','','0000-00-00','',0,6,1),(462,'1','F054','I0603','','','0000-00-00','',0,5,1),(463,'1','F054','I0604','','','0000-00-00','',0,4,1),(464,'1','F054','I0605','','','0000-00-00','',1,3,1),(465,'1','F054','I0606','','','0000-00-00','',1,1,1),(466,'1','F263','I0607','','','0000-00-00','',0,1,1),(467,'1','F262','I0613','','','0000-00-00','',1,1,1),(468,'1','F262','I0614','','','0000-00-00','',0,2,1),(469,'1','F262','I0615','','','0000-00-00','',0,3,1),(470,'1','F262','I0616','','','0000-00-00','',0,4,1),(471,'1','F265','I0619','','','0000-00-00','',0,1,1),(472,'1','F265','I0620','','','0000-00-00','',1,2,1),(473,'1','F265','I0621','','','0000-00-00','',0,3,1),(474,'1','F265','I0622','','','0000-00-00','',0,4,1),(475,'1','F265','I0623','','','0000-00-00','',0,5,1),(476,'1','F265','I0624','','','0000-00-00','',0,6,1),(477,'1','F265','I0625','','','0000-00-00','',0,7,1),(478,'1','F265','I0626','','','0000-00-00','',0,8,1),(479,'1','F267','I0628','','','0000-00-00','',0,1,1),(480,'1','F013','I0630','','','0000-00-00','',1,2,1),(481,'1','F013','I0631','','','0000-00-00','',0,3,1),(482,'1','F013','I0632','','','0000-00-00','',1,4,1),(483,'1','F013','I0633','','','0000-00-00','',0,6,1),(484,'1','F013','I0634','','','0000-00-00','',1,1,1),(485,'1','F013','I0635','','','0000-00-00','',1,7,1),(486,'1','F013','I0636','','','0000-00-00','',0,8,1),(487,'1','F013','I0637','','','0000-00-00','',0,9,1),(488,'1','F013','I0638','','','0000-00-00','',0,10,1),(489,'1','F092','I0640','','','0000-00-00','',0,1,1),(490,'1','F092','I0641','','','0000-00-00','',0,2,1),(491,'1','F092','I0642','','','0000-00-00','',0,3,1),(492,'1','F092','I0643','','','0000-00-00','',0,4,1),(493,'1','F092','I0644','','','0000-00-00','',0,5,1),(494,'1','F092','I0645','','','0000-00-00','',0,6,1),(495,'1','F092','I0646','','','0000-00-00','',0,7,1),(496,'1','F272','I0648','','','0000-00-00','',0,1,1),(497,'1','F013','I0649','','','0000-00-00','',1,5,1),(498,'1','F273','I0651','','','0000-00-00','',0,4,1),(499,'1','F273','I0652','','','0000-00-00','',0,8,1),(500,'1','F273','I0653','','','0000-00-00','',0,5,1),(501,'1','F273','I0654','','','0000-00-00','',0,1,1),(502,'1','F273','I0655','','','0000-00-00','',0,7,1),(503,'1','F273','I0656','','','0000-00-00','',0,3,1),(504,'1','F273','I0657','','','0000-00-00','',0,6,1),(505,'1','F273','I0658','','','0000-00-00','',0,2,1),(506,'1','F271','I0660','','','0000-00-00','',0,1,1),(507,'1','F271','I0661','','','0000-00-00','',0,2,1),(508,'1','F271','I0662','','','0000-00-00','',0,3,1),(509,'1','F269','I0664','','','0000-00-00','',0,1,1),(510,'1','F269','I0665','','','0000-00-00','',0,2,1),(511,'1','F269','I0666','','','0000-00-00','',0,3,1),(512,'1','F269','I0667','','','0000-00-00','',0,4,1),(513,'1','F274','I0669','','','0000-00-00','',0,1,1),(514,'1','F274','I0670','','','0000-00-00','',1,2,1),(515,'1','F274','I0671','','','0000-00-00','',1,3,1),(516,'1','F274','I0672','','','0000-00-00','',0,4,1),(517,'1','F274','I0673','','','0000-00-00','',0,5,1),(518,'1','F276','I0674','','','0000-00-00','',1,1,1),(519,'1','F036','I0675','','','0000-00-00','',0,1,1),(520,'1','F275','I0677','','','0000-00-00','',0,1,1),(521,'1','F275','I0678','','','0000-00-00','',1,2,1),(522,'1','F277','I0680','','','0000-00-00','',0,1,1),(523,'1','F038','I0681','','','0000-00-00','',0,1,1),(524,'1','F279','I0683','','','0000-00-00','',1,1,1),(525,'1','F079','I0684','','','0000-00-00','',1,2,1),(526,'1','F281','I0685','','','0000-00-00','',1,1,1),(527,'1','F280','I0686','','','0000-00-00','',0,1,1),(528,'1','F280','I0687','','','0000-00-00','',0,2,1),(529,'1','F079','I0688','','','0000-00-00','',0,1,1),(530,'1','F041','I0690','','','0000-00-00','',0,1,1),(531,'1','F057','I0692','','','0000-00-00','',0,1,1),(532,'1','F017','I0695','','','0000-00-00','',0,2,1),(533,'1','F017','I0697','','','0000-00-00','',0,3,1),(534,'1','F017','I0698','','','0000-00-00','',0,8,1),(535,'1','F017','I0699','','','0000-00-00','',0,12,1),(536,'1','F282','I0700','','','0000-00-00','',1,1,1),(537,'1','F139','I0703','','','0000-00-00','',0,1,1),(538,'1','F139','I0704','','','0000-00-00','',1,2,1),(539,'1','F139','I0705','','','0000-00-00','',1,3,1),(540,'1','F285','I0706','','','0000-00-00','',0,1,1),(541,'1','F286','I0708','','','0000-00-00','',1,1,1),(542,'1','F283','I0711','','','0000-00-00','',0,1,1),(543,'1','F283','I0712','','','0000-00-00','',0,2,1),(544,'1','F283','I0713','','','0000-00-00','',0,3,1),(545,'1','F283','I0714','','','0000-00-00','',0,4,1),(546,'1','F283','I0715','','','0000-00-00','',1,5,1),(547,'1','F283','I0716','','','0000-00-00','',0,6,1),(548,'1','F283','I0717','','','0000-00-00','',0,7,1),(549,'1','F284','I0719','','','0000-00-00','',0,1,1),(550,'1','F289','I0720','','','0000-00-00','',1,1,1),(551,'1','F291','I0722','','','0000-00-00','',1,2,1),(552,'1','F290','I0724','','','0000-00-00','',0,1,1),(553,'1','F290','I0725','','','0000-00-00','',0,2,1),(554,'1','F291','I0726','','','0000-00-00','',0,6,1),(555,'1','F290','I0727','','','0000-00-00','',0,3,1),(556,'1','F290','I0728','','','0000-00-00','',0,5,1),(557,'1','F290','I0729','','','0000-00-00','',0,6,1),(558,'1','F290','I0730','','','0000-00-00','',0,7,1),(559,'1','F290','I0731','','','0000-00-00','',0,8,1),(560,'1','F290','I0732','','','0000-00-00','',0,9,1),(561,'1','F290','I0733','','','0000-00-00','',0,10,1),(562,'1','F290','I0734','','','0000-00-00','',0,4,1),(563,'1','F289','I0735','','','0000-00-00','',1,2,1),(564,'1','F289','I0736','','','0000-00-00','',0,3,1),(565,'1','F288','I0737','','','0000-00-00','',0,1,1),(566,'1','F288','I0738','','','0000-00-00','',0,2,1),(567,'1','F293','I0739','','','0000-00-00','',0,1,1),(568,'1','F294','I0741','','','0000-00-00','',0,1,1),(569,'1','F294','I0742','','','0000-00-00','',0,2,1),(570,'1','F141','I0743','','','0000-00-00','',0,1,1),(571,'1','F141','I0744','','','0000-00-00','',0,3,1),(572,'1','F141','I0745','','','0000-00-00','',1,4,1),(573,'1','F141','I0746','','','0000-00-00','',0,5,1),(574,'1','F141','I0747','','','0000-00-00','',0,6,1),(575,'1','F141','I0748','','','0000-00-00','',1,7,1),(576,'1','F141','I0749','','','0000-00-00','',0,8,1),(577,'1','F141','I0750','','','0000-00-00','',0,10,1),(578,'1','F295','I0753','','','0000-00-00','',1,1,1),(579,'1','F295','I0754','','','0000-00-00','',1,2,1),(580,'1','F141','I0756','','','0000-00-00','',0,9,1),(581,'1','F287','I0757','','','0000-00-00','',0,1,1),(582,'1','F050','I0759','','','0000-00-00','',0,1,1),(583,'1','F130','I0760','','','0000-00-00','',1,1,1),(584,'1','F133','I0761','','','0000-00-00','',1,3,1),(585,'1','F133','I0762','','','0000-00-00','',0,4,1),(586,'1','F133','I0763','','','0000-00-00','',0,5,1),(587,'1','F134','I0764','','','0000-00-00','',0,1,1),(588,'1','F134','I0765','','','0000-00-00','',0,2,1),(589,'1','F171','I0766','','','0000-00-00','',1,2,1),(590,'1','F171','I0767','','','0000-00-00','',1,3,1),(591,'1','F171','I0768','','','0000-00-00','',1,4,1),(592,'1','F171','I0769','','','0000-00-00','',0,5,1),(593,'1','F303','I0771','','','0000-00-00','',1,1,1),(594,'1','F210','I0774','','','0000-00-00','',1,1,1),(595,'1','F305','I0775','','','0000-00-00','',1,1,1),(596,'1','F206','I0778','','','0000-00-00','',0,1,1),(597,'1','F206','I0779','','','0000-00-00','',1,4,1),(598,'1','F206','I0780','','','0000-00-00','',0,2,1),(599,'1','F206','I0781','','','0000-00-00','',1,3,1),(600,'1','F308','I0782','','','0000-00-00','',0,1,1),(601,'1','F309','I0785','','','0000-00-00','',1,1,1),(602,'1','F209','I0788','','','0000-00-00','',1,2,1),(603,'1','F311','I0789','','','0000-00-00','',1,1,1),(604,'1','F297','I0792','','','0000-00-00','',0,1,1),(605,'1','F297','I0793','','','0000-00-00','',0,2,1),(606,'1','F167','I0795','','','0000-00-00','',1,1,1),(607,'1','F167','I0796','','','0000-00-00','',1,2,1),(608,'1','F314','I0797','','','0000-00-00','',1,1,1),(609,'1','F168','I0798','','','0000-00-00','',1,1,1),(610,'1','F168','I0799','','','0000-00-00','',1,2,1),(611,'1','F318','I0800','','','0000-00-00','',1,1,1),(612,'1','F170','I0801','','','0000-00-00','',1,1,1),(613,'1','F170','I0802','','','0000-00-00','',1,2,1),(614,'1','F170','I0803','','','0000-00-00','',1,3,1),(615,'1','F187','I0805','','','0000-00-00','',1,1,1),(616,'1','F187','I0806','','','0000-00-00','',1,2,1),(617,'1','F187','I0807','','','0000-00-00','',1,3,1),(618,'1','F186','I0809','','','0000-00-00','',1,1,1),(619,'1','F186','I0810','','','0000-00-00','',1,2,1),(620,'1','F186','I0811','','','0000-00-00','',1,3,1),(621,'1','F298','I0813','','','0000-00-00','',1,1,1),(622,'1','F298','I0814','','','0000-00-00','',1,2,1),(623,'1','F331','I0815','','','0000-00-00','',1,1,1),(624,'1','F332','I0816','','','0000-00-00','',0,1,1),(625,'1','F173','I0817','','','0000-00-00','',1,1,1),(626,'1','F299','I0819','','','0000-00-00','',1,1,1),(627,'1','F299','I0820','','','0000-00-00','',1,2,1),(628,'1','F299','I0821','','','0000-00-00','',1,3,1),(629,'1','F338','I0822','','','0000-00-00','',1,1,1),(630,'1','F300','I0823','','','0000-00-00','',1,1,1),(631,'1','F300','I0824','','','0000-00-00','',1,2,1),(632,'1','F300','I0825','','','0000-00-00','',1,3,1),(633,'1','F301','I0827','','','0000-00-00','',1,1,1),(634,'1','F301','I0828','','','0000-00-00','',0,2,1),(635,'1','F301','I0829','','','0000-00-00','',1,3,1),(636,'1','F304','I0832','','','0000-00-00','',1,1,1),(637,'1','F304','I0833','','','0000-00-00','',1,2,1),(638,'1','F304','I0834','','','0000-00-00','',1,3,1),(639,'1','F304','I0835','','','0000-00-00','',1,4,1),(640,'1','F306','I0837','','','0000-00-00','',0,1,1),(641,'1','F307','I0839','','','0000-00-00','',1,1,1),(642,'1','F307','I0840','','','0000-00-00','',1,2,1),(643,'1','F310','I0843','','','0000-00-00','',1,1,1),(644,'1','F310','I0844','','','0000-00-00','',0,2,1),(645,'1','F312','I0846','','','0000-00-00','',1,1,1),(646,'1','F312','I0847','','','0000-00-00','',0,2,1),(647,'1','F312','I0848','','','0000-00-00','',0,3,1),(648,'1','F312','I0850','','','0000-00-00','',0,4,1),(649,'1','F313','I0852','','','0000-00-00','',0,1,1),(650,'1','F313','I0854','','','0000-00-00','',0,2,1),(651,'1','F313','I0855','','','0000-00-00','',0,3,1),(652,'1','F315','I0857','','','0000-00-00','',1,1,1),(653,'1','F315','I0858','','','0000-00-00','',1,2,1),(654,'1','F315','I0859','','','0000-00-00','',0,3,1),(655,'1','F317','I0862','','','0000-00-00','',1,1,1),(656,'1','F317','I0863','','','0000-00-00','',0,2,1),(657,'1','F317','I0864','','','0000-00-00','',1,3,1),(658,'1','F317','I0865','','','0000-00-00','',0,4,1),(659,'1','F319','I0868','','','0000-00-00','',1,1,1),(660,'1','F319','I0869','','','0000-00-00','',1,2,1),(661,'1','F319','I0870','','','0000-00-00','',1,3,1),(662,'1','F319','I0871','','','0000-00-00','',1,4,1),(663,'1','F320','I0873','','','0000-00-00','',1,1,1),(664,'1','F320','I0874','','','0000-00-00','',0,2,1),(665,'1','F320','I0876','','','0000-00-00','',0,3,1),(666,'1','F321','I0879','','','0000-00-00','',1,1,1),(667,'1','F321','I0880','','','0000-00-00','',0,2,1),(668,'1','F322','I0883','','','0000-00-00','',1,1,1),(669,'1','F322','I0884','','','0000-00-00','',0,2,1),(670,'1','F322','I0886','','','0000-00-00','',1,3,1),(671,'1','F322','I0887','','','0000-00-00','',1,4,1),(672,'1','F323','I0889','','','0000-00-00','',1,1,1),(673,'1','F323','I0890','','','0000-00-00','',0,2,1),(674,'1','F324','I0892','','','0000-00-00','',0,1,1),(675,'1','F324','I0893','','','0000-00-00','',0,2,1),(676,'1','F324','I0895','','','0000-00-00','',0,3,1),(677,'1','F324','I0896','','','0000-00-00','',0,4,1),(678,'1','F325','I0898','','','0000-00-00','',1,1,1),(679,'1','F325','I0899','','','0000-00-00','',1,2,1),(680,'1','F325','I0900','','','0000-00-00','',1,3,1),(681,'1','F326','I0902','','','0000-00-00','',1,1,1),(682,'1','F326','I0903','','','0000-00-00','',0,2,1),(683,'1','F327','I0906','','','0000-00-00','',0,1,1),(684,'1','F327','I0907','','','0000-00-00','',0,2,1),(685,'1','F327','I0908','','','0000-00-00','',0,3,1),(686,'1','F329','I0910','','','0000-00-00','',1,1,1),(687,'1','F329','I0911','','','0000-00-00','',1,2,1),(688,'1','F330','I0913','','','0000-00-00','',0,1,1),(689,'1','F330','I0914','','','0000-00-00','',0,2,1),(690,'1','F333','I0916','','','0000-00-00','',0,1,1),(691,'1','F334','I0919','','','0000-00-00','',0,1,1),(692,'1','F334','I0920','','','0000-00-00','',0,2,1),(693,'1','F334','I0921','','','0000-00-00','',0,3,1),(694,'1','F335','I0923','','','0000-00-00','',1,1,1),(695,'1','F335','I0924','','','0000-00-00','',0,2,1),(696,'1','F335','I0926','','','0000-00-00','',0,3,1),(697,'1','F336','I0928','','','0000-00-00','',0,1,1),(698,'1','F336','I0930','','','0000-00-00','',0,2,1),(699,'1','F337','I0932','','','0000-00-00','',0,1,1),(700,'1','F337','I0933','','','0000-00-00','',0,2,1),(701,'1','F196','I0935','','','0000-00-00','',0,1,1),(702,'1','F339','I0937','','','0000-00-00','',0,1,1),(703,'1','F339','I0938','','','0000-00-00','',0,2,1),(704,'1','F340','I0940','','','0000-00-00','',0,1,1),(705,'1','F340','I0941','','','0000-00-00','',0,2,1),(706,'1','F341','I0943','','','0000-00-00','',0,1,1),(707,'1','F341','I0944','','','0000-00-00','',0,2,1),(708,'1','F343','I0946','','','0000-00-00','',0,1,1),(709,'1','F343','I0947','','','0000-00-00','',0,2,1),(710,'1','F344','I0949','','','0000-00-00','',0,1,1),(711,'1','F344','I0950','','','0000-00-00','',0,2,1),(712,'1','F345','I0952','','','0000-00-00','',0,1,1),(713,'1','F345','I0953','','','0000-00-00','',0,2,1),(714,'1','F346','I0955','','','0000-00-00','',0,1,1),(715,'1','F346','I0956','','','0000-00-00','',0,2,1),(716,'1','F346','I0957','','','0000-00-00','',0,3,1),(717,'1','F347','I0959','','','0000-00-00','',0,1,1),(718,'1','F347','I0960','','','0000-00-00','',0,2,1),(719,'1','F348','I0962','','','0000-00-00','',0,1,1),(720,'1','F348','I0963','','','0000-00-00','',0,2,1),(721,'1','F350','I0965','','','0000-00-00','',0,1,1),(722,'1','F350','I0966','','','0000-00-00','',0,2,1),(723,'1','F231','I0968','','','0000-00-00','',0,1,1),(724,'1','F351','I0970','','','0000-00-00','',0,2,1),(725,'1','F351','I0971','','','0000-00-00','',0,1,1),(726,'1','F352','I0973','','','0000-00-00','',0,1,1),(727,'1','F353','I0975','','','0000-00-00','',0,1,1),(728,'1','F356','I0977','','','0000-00-00','',0,1,1),(729,'1','F356','I0978','','','0000-00-00','',0,2,1),(730,'1','F357','I0980','','','0000-00-00','',0,1,1),(731,'1','F357','I0981','','','0000-00-00','',0,2,1),(732,'1','F357','I0982','','','0000-00-00','',0,3,1),(733,'1','F359','I0984','','','0000-00-00','',0,1,1),(734,'1','F359','I0985','','','0000-00-00','',0,2,1),(735,'1','F359','I0986','','','0000-00-00','',0,3,1),(736,'1','F361','I0988','','','0000-00-00','',0,1,1),(737,'1','F362','I0990','','','0000-00-00','',0,1,1),(738,'1','F362','I0991','','','0000-00-00','',0,2,1),(739,'1','F362','I0992','','','0000-00-00','',0,3,1),(740,'1','F362','I0993','','','0000-00-00','',0,4,1),(741,'1','F363','I0995','','','0000-00-00','',0,1,1),(742,'1','F363','I0996','','','0000-00-00','',0,2,1),(743,'1','F363','I0997','','','0000-00-00','',0,3,1),(744,'1','F363','I0998','','','0000-00-00','',0,4,1),(745,'1','F364','I1000','','','0000-00-00','',0,1,1),(746,'1','F364','I1001','','','0000-00-00','',0,2,1),(747,'1','F364','I1002','','','0000-00-00','',0,3,1),(748,'1','F365','I1004','','','0000-00-00','',0,1,1),(749,'1','F365','I1005','','','0000-00-00','',0,2,1),(750,'1','F366','I1007','','','0000-00-00','',0,1,1),(751,'1','F366','I1008','','','0000-00-00','',0,2,1),(752,'1','F369','I1010','','','0000-00-00','',0,1,1),(753,'1','F369','I1011','','','0000-00-00','',0,2,1),(754,'1','F369','I1012','','','0000-00-00','',0,3,1),(755,'1','F372','I1014','','','0000-00-00','',0,1,1),(756,'1','F372','I1015','','','0000-00-00','',0,2,1),(757,'1','F234','I1017','','','0000-00-00','',0,1,1),(758,'1','F234','I1018','','','0000-00-00','',0,2,1),(759,'1','F374','I1020','','','0000-00-00','',0,1,1),(760,'1','F374','I1021','','','0000-00-00','',0,2,1),(761,'1','F375','I1023','','','0000-00-00','',0,1,1),(762,'1','F375','I1024','','','0000-00-00','',0,2,1),(763,'1','F375','I1025','','','0000-00-00','',0,3,1),(764,'1','F377','I1027','','','0000-00-00','',0,1,1),(765,'1','F377','I1028','','','0000-00-00','',0,2,1),(766,'1','F378','I1030','','','0000-00-00','',0,1,1),(767,'1','F378','I1031','','','0000-00-00','',0,2,1),(768,'1','F378','I1032','','','0000-00-00','',0,3,1),(769,'1','F378','I1033','','','0000-00-00','',0,4,1),(770,'1','F379','I1035','','','0000-00-00','',0,2,1),(771,'1','F379','I1036','','','0000-00-00','',0,1,1),(772,'1','F380','I1038','','','0000-00-00','',0,1,1),(773,'1','F380','I1039','','','0000-00-00','',0,2,1),(774,'1','F381','I1041','','','0000-00-00','',0,1,1),(775,'1','F382','I1043','','','0000-00-00','',0,1,1),(776,'1','F382','I1044','','','0000-00-00','',0,2,1),(777,'1','F384','I1046','','','0000-00-00','',0,1,1),(778,'1','F291','I1049','','','0000-00-00','',0,3,1),(779,'1','F036','I1050','','','0000-00-00','',0,4,1),(780,'1','F036','I1051','','','0000-00-00','',0,5,1),(781,'1','F036','I1052','','','0000-00-00','',1,6,1),(782,'1','F088','I1063','','','0000-00-00','',0,1,1),(783,'1','F088','I1064','','','0000-00-00','',0,2,1),(784,'1','F088','I1065','','','0000-00-00','',0,3,1),(785,'1','F389','I1066','','','0000-00-00','',0,1,1),(786,'1','F296','I1068','','','0000-00-00','',0,1,1),(787,'1','F390','I1070','','','0000-00-00','',1,5,1),(788,'1','F388','I1071','','','0000-00-00','',0,1,1),(789,'1','F388','I1072','','','0000-00-00','',0,2,1),(790,'1','F388','I1074','','','0000-00-00','',0,3,1),(791,'1','F388','I1075','','','0000-00-00','',0,4,1),(792,'1','F388','I1076','','','0000-00-00','',0,5,1),(793,'1','F388','I1077','','','0000-00-00','',0,6,1),(794,'1','F388','I1078','','','0000-00-00','',1,7,1),(795,'1','F388','I1079','','','0000-00-00','',0,8,1),(796,'1','F388','I1080','','','0000-00-00','',0,9,1),(797,'1','F392','I1081','','','0000-00-00','',1,3,1),(798,'1','F393','I1082','','','0000-00-00','',1,1,1),(799,'1','F391','I1084','','','0000-00-00','',1,1,1),(800,'1','F390','I1085','','','0000-00-00','',0,1,1),(801,'1','F390','I1086','','','0000-00-00','',0,2,1),(802,'1','F390','I1087','','','0000-00-00','',0,3,1),(803,'1','F390','I1088','','','0000-00-00','',0,4,1),(804,'1','F392','I1090','','','0000-00-00','',0,1,1),(805,'1','F392','I1091','','','0000-00-00','',0,2,1),(806,'1','F392','I1092','','','0000-00-00','',0,4,1),(807,'1','F392','I1093','','','0000-00-00','',0,5,1),(808,'1','F268','I1096','','','0000-00-00','',0,1,1),(809,'1','F395','I1098','','','0000-00-00','',1,7,1),(810,'1','F233','I1100','','','0000-00-00','',0,10,1),(811,'1','F233','I1101','','','0000-00-00','',0,9,1),(812,'1','F233','I1102','','','0000-00-00','',0,8,1),(813,'1','F233','I1104','','','0000-00-00','',1,6,1),(814,'1','F233','I1105','','','0000-00-00','',0,5,1),(815,'1','F233','I1106','','','0000-00-00','',0,4,1),(816,'1','F233','I1107','','','0000-00-00','',0,3,1),(817,'1','F233','I1108','','','0000-00-00','',0,2,1),(818,'1','F399','I1110','','','0000-00-00','',1,1,1),(819,'1','F395','I1113','','','0000-00-00','',0,8,1),(820,'1','F395','I1114','','','0000-00-00','',0,9,1),(821,'1','F395','I1116','','','0000-00-00','',0,6,1),(822,'1','F395','I1117','','','0000-00-00','',1,5,1),(823,'1','F401','I1119','','','0000-00-00','',0,1,1),(824,'1','F401','I1120','','','0000-00-00','',0,2,1),(825,'1','F395','I1121','','','0000-00-00','',1,4,1),(826,'1','F402','I1123','','','0000-00-00','',0,1,1),(827,'1','F402','I1124','','','0000-00-00','',0,2,1),(828,'1','F395','I1125','','','0000-00-00','',0,3,1),(829,'1','F395','I1126','','','0000-00-00','',0,2,1),(830,'1','F395','I1127','','','0000-00-00','',0,1,1),(831,'1','F233','I1128','','','0000-00-00','',0,1,1),(832,'1','F398','I1130','','','0000-00-00','',1,1,1),(833,'1','F403','I1133','','','0000-00-00','',0,1,1),(834,'1','F105','I1134','','','0000-00-00','',0,1,1),(835,'1','F105','I1135','','','0000-00-00','',0,2,1),(836,'1','F008','I1137','','','0000-00-00','',1,5,1),(837,'1','F008','I1138','','','0000-00-00','',0,6,1),(838,'1','F114','I1139','','','0000-00-00','',0,1,1),(839,'1','F114','I1140','','','0000-00-00','',0,2,1),(840,'1','F407','I1143','','','0000-00-00','',0,2,1),(841,'1','F407','I1144','','','0000-00-00','',0,1,1),(842,'1','F407','I1145','','','0000-00-00','',0,4,1),(843,'1','F407','I1146','','','0000-00-00','',1,3,1),(844,'1','F408','I1148','','','0000-00-00','',0,10,1),(845,'1','F408','I1149','','','0000-00-00','',0,9,1),(846,'1','F408','I1150','','','0000-00-00','',0,8,1),(847,'1','F408','I1151','','','0000-00-00','',1,7,1),(848,'1','F408','I1152','','','0000-00-00','',0,1,1),(849,'1','F408','I1153','','','0000-00-00','',0,3,1),(850,'1','F408','I1154','','','0000-00-00','',0,2,1),(851,'1','F408','I1155','','','0000-00-00','',1,4,1),(852,'1','F411','I1157','','','0000-00-00','',0,1,1),(853,'1','F411','I1158','','','0000-00-00','',0,2,1),(854,'1','F411','I1159','','','0000-00-00','',0,4,1),(855,'1','F411','I1160','','','0000-00-00','',1,5,1),(856,'1','F411','I1161','','','0000-00-00','',0,6,1),(857,'1','F411','I1162','','','0000-00-00','',0,7,1),(858,'1','F411','I1163','','','0000-00-00','',0,8,1),(859,'1','F411','I1164','','','0000-00-00','',0,9,1),(860,'1','F411','I1165','','','0000-00-00','',0,10,1),(861,'1','F411','I1166','','','0000-00-00','',0,11,1),(862,'1','F411','I1168','','','0000-00-00','',0,3,1),(863,'1','F413','I1169','','','0000-00-00','',0,1,1),(864,'1','F413','I1170','','','0000-00-00','',0,3,1),(865,'1','F413','I1171','','','0000-00-00','',0,4,1),(866,'1','F413','I1173','','','0000-00-00','',0,5,1),(867,'1','F413','I1174','','','0000-00-00','',0,6,1),(868,'1','F413','I1176','','','0000-00-00','',1,2,1),(869,'1','F418','I1177','','','0000-00-00','',1,1,1),(870,'1','F417','I1178','','','0000-00-00','',0,1,1),(871,'1','F417','I1179','','','0000-00-00','',0,3,1),(872,'1','F417','I1180','','','0000-00-00','',1,4,1),(873,'1','F417','I1181','','','0000-00-00','',0,5,1),(874,'1','F422','I1184','','','0000-00-00','',1,7,1),(875,'1','F423','I1185','','','0000-00-00','',1,1,1),(876,'1','F418','I1186','','','0000-00-00','',0,2,1),(877,'1','F418','I1187','','','0000-00-00','',0,3,1),(878,'1','F426','I1188','','','0000-00-00','',0,1,1),(879,'1','F427','I1190','','','0000-00-00','',1,1,1),(880,'1','F422','I1192','','','0000-00-00','',1,1,1),(881,'1','F422','I1193','','','0000-00-00','',1,2,1),(882,'1','F422','I1194','','','0000-00-00','',1,3,1),(883,'1','F422','I1195','','','0000-00-00','',1,4,1),(884,'1','F422','I1196','','','0000-00-00','',1,5,1),(885,'1','F422','I1197','','','0000-00-00','',1,6,1),(886,'1','F422','I1198','','','0000-00-00','',0,8,1),(887,'1','F422','I1199','','','0000-00-00','',0,9,1),(888,'1','F431','I1201','','','0000-00-00','',0,1,1),(889,'1','F431','I1202','','','0000-00-00','',0,2,1),(890,'1','F431','I1203','','','0000-00-00','',0,3,1),(891,'1','F438','I1204','','','0000-00-00','',1,4,1),(892,'1','F427','I1206','','','0000-00-00','',0,2,1),(893,'1','F438','I1209','','','0000-00-00','',0,1,1),(894,'1','F438','I1210','','','0000-00-00','',0,2,1),(895,'1','F438','I1211','','','0000-00-00','',0,3,1),(896,'1','F438','I1212','','','0000-00-00','',0,5,1),(897,'1','F438','I1213','','','0000-00-00','',0,6,1),(898,'1','F438','I1214','','','0000-00-00','',0,7,1),(899,'1','F438','I1215','','','0000-00-00','',0,8,1),(900,'1','F438','I1216','','','0000-00-00','',0,9,1),(901,'1','F438','I1217','','','0000-00-00','',0,10,1),(902,'1','F438','I1218','','','0000-00-00','',0,11,1),(903,'1','F442','I1222','','','0000-00-00','',1,1,1),(904,'1','F440','I1223','','','0000-00-00','',0,1,1),(905,'1','F440','I1224','','','0000-00-00','',0,2,1),(906,'1','F440','I1225','','','0000-00-00','',0,3,1),(907,'1','F440','I1226','','','0000-00-00','',0,4,1),(908,'1','F440','I1227','','','0000-00-00','',0,5,1),(909,'1','F442','I1230','','','0000-00-00','',0,2,1),(910,'1','F442','I1231','','','0000-00-00','',0,3,1),(911,'1','F442','I1232','','','0000-00-00','',0,4,1),(912,'1','F442','I1233','','','0000-00-00','',0,5,1),(913,'1','F409','I1235','','','0000-00-00','',0,1,1),(914,'1','F409','I1236','','','0000-00-00','',0,2,1),(915,'1','F409','I1237','','','0000-00-00','',0,3,1),(916,'1','F114','I1238','','','0000-00-00','',0,3,1),(917,'1','F114','I1239','','','0000-00-00','',0,4,1),(918,'1','F114','I1240','','','0000-00-00','',0,5,1),(919,'1','F115','I1241','','','0000-00-00','',0,1,1),(920,'1','F115','I1242','','','0000-00-00','',0,2,1),(921,'1','F115','I1243','','','0000-00-00','',0,3,1),(922,'1','F116','I1244','','','0000-00-00','',0,1,1),(923,'1','F116','I1245','','','0000-00-00','',0,2,1),(924,'1','F024','I1246','','','0000-00-00','',1,1,1),(925,'1','F443','I1248','','','0000-00-00','',0,1,1),(926,'1','F443','I1249','','','0000-00-00','',0,2,1),(927,'1','F443','I1250','','','0000-00-00','',0,3,1),(928,'1','F024','I1251','','','0000-00-00','',1,2,1),(929,'1','F444','I1253','','','0000-00-00','',0,1,1),(930,'1','F444','I1254','','','0000-00-00','',0,2,1),(931,'1','F071','I1256','','','0000-00-00','',0,6,1),(932,'1','F071','I1257','','','0000-00-00','',0,7,1),(933,'1','F071','I1258','','','0000-00-00','',0,8,1),(934,'1','F071','I1259','','','0000-00-00','',0,9,1),(935,'1','F445','I1260','','','0000-00-00','',1,3,1),(936,'1','F072','I1262','','','0000-00-00','',0,4,1),(937,'1','F071','I1263','','','0000-00-00','',0,5,1),(938,'1','F072','I1264','','','0000-00-00','',1,1,1),(939,'1','F072','I1265','','','0000-00-00','',0,5,1),(940,'1','F072','I1266','','','0000-00-00','',1,2,1),(941,'1','F449','I1267','','','0000-00-00','',1,4,1),(942,'1','F450','I1268','','','0000-00-00','',1,1,1),(943,'1','F002','I1269','','','0000-00-00','',0,2,1),(944,'1','F002','I1270','','','0000-00-00','',1,3,1),(945,'1','F417','I1271','','','0000-00-00','',1,2,1),(946,'1','F001','I1273','','','0000-00-00','',1,1,1),(947,'1','F001','I1275','','','0000-00-00','',1,3,1),(948,'1','F001','I1276','','','0000-00-00','',0,4,1),(949,'1','F451','I1277','','','0000-00-00','',1,2,1),(950,'1','F451','I1278','','','0000-00-00','',0,1,1),(951,'1','F070','I1280','','','0000-00-00','',1,2,1),(952,'1','F062','I1282','','','0000-00-00','',0,2,1),(953,'1','F454','I1283','','','0000-00-00','',0,1,1),(954,'1','F454','I1284','','','0000-00-00','',0,2,1),(955,'1','F452','I1285','','','0000-00-00','',1,1,1),(956,'1','F452','I1286','','','0000-00-00','',1,2,1),(957,'1','F459','I1288','','','0000-00-00','',0,1,1),(958,'1','F459','I1289','','','0000-00-00','',0,2,1),(959,'1','F461','I1290','','','0000-00-00','',0,2,1),(960,'1','F461','I1291','','','0000-00-00','',0,1,1),(961,'1','F449','I1292','','','0000-00-00','',0,1,1),(962,'1','F449','I1293','','','0000-00-00','',1,2,1),(963,'1','F462','I1294','','','0000-00-00','',0,1,1),(964,'1','F461','I1295','','','0000-00-00','',1,7,1),(965,'1','F461','I1296','','','0000-00-00','',0,4,1),(966,'1','F463','I1297','','','0000-00-00','',1,1,1),(967,'1','F461','I1298','','','0000-00-00','',1,5,1),(968,'1','F463','I1299','','','0000-00-00','',0,4,1),(969,'1','F466','I1301','','','0000-00-00','',0,1,1),(970,'1','F466','I1303','','','0000-00-00','',0,3,1),(971,'1','F466','I1304','','','0000-00-00','',0,4,1),(972,'1','F462','I1306','','','0000-00-00','',0,2,1),(973,'1','F462','I1307','','','0000-00-00','',0,3,1),(974,'1','F462','I1308','','','0000-00-00','',1,4,1),(975,'1','F008','I1309','','','0000-00-00','',1,2,1),(976,'1','F475','I1311','','','0000-00-00','',1,1,1),(977,'1','F476','I1312','','','0000-00-00','',1,1,1),(978,'1','F460','I1314','','','0000-00-00','',0,1,1),(979,'1','F456','I1315','','','0000-00-00','',0,1,1),(980,'1','F456','I1316','','','0000-00-00','',0,2,1),(981,'1','F456','I1317','','','0000-00-00','',0,3,1),(982,'1','F469','I1321','','','0000-00-00','',0,1,1),(983,'1','F479','I1323','','','0000-00-00','',1,3,1),(984,'1','F462','I1324','','','0000-00-00','',0,5,1),(985,'1','F008','I1325','','','0000-00-00','',1,3,1),(986,'1','F471','I1328','','','0000-00-00','',0,1,1),(987,'1','F471','I1329','','','0000-00-00','',1,2,1),(988,'1','F482','I1331','','','0000-00-00','',0,1,1),(989,'1','F482','I1332','','','0000-00-00','',0,2,1),(990,'1','F471','I1333','','','0000-00-00','',1,3,1),(991,'1','F483','I1335','','','0000-00-00','',0,1,1),(992,'1','F483','I1336','','','0000-00-00','',0,2,1),(993,'1','F471','I1339','','','0000-00-00','',1,4,1),(994,'1','F486','I1341','','','0000-00-00','',0,1,1),(995,'1','F486','I1342','','','0000-00-00','',0,2,1),(996,'1','F487','I1343','','','0000-00-00','',1,3,1),(997,'1','F487','I1346','','','0000-00-00','',0,4,1),(998,'1','F479','I1349','','','0000-00-00','',0,2,1),(999,'1','F479','I1350','','','0000-00-00','',0,1,1),(1000,'1','F479','I1351','','','0000-00-00','',0,4,1),(1001,'1','F479','I1352','','','0000-00-00','',0,5,1),(1002,'1','F487','I1354','','','0000-00-00','',0,1,1),(1003,'1','F487','I1355','','','0000-00-00','',0,2,1),(1004,'1','F450','I1356','','','0000-00-00','',1,3,1),(1005,'1','F450','I1357','','','0000-00-00','',1,5,1),(1006,'1','F496','I1358','','','0000-00-00','',1,1,1),(1007,'1','F494','I1359','','','0000-00-00','',1,1,1),(1008,'1','F498','I1362','','','0000-00-00','',0,1,1),(1009,'1','F499','I1364','','','0000-00-00','',0,1,1),(1010,'1','F499','I1365','','','0000-00-00','',1,2,1),(1011,'1','F499','I1366','','','0000-00-00','',0,3,1),(1012,'1','F503','I1369','','','0000-00-00','',0,1,1),(1013,'1','F503','I1370','','','0000-00-00','',0,2,1),(1014,'1','F445','I1375','','','0000-00-00','',0,2,1),(1015,'1','F445','I1376','','','0000-00-00','',0,1,1),(1016,'1','F071','I1377','','','0000-00-00','',0,4,1),(1017,'1','F078','I1379','','','0000-00-00','',0,2,1),(1018,'1','F008','I1380','','','0000-00-00','',0,9,1),(1019,'1','F008','I1381','','','0000-00-00','',1,10,1),(1020,'1','F505','I1382','','','0000-00-00','',1,1,1),(1021,'1','F504','I1384','','','0000-00-00','',1,5,1),(1022,'1','F504','I1385','','','0000-00-00','',0,1,1),(1023,'1','F504','I1386','','','0000-00-00','',0,2,1),(1024,'1','F446','I1387','','','0000-00-00','',1,3,1),(1025,'1','F446','I1388','','','0000-00-00','',0,5,1),(1026,'1','F446','I1389','','','0000-00-00','',0,7,1),(1027,'1','F446','I1390','','','0000-00-00','',0,4,1),(1028,'1','F446','I1391','','','0000-00-00','',0,6,1),(1029,'1','F446','I1392','','','0000-00-00','',0,2,1),(1030,'1','F446','I1393','','','0000-00-00','',0,1,1),(1031,'1','F447','I1394','','','0000-00-00','',0,1,1),(1032,'1','F447','I1395','','','0000-00-00','',0,2,1),(1033,'1','F509','I1397','','','0000-00-00','',0,1,1),(1034,'1','F509','I1398','','','0000-00-00','',0,2,1),(1035,'1','F509','I1399','','','0000-00-00','',1,3,1),(1036,'1','F510','I1401','','','0000-00-00','',1,1,1),(1037,'1','F510','I1402','','','0000-00-00','',0,2,1),(1038,'1','F510','I1403','','','0000-00-00','',1,3,1),(1039,'1','F512','I1405','','','0000-00-00','',0,1,1),(1040,'1','F512','I1406','','','0000-00-00','',0,2,1),(1041,'1','F511','I1408','','','0000-00-00','',1,1,1),(1042,'1','F511','I1409','','','0000-00-00','',0,2,1),(1043,'1','F511','I1410','','','0000-00-00','',1,3,1),(1044,'1','F513','I1412','','','0000-00-00','',0,1,1),(1045,'1','F513','I1413','','','0000-00-00','',0,2,1),(1046,'1','F514','I1415','','','0000-00-00','',0,1,1),(1047,'1','F515','I1416','','','0000-00-00','',0,1,1),(1048,'1','F517','I1425','','','0000-00-00','',1,5,1),(1049,'1','F518','I1427','','','0000-00-00','',0,11,1),(1050,'1','F518','I1428','','','0000-00-00','',1,12,1),(1051,'1','F520','I1429','','','0000-00-00','',0,1,1),(1052,'1','F520','I1430','','','0000-00-00','',0,2,1),(1053,'1','F520','I1431','','','0000-00-00','',0,6,1),(1054,'1','F520','I1432','','','0000-00-00','',1,5,1),(1055,'1','F520','I1433','','','0000-00-00','',0,7,1),(1056,'1','F520','I1434','','','0000-00-00','',1,4,1),(1057,'1','F523','I1435','','','0000-00-00','',0,1,1),(1058,'1','F523','I1436','','','0000-00-00','',0,2,1),(1059,'1','F524','I1437','','','0000-00-00','',0,2,1),(1060,'1','F519','I1439','','','0000-00-00','',0,1,1),(1061,'1','F519','I1440','','','0000-00-00','',0,2,1),(1062,'1','F522','I1443','','','0000-00-00','',0,1,1),(1063,'1','F522','I1444','','','0000-00-00','',0,2,1),(1064,'1','F522','I1445','','','0000-00-00','',0,3,1),(1065,'1','F522','I1446','','','0000-00-00','',0,4,1),(1066,'1','F527','I1447','','','0000-00-00','',1,1,1),(1067,'1','F524','I1448','','','0000-00-00','',0,1,1),(1068,'1','F526','I1449','','','0000-00-00','',0,1,1),(1069,'1','F526','I1450','','','0000-00-00','',0,2,1),(1070,'1','F526','I1451','','','0000-00-00','',0,3,1),(1071,'1','F521','I1454','','','0000-00-00','',0,1,1),(1072,'1','F521','I1455','','','0000-00-00','',0,2,1),(1073,'1','F520','I1456','','','0000-00-00','',0,8,1),(1074,'1','F520','I1457','','','0000-00-00','',0,9,1),(1075,'1','F507','I1459','','','0000-00-00','',0,1,1),(1076,'1','F530','I1461','','','0000-00-00','',0,1,1),(1077,'1','F530','I1462','','','0000-00-00','',0,2,1),(1078,'1','F530','I1463','','','0000-00-00','',0,4,1),(1079,'1','F533','I1467','','','0000-00-00','',0,6,1),(1080,'1','F533','I1468','','','0000-00-00','',0,7,1),(1081,'1','F533','I1469','','','0000-00-00','',1,1,1),(1082,'1','F507','I1470','','','0000-00-00','',0,2,1),(1083,'1','F533','I1471','','','0000-00-00','',0,2,1),(1084,'1','F537','I1472','','','0000-00-00','',0,1,1),(1085,'1','F538','I1474','','','0000-00-00','',1,2,1),(1086,'1','F538','I1475','','','0000-00-00','',0,3,1),(1087,'1','F538','I1476','','','0000-00-00','',0,4,1),(1088,'1','F538','I1477','','','0000-00-00','',0,1,1),(1089,'1','F543','I1480','','','0000-00-00','',1,4,1),(1090,'1','F545','I1481','','','0000-00-00','',1,1,1),(1091,'1','F546','I1482','','','0000-00-00','',1,1,1),(1092,'1','F546','I1483','','','0000-00-00','',0,2,1),(1093,'1','F547','I1484','','','0000-00-00','',0,1,1),(1094,'1','F547','I1485','','','0000-00-00','',0,2,1),(1095,'1','F547','I1486','','','0000-00-00','',0,3,1),(1096,'1','F547','I1488','','','0000-00-00','',0,4,1),(1097,'1','F546','I1489','','','0000-00-00','',0,4,1),(1098,'1','F551','I1491','','','0000-00-00','',0,1,1),(1099,'1','F553','I1492','','','0000-00-00','',1,17,1),(1100,'1','F551','I1494','','','0000-00-00','',0,2,1),(1101,'1','F551','I1495','','','0000-00-00','',0,3,1),(1102,'1','F551','I1496','','','0000-00-00','',0,4,1),(1103,'1','F551','I1497','','','0000-00-00','',1,5,1),(1104,'1','F551','I1498','','','0000-00-00','',0,6,1),(1105,'1','F551','I1499','','','0000-00-00','',0,7,1),(1106,'1','F556','I1500','','','0000-00-00','',0,1,1),(1107,'1','F546','I1501','','','0000-00-00','',1,5,1),(1108,'1','F546','I1502','','','0000-00-00','',1,6,1),(1109,'1','F558','I1503','','','0000-00-00','',1,6,1),(1110,'1','F556','I1504','','','0000-00-00','',0,2,1),(1111,'1','F556','I1505','','','0000-00-00','',0,3,1),(1112,'1','F556','I1506','','','0000-00-00','',0,4,1),(1113,'1','F546','I1507','','','0000-00-00','',0,3,1),(1114,'1','F559','I1509','','','0000-00-00','',0,1,1),(1115,'1','F559','I1510','','','0000-00-00','',1,2,1),(1116,'1','F561','I1512','','','0000-00-00','',0,1,1),(1117,'1','F561','I1513','','','0000-00-00','',0,2,1),(1118,'1','F562','I1514','','','0000-00-00','',1,2,1),(1119,'1','F541','I1516','','','0000-00-00','',1,1,1),(1120,'1','F567','I1517','','','0000-00-00','',0,1,1),(1121,'1','F567','I1518','','','0000-00-00','',0,2,1),(1122,'1','F567','I1519','','','0000-00-00','',0,3,1),(1123,'1','F541','I1521','','','0000-00-00','',0,2,1),(1124,'1','F541','I1523','','','0000-00-00','',1,3,1),(1125,'1','F537','I1524','','','0000-00-00','',1,2,1),(1126,'1','F517','I1525','','','0000-00-00','',1,2,1),(1127,'1','F539','I1530','','','0000-00-00','',0,1,1),(1128,'1','F564','I1532','','','0000-00-00','',0,1,1),(1129,'1','F560','I1533','','','0000-00-00','',0,1,1),(1130,'1','F564','I1534','','','0000-00-00','',0,2,1),(1131,'1','F564','I1535','','','0000-00-00','',1,3,1),(1132,'1','F544','I1536','','','0000-00-00','',1,1,1),(1133,'1','F517','I1537','','','0000-00-00','',0,3,1),(1134,'1','F564','I1538','','','0000-00-00','',0,4,1),(1135,'1','F541','I1540','','','0000-00-00','',1,4,1),(1136,'1','F575','I1544','','','0000-00-00','',1,1,1),(1137,'1','F575','I1545','','','0000-00-00','',0,2,1),(1138,'1','F575','I1546','','','0000-00-00','',0,3,1),(1139,'1','F517','I1548','','','0000-00-00','',0,4,1),(1140,'1','F557','I1549','','','0000-00-00','',0,1,1),(1141,'1','F537','I1550','','','0000-00-00','',1,3,1),(1142,'1','F537','I1556','','','0000-00-00','',1,4,1),(1143,'1','F517','I1559','','','0000-00-00','',0,7,1),(1144,'1','F537','I1560','','','0000-00-00','',1,5,1),(1145,'1','F537','I1562','','','0000-00-00','',0,6,1),(1146,'1','F537','I1563','','','0000-00-00','',0,7,1),(1147,'1','F535','I1565','','','0000-00-00','',0,1,1),(1148,'1','F554','I1567','','','0000-00-00','',0,1,1),(1149,'1','F517','I1570','','','0000-00-00','',1,8,1),(1150,'1','F533','I1576','','','0000-00-00','',0,5,1),(1151,'1','F552','I1580','','','0000-00-00','',0,1,1),(1152,'1','F516','I1581','','','0000-00-00','',0,1,1),(1153,'1','F552','I1582','','','0000-00-00','',1,2,1),(1154,'1','F552','I1583','','','0000-00-00','',1,4,1),(1155,'1','F552','I1584','','','0000-00-00','',1,3,1),(1156,'1','F593','I1585','','','0000-00-00','',1,1,1),(1157,'1','F594','I1586','','','0000-00-00','',1,5,1),(1158,'1','F595','I1587','','','0000-00-00','',1,1,1),(1159,'1','F545','I1589','','','0000-00-00','',1,3,1),(1160,'1','F545','I1590','','','0000-00-00','',1,5,1),(1161,'1','F545','I1593','','','0000-00-00','',0,4,1),(1162,'1','F598','I1594','','','0000-00-00','',0,1,1),(1163,'1','F598','I1595','','','0000-00-00','',0,2,1),(1164,'1','F598','I1596','','','0000-00-00','',0,3,1),(1165,'1','F545','I1597','','','0000-00-00','',1,8,1),(1166,'1','F545','I1598','','','0000-00-00','',0,6,1),(1167,'1','F545','I1599','','','0000-00-00','',0,7,1),(1168,'1','F543','I1603','','','0000-00-00','',1,8,1),(1169,'1','F600','I1604','','','0000-00-00','',0,1,1),(1170,'1','F601','I1605','','','0000-00-00','',1,1,1),(1171,'1','F597','I1609','','','0000-00-00','',1,2,1),(1172,'1','F602','I1612','','','0000-00-00','',0,1,1),(1173,'1','F602','I1613','','','0000-00-00','',1,2,1),(1174,'1','F517','I1614','','','0000-00-00','',0,6,1),(1175,'1','F603','I1616','','','0000-00-00','',1,1,1),(1176,'1','F605','I1617','','','0000-00-00','',0,1,1),(1177,'1','F553','I1619','','','0000-00-00','',1,8,1),(1178,'1','F553','I1620','','','0000-00-00','',0,9,1),(1179,'1','F553','I1621','','','0000-00-00','',1,13,1),(1180,'1','F553','I1622','','','0000-00-00','',0,14,1),(1181,'1','F553','I1623','','','0000-00-00','',0,16,1),(1182,'1','F607','I1624','','','0000-00-00','',0,1,1),(1183,'1','F558','I1625','','','0000-00-00','',0,7,1),(1184,'1','F608','I1627','','','0000-00-00','',0,2,1),(1185,'1','F609','I1628','','','0000-00-00','',0,4,1),(1186,'1','F553','I1629','','','0000-00-00','',1,11,1),(1187,'1','F609','I1632','','','0000-00-00','',0,3,1),(1188,'1','F610','I1634','','','0000-00-00','',0,1,1),(1189,'1','F610','I1635','','','0000-00-00','',0,2,1),(1190,'1','F610','I1637','','','0000-00-00','',0,4,1),(1191,'1','F610','I1638','','','0000-00-00','',0,5,1),(1192,'1','F610','I1639','','','0000-00-00','',0,7,1),(1193,'1','F610','I1640','','','0000-00-00','',1,3,1),(1194,'1','F610','I1641','','','0000-00-00','',0,6,1),(1195,'1','F614','I1643','','','0000-00-00','',0,4,1),(1196,'1','F614','I1644','','','0000-00-00','',0,1,1),(1197,'1','F614','I1645','','','0000-00-00','',1,2,1),(1198,'1','F614','I1646','','','0000-00-00','',0,3,1),(1199,'1','F516','I1647','','','0000-00-00','',1,4,1),(1200,'1','F558','I1648','','','0000-00-00','',0,3,1),(1201,'1','F614','I1649','','','0000-00-00','',0,5,1),(1202,'1','F614','I1650','','','0000-00-00','',0,6,1),(1203,'1','F590','I1652','','','0000-00-00','',0,2,1),(1204,'1','F590','I1653','','','0000-00-00','',0,3,1),(1205,'1','F590','I1654','','','0000-00-00','',0,4,1),(1206,'1','F590','I1655','','','0000-00-00','',0,5,1),(1207,'1','F615','I1657','','','0000-00-00','',0,1,1),(1208,'1','F615','I1658','','','0000-00-00','',0,2,1),(1209,'1','F558','I1659','','','0000-00-00','',0,2,1),(1210,'1','F615','I1660','','','0000-00-00','',0,3,1),(1211,'1','F615','I1661','','','0000-00-00','',0,4,1),(1212,'1','F616','I1662','','','0000-00-00','',1,1,1),(1213,'1','F470','I1663','','','0000-00-00','',0,1,1),(1214,'1','F470','I1664','','','0000-00-00','',0,2,1),(1215,'1','F470','I1665','','','0000-00-00','',0,3,1),(1216,'1','F470','I1666','','','0000-00-00','',0,4,1),(1217,'1','F616','I1667','','','0000-00-00','',1,2,1),(1218,'1','F405','I1668','','','0000-00-00','',0,1,1),(1219,'1','F405','I1669','','','0000-00-00','',0,2,1),(1220,'1','F558','I1670','','','0000-00-00','',0,1,1),(1221,'1','F616','I1673','','','0000-00-00','',0,3,1),(1222,'1','F616','I1674','','','0000-00-00','',0,6,1),(1223,'1','F616','I1675','','','0000-00-00','',0,7,1),(1224,'1','F616','I1676','','','0000-00-00','',0,5,1),(1225,'1','F616','I1677','','','0000-00-00','',0,4,1),(1226,'1','F591','I1679','','','0000-00-00','',0,1,1),(1227,'1','F591','I1680','','','0000-00-00','',0,2,1),(1228,'1','F558','I1681','','','0000-00-00','',0,5,1),(1229,'1','F591','I1682','','','0000-00-00','',0,3,1),(1230,'1','F591','I1683','','','0000-00-00','',0,4,1),(1231,'1','F591','I1684','','','0000-00-00','',0,5,1),(1232,'1','F591','I1685','','','0000-00-00','',0,6,1),(1233,'1','F618','I1687','','','0000-00-00','',0,1,1),(1234,'1','F619','I1688','','','0000-00-00','',1,1,1),(1235,'1','F592','I1689','','','0000-00-00','',0,1,1),(1236,'1','F592','I1690','','','0000-00-00','',0,2,1),(1237,'1','F620','I1691','','','0000-00-00','',0,5,1),(1238,'1','F620','I1693','','','0000-00-00','',0,4,1),(1239,'1','F620','I1694','','','0000-00-00','',0,2,1),(1240,'1','F606','I1695','','','0000-00-00','',0,1,1),(1241,'1','F620','I1698','','','0000-00-00','',0,3,1),(1242,'1','F606','I1699','','','0000-00-00','',0,2,1),(1243,'1','F606','I1700','','','0000-00-00','',0,3,1),(1244,'1','F611','I1701','','','0000-00-00','',0,1,1),(1245,'1','F611','I1702','','','0000-00-00','',0,2,1),(1246,'1','F611','I1704','','','0000-00-00','',0,3,1),(1247,'1','F611','I1705','','','0000-00-00','',1,4,1),(1248,'1','F611','I1706','','','0000-00-00','',0,5,1),(1249,'1','F611','I1707','','','0000-00-00','',0,6,1),(1250,'1','F611','I1708','','','0000-00-00','',1,7,1),(1251,'1','F611','I1709','','','0000-00-00','',0,8,1),(1252,'1','F576','I1711','','','0000-00-00','',0,1,1),(1253,'1','F576','I1712','','','0000-00-00','',0,2,1),(1254,'1','F576','I1713','','','0000-00-00','',0,3,1),(1255,'1','F544','I1714','','','0000-00-00','',0,5,1),(1256,'1','F576','I1715','','','0000-00-00','',0,4,1),(1257,'1','F576','I1716','','','0000-00-00','',0,5,1),(1258,'1','F576','I1717','','','0000-00-00','',0,6,1),(1259,'1','F545','I1718','','','0000-00-00','',1,2,1),(1260,'1','F625','I1719','','','0000-00-00','',1,1,1),(1261,'1','F599','I1721','','','0000-00-00','',0,1,1),(1262,'1','F544','I1725','','','0000-00-00','',0,2,1),(1263,'1','F624','I1726','','','0000-00-00','',0,4,1),(1264,'1','F624','I1727','','','0000-00-00','',0,2,1),(1265,'1','F624','I1728','','','0000-00-00','',1,1,1),(1266,'1','F624','I1729','','','0000-00-00','',0,3,1),(1267,'1','F481','I1731','','','0000-00-00','',0,2,1),(1268,'1','F481','I1732','','','0000-00-00','',1,6,1),(1269,'1','F481','I1733','','','0000-00-00','',0,3,1),(1270,'1','F481','I1734','','','0000-00-00','',0,4,1),(1271,'1','F481','I1735','','','0000-00-00','',0,5,1),(1272,'1','F544','I1736','','','0000-00-00','',0,3,1),(1273,'1','F481','I1738','','','0000-00-00','',0,1,1),(1274,'1','F481','I1739','','','0000-00-00','',0,7,1),(1275,'1','F627','I1740','','','0000-00-00','',1,5,1),(1276,'1','F628','I1742','','','0000-00-00','',0,1,1),(1277,'1','F627','I1744','','','0000-00-00','',0,6,1),(1278,'1','F596','I1746','','','0000-00-00','',0,1,1),(1279,'1','F544','I1747','','','0000-00-00','',0,4,1),(1280,'1','F596','I1748','','','0000-00-00','',0,2,1),(1281,'1','F597','I1749','','','0000-00-00','',0,3,1),(1282,'1','F597','I1750','','','0000-00-00','',0,4,1),(1283,'1','F597','I1751','','','0000-00-00','',0,5,1),(1284,'1','F007','I1753','','','0000-00-00','',0,4,1),(1285,'1','F007','I1754','','','0000-00-00','',0,3,1),(1286,'1','F007','I1755','','','0000-00-00','',0,1,1),(1287,'1','F007','I1756','','','0000-00-00','',0,2,1),(1288,'1','F044','I1760','','','0000-00-00','',0,1,1),(1289,'1','F044','I1761','','','0000-00-00','',0,2,1),(1290,'1','F626','I1763','','','0000-00-00','',1,5,1),(1291,'1','F626','I1764','','','0000-00-00','',1,6,1),(1292,'1','F626','I1765','','','0000-00-00','',0,1,1),(1293,'1','F626','I1766','','','0000-00-00','',0,2,1),(1294,'1','F626','I1767','','','0000-00-00','',0,3,1),(1295,'1','F626','I1768','','','0000-00-00','',0,4,1),(1296,'1','F552','I1770','','','0000-00-00','',0,5,1),(1297,'1','F633','I1771','','','0000-00-00','',0,1,1),(1298,'1','F633','I1772','','','0000-00-00','',0,2,1),(1299,'1','F634','I1774','','','0000-00-00','',1,1,1),(1300,'1','F635','I1777','','','0000-00-00','',0,1,1),(1301,'1','F590','I1778','','','0000-00-00','',0,6,1),(1302,'1','F590','I1779','','','0000-00-00','',0,9,1),(1303,'1','F590','I1780','','','0000-00-00','',0,8,1),(1304,'1','F552','I1781','','','0000-00-00','',1,6,1),(1305,'1','F590','I1782','','','0000-00-00','',0,7,1),(1306,'1','F590','I1783','','','0000-00-00','',0,1,1),(1307,'1','F618','I1784','','','0000-00-00','',0,2,1),(1308,'1','F618','I1785','','','0000-00-00','',0,3,1),(1309,'1','F562','I1786','','','0000-00-00','',0,1,1),(1310,'1','F622','I1789','','','0000-00-00','',0,1,1),(1311,'1','F621','I1791','','','0000-00-00','',0,1,1),(1312,'1','F558','I1792','','','0000-00-00','',1,4,1),(1313,'1','F621','I1793','','','0000-00-00','',0,2,1),(1314,'1','F621','I1794','','','0000-00-00','',0,3,1),(1315,'1','F621','I1795','','','0000-00-00','',0,4,1),(1316,'1','F621','I1796','','','0000-00-00','',0,5,1),(1317,'1','F638','I1797','','','0000-00-00','',1,1,1),(1318,'1','F586','I1799','','','0000-00-00','',0,1,1),(1319,'1','F586','I1800','','','0000-00-00','',1,2,1),(1320,'1','F586','I1801','','','0000-00-00','',0,3,1),(1321,'1','F641','I1802','','','0000-00-00','',0,1,1),(1322,'1','F642','I1806','','','0000-00-00','',0,1,1),(1323,'1','F642','I1807','','','0000-00-00','',0,2,1),(1324,'1','F642','I1808','','','0000-00-00','',1,4,1),(1325,'1','F642','I1809','','','0000-00-00','',0,5,1),(1326,'1','F642','I1810','','','0000-00-00','',0,6,1),(1327,'1','F642','I1811','','','0000-00-00','',1,7,1),(1328,'1','F642','I1812','','','0000-00-00','',0,8,1),(1329,'1','F642','I1813','','','0000-00-00','',0,9,1),(1330,'1','F644','I1815','','','0000-00-00','',0,1,1),(1331,'1','F644','I1816','','','0000-00-00','',1,2,1),(1332,'1','F644','I1817','','','0000-00-00','',1,4,1),(1333,'1','F646','I1821','','','0000-00-00','',1,1,1),(1334,'1','F650','I1823','','','0000-00-00','',0,1,1),(1335,'1','F650','I1824','','','0000-00-00','',1,6,1),(1336,'1','F650','I1826','','','0000-00-00','',0,4,1),(1337,'1','F650','I1827','','','0000-00-00','',0,3,1),(1338,'1','F650','I1828','','','0000-00-00','',0,5,1),(1339,'1','F650','I1829','','','0000-00-00','',0,2,1),(1340,'1','F543','I1833','','','0000-00-00','',0,1,1),(1341,'1','F597','I1834','','','0000-00-00','',0,1,1),(1342,'1','F654','I1837','','','0000-00-00','',0,1,1),(1343,'1','F543','I1840','','','0000-00-00','',1,7,1),(1344,'1','F657','I1841','','','0000-00-00','',0,6,1),(1345,'1','F657','I1842','','','0000-00-00','',1,10,1),(1346,'1','F657','I1844','','','0000-00-00','',0,1,1),(1347,'1','F657','I1846','','','0000-00-00','',1,2,1),(1348,'1','F658','I1848','','','0000-00-00','',0,1,1),(1349,'1','F660','I1850','','','0000-00-00','',0,1,1),(1350,'1','F660','I1851','','','0000-00-00','',0,4,1),(1351,'1','F660','I1852','','','0000-00-00','',0,5,1),(1352,'1','F660','I1853','','','0000-00-00','',0,6,1),(1353,'1','F658','I1854','','','0000-00-00','',0,2,1),(1354,'1','F658','I1855','','','0000-00-00','',0,3,1),(1355,'1','F657','I1856','','','0000-00-00','',0,4,1),(1356,'1','F657','I1857','','','0000-00-00','',1,7,1),(1357,'1','F657','I1859','','','0000-00-00','',0,8,1),(1358,'1','F661','I1861','','','0000-00-00','',0,3,1),(1359,'1','F661','I1862','','','0000-00-00','',0,4,1),(1360,'1','F661','I1863','','','0000-00-00','',0,5,1),(1361,'1','F661','I1864','','','0000-00-00','',0,6,1),(1362,'1','F661','I1865','','','0000-00-00','',0,1,1),(1363,'1','F661','I1866','','','0000-00-00','',0,2,1),(1364,'1','F657','I1867','','','0000-00-00','',1,3,1),(1365,'1','F660','I1868','','','0000-00-00','',0,2,1),(1366,'1','F508','I1869','','','0000-00-00','',0,1,1),(1367,'1','F660','I1871','','','0000-00-00','',0,3,1),(1368,'1','F662','I1873','','','0000-00-00','',0,1,1),(1369,'1','F662','I1874','','','0000-00-00','',0,2,1),(1370,'1','F662','I1875','','','0000-00-00','',0,3,1),(1371,'1','F543','I1876','','','0000-00-00','',1,10,1),(1372,'1','F648','I1879','','','0000-00-00','',0,1,1),(1373,'1','F648','I1880','','','0000-00-00','',0,2,1),(1374,'1','F648','I1882','','','0000-00-00','',0,3,1),(1375,'1','F648','I1883','','','0000-00-00','',0,4,1),(1376,'1','F648','I1884','','','0000-00-00','',0,5,1),(1377,'1','F648','I1885','','','0000-00-00','',0,6,1),(1378,'1','F648','I1886','','','0000-00-00','',0,7,1),(1379,'1','F644','I1887','','','0000-00-00','',0,5,1),(1380,'1','F648','I1888','','','0000-00-00','',0,8,1),(1381,'1','F648','I1889','','','0000-00-00','',0,9,1),(1382,'1','F644','I1890','','','0000-00-00','',0,6,1),(1383,'1','F649','I1893','','','0000-00-00','',0,1,1),(1384,'1','F647','I1895','','','0000-00-00','',0,1,1),(1385,'1','F647','I1896','','','0000-00-00','',0,2,1),(1386,'1','F647','I1897','','','0000-00-00','',0,3,1),(1387,'1','F609','I1899','','','0000-00-00','',0,1,1),(1388,'1','F609','I1900','','','0000-00-00','',0,2,1),(1389,'1','F562','I1902','','','0000-00-00','',0,3,1),(1390,'1','F562','I1904','','','0000-00-00','',1,4,1),(1391,'1','F562','I1905','','','0000-00-00','',0,5,1),(1392,'1','F639','I1907','','','0000-00-00','',0,5,1),(1393,'1','F639','I1908','','','0000-00-00','',0,6,1),(1394,'1','F639','I1909','','','0000-00-00','',1,1,1),(1395,'1','F639','I1910','','','0000-00-00','',0,2,1),(1396,'1','F667','I1911','','','0000-00-00','',0,1,1),(1397,'1','F533','I1914','','','0000-00-00','',1,8,1),(1398,'1','F553','I1915','','','0000-00-00','',0,1,1),(1399,'1','F553','I1916','','','0000-00-00','',0,6,1),(1400,'1','F553','I1917','','','0000-00-00','',0,2,1),(1401,'1','F553','I1918','','','0000-00-00','',0,3,1),(1402,'1','F652','I1921','','','0000-00-00','',0,1,1),(1403,'1','F670','I1922','','','0000-00-00','',1,1,1),(1404,'1','F672','I1923','','','0000-00-00','',1,2,1),(1405,'1','F543','I1925','','','0000-00-00','',1,9,1),(1406,'1','F594','I1926','','','0000-00-00','',0,1,1),(1407,'1','F594','I1927','','','0000-00-00','',0,3,1),(1408,'1','F594','I1928','','','0000-00-00','',0,2,1),(1409,'1','F594','I1929','','','0000-00-00','',0,4,1),(1410,'1','F594','I1931','','','0000-00-00','',0,6,1),(1411,'1','F594','I1932','','','0000-00-00','',0,7,1),(1412,'1','F673','I1933','','','0000-00-00','',1,1,1),(1413,'1','F674','I1934','','','0000-00-00','',1,4,1),(1414,'1','F672','I1935','','','0000-00-00','',0,3,1),(1415,'1','F543','I1936','','','0000-00-00','',1,2,1),(1416,'1','F672','I1937','','','0000-00-00','',0,1,1),(1417,'1','F672','I1938','','','0000-00-00','',0,4,1),(1418,'1','F672','I1939','','','0000-00-00','',0,5,1),(1419,'1','F672','I1940','','','0000-00-00','',0,6,1),(1420,'1','F673','I1943','','','0000-00-00','',0,5,1),(1421,'1','F673','I1944','','','0000-00-00','',0,3,1),(1422,'1','F673','I1945','','','0000-00-00','',0,6,1),(1423,'1','F673','I1946','','','0000-00-00','',0,4,1),(1424,'1','F543','I1947','','','0000-00-00','',1,6,1),(1425,'1','F673','I1948','','','0000-00-00','',0,7,1),(1426,'1','F673','I1949','','','0000-00-00','',0,8,1),(1427,'1','F673','I1950','','','0000-00-00','',0,9,1),(1428,'1','F673','I1951','','','0000-00-00','',0,2,1),(1429,'1','F674','I1954','','','0000-00-00','',0,1,1),(1430,'1','F674','I1955','','','0000-00-00','',0,2,1),(1431,'1','F674','I1956','','','0000-00-00','',0,3,1),(1432,'1','F674','I1957','','','0000-00-00','',0,5,1),(1433,'1','F543','I1958','','','0000-00-00','',1,5,1),(1434,'1','F652','I1959','','','0000-00-00','',0,2,1),(1435,'1','F652','I1960','','','0000-00-00','',0,3,1),(1436,'1','F666','I1963','','','0000-00-00','',0,4,1),(1437,'1','F666','I1964','','','0000-00-00','',0,5,1),(1438,'1','F666','I1965','','','0000-00-00','',0,6,1),(1439,'1','F666','I1966','','','0000-00-00','',0,1,1),(1440,'1','F666','I1967','','','0000-00-00','',0,7,1),(1441,'1','F666','I1968','','','0000-00-00','',0,2,1),(1442,'1','F543','I1969','','','0000-00-00','',1,3,1),(1443,'1','F666','I1970','','','0000-00-00','',0,3,1),(1444,'1','F666','I1971','','','0000-00-00','',0,8,1),(1445,'1','F608','I1974','','','0000-00-00','',0,1,1),(1446,'1','F627','I1975','','','0000-00-00','',0,1,1),(1447,'1','F675','I1980','','','0000-00-00','',0,1,1),(1448,'1','F516','I1981','','','0000-00-00','',0,2,1),(1449,'1','F675','I1982','','','0000-00-00','',0,2,1),(1450,'1','F517','I1983','','','0000-00-00','',0,1,1),(1451,'1','F600','I1984','','','0000-00-00','',0,2,1),(1452,'1','F504','I1985','','','0000-00-00','',0,3,1),(1453,'1','F504','I1986','','','0000-00-00','',0,4,1),(1454,'1','F516','I1987','','','0000-00-00','',0,3,1),(1455,'1','F008','I1988','','','0000-00-00','',0,8,1),(1456,'1','F520','I1990','','','0000-00-00','',1,3,1),(1457,'1','F620','I1991','','','0000-00-00','',1,1,1),(1458,'1','F518','I1992','','','0000-00-00','',0,1,1),(1459,'1','F518','I1994','','','0000-00-00','',1,2,1),(1460,'1','F518','I1996','','','0000-00-00','',1,3,1),(1461,'1','F518','I1997','','','0000-00-00','',0,4,1),(1462,'1','F518','I1998','','','0000-00-00','',0,5,1),(1463,'1','F518','I1999','','','0000-00-00','',0,6,1),(1464,'1','F518','I2000','','','0000-00-00','',0,7,1),(1465,'1','F518','I2001','','','0000-00-00','',0,8,1),(1466,'1','F518','I2002','','','0000-00-00','',0,9,1),(1467,'1','F518','I2003','','','0000-00-00','',0,10,1),(1468,'1','F677','I2007','','','0000-00-00','',1,1,1),(1469,'1','F678','I2009','','','0000-00-00','',1,1,1),(1470,'1','F679','I2011','','','0000-00-00','',1,1,1),(1471,'1','F124','I2013','','','0000-00-00','',0,4,1),(1472,'1','F124','I2014','','','0000-00-00','',0,5,1),(1473,'1','F124','I2015','','','0000-00-00','',0,2,1),(1474,'1','F124','I2016','','','0000-00-00','',0,3,1),(1475,'1','F124','I2017','','','0000-00-00','',0,1,1),(1476,'1','F124','I2018','','','0000-00-00','',0,6,1),(1477,'1','F463','I2021','','','0000-00-00','',1,2,1),(1478,'1','F685','I2022','','','0000-00-00','',1,1,1),(1479,'1','F502','I2024','','','0000-00-00','',1,2,1),(1480,'1','F463','I2025','','','0000-00-00','',1,3,1),(1481,'1','F466','I2026','','','0000-00-00','',1,2,1),(1482,'1','F489','I2035','','','0000-00-00','',0,1,1),(1483,'1','F489','I2036','','','0000-00-00','',0,2,1),(1484,'1','F489','I2037','','','0000-00-00','',0,3,1),(1485,'1','F488','I2038','','','0000-00-00','',0,1,1),(1486,'1','F687','I2040','','','0000-00-00','',0,2,1),(1487,'1','F688','I2045','','','0000-00-00','',1,1,1),(1488,'1','F685','I2047','','','0000-00-00','',0,2,1),(1489,'1','F685','I2048','','','0000-00-00','',0,3,1),(1490,'1','F495','I2050','','','0000-00-00','',0,1,1),(1491,'1','F495','I2051','','','0000-00-00','',0,2,1),(1492,'1','F497','I2052','','','0000-00-00','',0,1,1),(1493,'1','F689','I2053','','','0000-00-00','',1,1,1),(1494,'1','F464','I2054','','','0000-00-00','',0,1,1),(1495,'1','F464','I2055','','','0000-00-00','',0,2,1),(1496,'1','F464','I2056','','','0000-00-00','',0,3,1),(1497,'1','F464','I2057','','','0000-00-00','',0,5,1),(1498,'1','F464','I2058','','','0000-00-00','',0,6,1),(1499,'1','F464','I2059','','','0000-00-00','',0,7,1),(1500,'1','F687','I2063','','','0000-00-00','',0,1,1),(1501,'1','F450','I2064','','','0000-00-00','',1,2,1),(1502,'1','F450','I2065','','','0000-00-00','',0,6,1),(1503,'1','F691','I2068','','','0000-00-00','',0,1,1),(1504,'1','F692','I2070','','','0000-00-00','',0,1,1),(1505,'1','F693','I2072','','','0000-00-00','',0,1,1),(1506,'1','F694','I2074','','','0000-00-00','',0,1,1),(1507,'1','F695','I2076','','','0000-00-00','',1,1,1),(1508,'1','F696','I2078','','','0000-00-00','',0,1,1),(1509,'1','F697','I2080','','','0000-00-00','',1,1,1),(1510,'1','F408','I2081','','','0000-00-00','',0,5,1),(1511,'1','F408','I2082','','','0000-00-00','',0,6,1),(1512,'1','F439','I2083','','','0000-00-00','',0,1,1),(1513,'1','F069','I2084','','','0000-00-00','',0,1,1),(1514,'1','F427','I2085','','','0000-00-00','',0,3,1),(1515,'1','F427','I2086','','','0000-00-00','',0,4,1),(1516,'1','F430','I2089','','','0000-00-00','',0,1,1),(1517,'1','F430','I2090','','','0000-00-00','',0,2,1),(1518,'1','F430','I2091','','','0000-00-00','',0,3,1),(1519,'1','F430','I2092','','','0000-00-00','',0,4,1),(1520,'1','F430','I2093','','','0000-00-00','',0,5,1),(1521,'1','F430','I2094','','','0000-00-00','',0,6,1),(1522,'1','F430','I2095','','','0000-00-00','',0,7,1),(1523,'1','F700','I2099','','','0000-00-00','',1,1,1),(1524,'1','F701','I2101','','','0000-00-00','',1,1,1),(1525,'1','F702','I2103','','','0000-00-00','',0,1,1),(1526,'1','F703','I2106','','','0000-00-00','',0,1,1),(1527,'1','F704','I2108','','','0000-00-00','',0,1,1),(1528,'1','F705','I2110','','','0000-00-00','',1,1,1),(1529,'1','F706','I2113','','','0000-00-00','',0,1,1),(1530,'1','F707','I2115','','','0000-00-00','',0,1,1),(1531,'1','F507','I2116','','','0000-00-00','',0,3,1),(1532,'1','F530','I2117','','','0000-00-00','',0,3,1),(1533,'1','F533','I2118','','','0000-00-00','',0,3,1),(1534,'1','F507','I2119','','','0000-00-00','',0,4,1),(1535,'1','F533','I2120','','','0000-00-00','',0,4,1),(1536,'1','F567','I2122','','','0000-00-00','',0,4,1),(1537,'1','F567','I2123','','','0000-00-00','',0,5,1),(1538,'1','F567','I2124','','','0000-00-00','',0,6,1),(1539,'1','F542','I2125','','','0000-00-00','',0,1,1),(1540,'1','F542','I2126','','','0000-00-00','',0,2,1),(1541,'1','F539','I2128','','','0000-00-00','',0,2,1),(1542,'1','F553','I2130','','','0000-00-00','',0,10,1),(1543,'1','F553','I2131','','','0000-00-00','',0,15,1),(1544,'1','F553','I2132','','','0000-00-00','',0,12,1),(1545,'1','F628','I2133','','','0000-00-00','',0,2,1),(1546,'1','F633','I2134','','','0000-00-00','',0,3,1),(1547,'1','F633','I2135','','','0000-00-00','',0,4,1),(1548,'1','F635','I2136','','','0000-00-00','',0,2,1),(1549,'1','F641','I2138','','','0000-00-00','',0,2,1),(1550,'1','F642','I2139','','','0000-00-00','',0,3,1),(1551,'1','F644','I2140','','','0000-00-00','',0,3,1),(1552,'1','F657','I2141','','','0000-00-00','',0,5,1),(1553,'1','F657','I2142','','','0000-00-00','',0,9,1),(1554,'1','F639','I2143','','','0000-00-00','',0,3,1),(1555,'1','F639','I2144','','','0000-00-00','',0,4,1),(1556,'1','F553','I2145','','','0000-00-00','',0,4,1),(1557,'1','F553','I2146','','','0000-00-00','',0,7,1),(1558,'1','F553','I2147','','','0000-00-00','',0,5,1),(1559,'1','F627','I2149','','','0000-00-00','',0,2,1),(1560,'1','F710','I2151','','','0000-00-00','',0,1,1),(1561,'1','F710','I2152','','','0000-00-00','',0,2,1),(1562,'1','F711','I2154','','','0000-00-00','',0,1,1),(1563,'1','F182','I2157','','','0000-00-00','',1,4,1),(1564,'1','F713','I2159','','','0000-00-00','',1,1,1),(1565,'1','F055','I2160','','','0000-00-00','',0,4,1),(1566,'1','F055','I2161','','','0000-00-00','',0,5,1),(1567,'1','F058','I2162','','','0000-00-00','',0,1,1),(1568,'1','F058','I2163','','','0000-00-00','',1,2,1),(1569,'1','F058','I2164','','','0000-00-00','',0,3,1),(1570,'1','F055','I2165','','','0000-00-00','',0,6,1),(1571,'1','F714','I2168','','','0000-00-00','',0,1,1),(1572,'1','F055','I2169','','','0000-00-00','',0,7,1),(1573,'1','F074','I2170','','','0000-00-00','',1,1,1),(1574,'1','F715','I2172','','','0000-00-00','',0,1,1),(1575,'1','F461','I2173','','','0000-00-00','',0,3,1),(1576,'1','F461','I2174','','','0000-00-00','',0,6,1),(1577,'1','F126','I2176','','','0000-00-00','',0,1,1),(1578,'1','F126','I2177','','','0000-00-00','',1,4,1),(1579,'1','F126','I2178','','','0000-00-00','',0,3,1),(1580,'1','F464','I2179','','','0000-00-00','',0,4,1),(1581,'1','F464','I2180','','','0000-00-00','',0,9,1),(1582,'1','F464','I2181','','','0000-00-00','',0,10,1),(1583,'1','F450','I2184','','','0000-00-00','',0,4,1),(1584,'1','F690','I2185','','','0000-00-00','',0,1,1),(1585,'1','F690','I2186','','','0000-00-00','',0,2,1),(1586,'1','F466','I2187','','','0000-00-00','',0,5,1),(1587,'1','F466','I2188','','','0000-00-00','',0,6,1),(1588,'1','F449','I2189','','','0000-00-00','',0,3,1),(1589,'1','F449','I2190','','','0000-00-00','',0,5,1),(1590,'1','F449','I2191','','','0000-00-00','',0,6,1),(1591,'1','F449','I2192','','','0000-00-00','',0,7,1),(1592,'1','F449','I2193','','','0000-00-00','',0,8,1),(1593,'1','F449','I2194','','','0000-00-00','',0,9,1),(1594,'1','F465','I2195','','','0000-00-00','',0,1,1),(1595,'1','F291','I2197','','','0000-00-00','',0,7,1),(1596,'1','F291','I2199','','','0000-00-00','',1,1,1),(1597,'1','F036','I2200','','','0000-00-00','',1,3,1),(1598,'1','F722','I2201','','','0000-00-00','',1,1,1),(1599,'1','F723','I2202','','','0000-00-00','',1,1,1),(1600,'1','F724','I2204','','','0000-00-00','',1,1,1),(1601,'1','F291','I2205','','','0000-00-00','',0,5,1),(1602,'1','F291','I2206','','','0000-00-00','',1,4,1),(1603,'1','F721','I2208','','','0000-00-00','',0,1,1),(1604,'1','F721','I2209','','','0000-00-00','',0,2,1),(1605,'1','F721','I2210','','','0000-00-00','',0,3,1),(1606,'1','F721','I2211','','','0000-00-00','',0,4,1),(1607,'1','F721','I2212','','','0000-00-00','',0,5,1),(1608,'1','F721','I2213','','','0000-00-00','',1,6,1),(1609,'1','F726','I2216','','','0000-00-00','',0,1,1),(1610,'1','F726','I2217','','','0000-00-00','',0,2,1),(1611,'1','F726','I2218','','','0000-00-00','',0,3,1),(1612,'1','F726','I2219','','','0000-00-00','',0,4,1),(1613,'1','F726','I2220','','','0000-00-00','',0,5,1),(1614,'1','F726','I2221','','','0000-00-00','',0,6,1),(1615,'1','F722','I2224','','','0000-00-00','',0,3,1),(1616,'1','F722','I2225','','','0000-00-00','',0,4,1),(1617,'1','F723','I2226','','','0000-00-00','',0,2,1),(1618,'1','F723','I2227','','','0000-00-00','',0,3,1),(1619,'1','F727','I2229','','','0000-00-00','',1,1,1),(1620,'1','F720','I2230','','','0000-00-00','',1,5,1),(1621,'1','F720','I2231','','','0000-00-00','',0,4,1),(1622,'1','F720','I2232','','','0000-00-00','',0,3,1),(1623,'1','F720','I2233','','','0000-00-00','',0,2,1),(1624,'1','F720','I2234','','','0000-00-00','',1,1,1),(1625,'1','F718','I2235','','','0000-00-00','',0,1,1),(1626,'1','F718','I2236','','','0000-00-00','',0,2,1),(1627,'1','F078','I2238','','','0000-00-00','',0,4,1),(1628,'1','F078','I2239','','','0000-00-00','',0,3,1),(1629,'1','F080','I2242','','','0000-00-00','',0,1,1),(1630,'1','F080','I2243','','','0000-00-00','',0,2,1),(1631,'1','F080','I2244','','','0000-00-00','',0,3,1),(1632,'1','F502','I2248','','','0000-00-00','',0,1,1),(1633,'1','F502','I2249','','','0000-00-00','',0,3,1),(1634,'1','F427','I2252','','','0000-00-00','',0,5,1),(1635,'1','F427','I2253','','','0000-00-00','',0,6,1),(1636,'1','F427','I2254','','','0000-00-00','',1,7,1),(1637,'1','F427','I2255','','','0000-00-00','',1,9,1),(1638,'1','F427','I2256','','','0000-00-00','',0,8,1),(1639,'1','F427','I2257','','','0000-00-00','',1,10,1),(1640,'1','F731','I2259','','','0000-00-00','',0,1,1),(1641,'1','F734','I2260','','','0000-00-00','',1,1,1),(1642,'1','F732','I2261','','','0000-00-00','',0,1,1),(1643,'1','F732','I2262','','','0000-00-00','',0,2,1),(1644,'1','F732','I2265','','','0000-00-00','',0,3,1),(1645,'1','F732','I2266','','','0000-00-00','',0,4,1),(1646,'1','F733','I2268','','','0000-00-00','',0,1,1),(1647,'1','F733','I2269','','','0000-00-00','',0,2,1),(1648,'1','F733','I2270','','','0000-00-00','',0,3,1),(1649,'1','F735','I2271','','','0000-00-00','',1,1,1),(1650,'1','F433','I2273','','','0000-00-00','',0,1,1),(1651,'1','F433','I2274','','','0000-00-00','',0,2,1),(1652,'1','F433','I2275','','','0000-00-00','',0,3,1),(1653,'1','F433','I2276','','','0000-00-00','',0,4,1),(1654,'1','F433','I2277','','','0000-00-00','',0,5,1),(1655,'1','F433','I2278','','','0000-00-00','',0,6,1),(1656,'1','F736','I2279','','','0000-00-00','',1,1,1),(1657,'1','F429','I2281','','','0000-00-00','',0,1,1),(1658,'1','F429','I2282','','','0000-00-00','',0,2,1),(1659,'1','F429','I2283','','','0000-00-00','',0,3,1),(1660,'1','F429','I2284','','','0000-00-00','',0,4,1),(1661,'1','F429','I2285','','','0000-00-00','',0,5,1),(1662,'1','F429','I2286','','','0000-00-00','',0,6,1),(1663,'1','F739','I2287','','','0000-00-00','',1,1,1),(1664,'1','F428','I2289','','','0000-00-00','',0,1,1),(1665,'1','F428','I2290','','','0000-00-00','',0,2,1),(1666,'1','F428','I2291','','','0000-00-00','',0,3,1),(1667,'1','F428','I2292','','','0000-00-00','',0,4,1),(1668,'1','F428','I2293','','','0000-00-00','',0,5,1),(1669,'1','F428','I2294','','','0000-00-00','',0,6,1),(1670,'1','F428','I2295','','','0000-00-00','',0,7,1),(1671,'1','F432','I2297','','','0000-00-00','',0,1,1),(1672,'1','F740','I2300','','','0000-00-00','',0,1,1),(1673,'1','F741','I2302','','','0000-00-00','',0,1,1),(1674,'1','F742','I2304','','','0000-00-00','',0,1,1),(1675,'1','F743','I2306','','','0000-00-00','',0,1,1),(1676,'1','F744','I2308','','','0000-00-00','',0,1,1),(1677,'1','F420','I2311','','','0000-00-00','',0,1,1),(1678,'1','F420','I2312','','','0000-00-00','',0,2,1),(1679,'1','F734','I2313','','','0000-00-00','',0,2,1),(1680,'1','F716','I2316','','','0000-00-00','',0,1,1),(1681,'1','F716','I2317','','','0000-00-00','',0,2,1),(1682,'1','F084','I2320','','','0000-00-00','',0,1,1),(1683,'1','F084','I2321','','','0000-00-00','',0,2,1),(1684,'1','F084','I2322','','','0000-00-00','',0,5,1),(1685,'1','F084','I2323','','','0000-00-00','',0,4,1),(1686,'1','F274','I2324','','','0000-00-00','',0,6,1),(1687,'1','F719','I2328','','','0000-00-00','',0,1,1),(1688,'1','F719','I2329','','','0000-00-00','',1,2,1),(1689,'1','F719','I2330','','','0000-00-00','',0,3,1),(1690,'1','F719','I2331','','','0000-00-00','',0,4,1),(1691,'1','F719','I2332','','','0000-00-00','',0,5,1),(1692,'1','F722','I2333','','','0000-00-00','',0,2,1),(1693,'1','F034','I2336','','','0000-00-00','',0,2,1),(1694,'1','F279','I2338','','','0000-00-00','',0,2,1),(1695,'1','F097','I2340','','','0000-00-00','',0,1,1),(1696,'1','F749','I2341','','','0000-00-00','',1,1,1),(1697,'1','F177','I2344','','','0000-00-00','',0,1,1),(1698,'1','F177','I2345','','','0000-00-00','',1,2,1),(1699,'1','F750','I2347','','','0000-00-00','',1,1,1),(1700,'1','F751','I2349','','','0000-00-00','',0,1,1),(1701,'1','F751','I2350','','','0000-00-00','',0,2,1),(1702,'1','F750','I2351','','','0000-00-00','',1,2,1),(1703,'1','F752','I2353','','','0000-00-00','',0,1,1),(1704,'1','F752','I2354','','','0000-00-00','',0,2,1),(1705,'1','F752','I2355','','','0000-00-00','',0,3,1),(1706,'1','F752','I2356','','','0000-00-00','',0,4,1),(1707,'1','F752','I2357','','','0000-00-00','',0,5,1),(1708,'1','F750','I2358','','','0000-00-00','',0,3,1),(1709,'1','F750','I2359','','','0000-00-00','',1,4,1),(1710,'1','F753','I2361','','','0000-00-00','',0,1,1),(1711,'1','F753','I2362','','','0000-00-00','',0,2,1),(1712,'1','F753','I2363','','','0000-00-00','',0,3,1),(1713,'1','F753','I2364','','','0000-00-00','',0,4,1),(1714,'1','F178','I2365','','','0000-00-00','',1,1,1),(1715,'1','F754','I2367','','','0000-00-00','',0,1,1),(1716,'1','F754','I2368','','','0000-00-00','',1,2,1),(1717,'1','F755','I2370','','','0000-00-00','',0,1,1),(1718,'1','F754','I2371','','','0000-00-00','',1,3,1),(1719,'1','F756','I2373','','','0000-00-00','',0,1,1),(1720,'1','F756','I2374','','','0000-00-00','',0,2,1),(1721,'1','F756','I2375','','','0000-00-00','',0,3,1),(1722,'1','F756','I2376','','','0000-00-00','',0,4,1),(1723,'1','F178','I2377','','','0000-00-00','',1,2,1),(1724,'1','F757','I2379','','','0000-00-00','',1,1,1),(1725,'1','F757','I2380','','','0000-00-00','',1,2,1),(1726,'1','F757','I2381','','','0000-00-00','',1,3,1),(1727,'1','F758','I2383','','','0000-00-00','',0,1,1),(1728,'1','F758','I2384','','','0000-00-00','',0,2,1),(1729,'1','F758','I2385','','','0000-00-00','',0,3,1),(1730,'1','F759','I2387','','','0000-00-00','',0,1,1),(1731,'1','F759','I2388','','','0000-00-00','',0,2,1),(1732,'1','F760','I2390','','','0000-00-00','',0,1,1),(1733,'1','F757','I2391','','','0000-00-00','',0,4,1),(1734,'1','F164','I2393','','','0000-00-00','',0,1,1),(1735,'1','F728','I2394','','','0000-00-00','',0,1,1),(1736,'1','F728','I2395','','','0000-00-00','',0,2,1),(1737,'1','F728','I2396','','','0000-00-00','',0,4,1),(1738,'1','F728','I2397','','','0000-00-00','',0,5,1),(1739,'1','F728','I2398','','','0000-00-00','',0,6,1),(1740,'1','F728','I2399','','','0000-00-00','',0,3,1),(1741,'1','F728','I2400','','','0000-00-00','',0,7,1),(1742,'1','F729','I2402','','','0000-00-00','',0,1,1),(1743,'1','F729','I2403','','','0000-00-00','',1,2,1),(1744,'1','F729','I2405','','','0000-00-00','',0,3,1),(1745,'1','F729','I2406','','','0000-00-00','',1,4,1),(1746,'1','F762','I2409','','','0000-00-00','',0,3,1),(1747,'1','F762','I2410','','','0000-00-00','',1,2,1),(1748,'1','F762','I2411','','','0000-00-00','',0,1,1),(1749,'1','F762','I2412','','','0000-00-00','',0,4,1),(1750,'1','F762','I2413','','','0000-00-00','',0,5,1),(1751,'1','F762','I2414','','','0000-00-00','',0,6,1),(1752,'1','F765','I2415','','','0000-00-00','',0,1,1),(1753,'1','F765','I2416','','','0000-00-00','',0,2,1),(1754,'1','F765','I2417','','','0000-00-00','',0,3,1),(1755,'1','F765','I2418','','','0000-00-00','',0,4,1),(1756,'1','F765','I2419','','','0000-00-00','',0,5,1),(1757,'1','F765','I2420','','','0000-00-00','',0,6,1),(1758,'1','F764','I2422','','','0000-00-00','',0,2,1),(1759,'1','F764','I2423','','','0000-00-00','',0,3,1),(1760,'1','F764','I2424','','','0000-00-00','',0,4,1),(1761,'1','F764','I2425','','','0000-00-00','',1,5,1),(1762,'1','F764','I2426','','','0000-00-00','',0,6,1),(1763,'1','F764','I2427','','','0000-00-00','',0,7,1),(1764,'1','F764','I2428','','','0000-00-00','',0,8,1),(1765,'1','F764','I2429','','','0000-00-00','',0,9,1),(1766,'1','F764','I2430','','','0000-00-00','',1,10,1),(1767,'1','F767','I2432','','','0000-00-00','',0,1,1),(1768,'1','F767','I2433','','','0000-00-00','',0,2,1),(1769,'1','F767','I2434','','','0000-00-00','',0,3,1),(1770,'1','F767','I2435','','','0000-00-00','',0,4,1),(1771,'1','F764','I2436','','','0000-00-00','',0,11,1),(1772,'1','F764','I2438','','','0000-00-00','',0,1,1),(1773,'1','F763','I2439','','','0000-00-00','',1,1,1),(1774,'1','F763','I2441','','','0000-00-00','',0,2,1),(1775,'1','F763','I2442','','','0000-00-00','',0,3,1),(1776,'1','F763','I2443','','','0000-00-00','',0,4,1),(1777,'1','F763','I2444','','','0000-00-00','',0,5,1),(1778,'1','F763','I2445','','','0000-00-00','',0,7,1),(1779,'1','F763','I2446','','','0000-00-00','',1,6,1),(1780,'1','F763','I2447','','','0000-00-00','',0,8,1),(1781,'1','F770','I2449','','','0000-00-00','',0,1,1),(1782,'1','F769','I2450','','','0000-00-00','',1,1,1),(1783,'1','F771','I2452','','','0000-00-00','',0,1,1),(1784,'1','F769','I2453','','','0000-00-00','',1,2,1),(1785,'1','F769','I2454','','','0000-00-00','',0,3,1),(1786,'1','F769','I2455','','','0000-00-00','',1,4,1),(1787,'1','F774','I2457','','','0000-00-00','',1,1,1),(1788,'1','F775','I2459','','','0000-00-00','',1,1,1),(1789,'1','F775','I2460','','','0000-00-00','',1,2,1),(1790,'1','F775','I2461','','','0000-00-00','',1,3,1),(1791,'1','F776','I2463','','','0000-00-00','',0,1,1),(1792,'1','F776','I2464','','','0000-00-00','',0,2,1),(1793,'1','F776','I2465','','','0000-00-00','',0,3,1),(1794,'1','F776','I2466','','','0000-00-00','',0,4,1),(1795,'1','F774','I2467','','','0000-00-00','',1,2,1),(1796,'1','F774','I2468','','','0000-00-00','',1,3,1),(1797,'1','F779','I2470','','','0000-00-00','',1,1,1),(1798,'1','F779','I2471','','','0000-00-00','',0,2,1),(1799,'1','F779','I2472','','','0000-00-00','',0,3,1),(1800,'1','F035','I2474','','','0000-00-00','',0,3,1),(1801,'1','F035','I2475','','','0000-00-00','',0,4,1),(1802,'1','F035','I2476','','','0000-00-00','',0,5,1),(1803,'1','F035','I2477','','','0000-00-00','',0,6,1),(1804,'1','F773','I2478','','','0000-00-00','',0,1,1),(1805,'1','F773','I2479','','','0000-00-00','',0,2,1),(1806,'1','F772','I2481','','','0000-00-00','',0,1,1),(1807,'1','F783','I2483','','','0000-00-00','',0,1,1),(1808,'1','F783','I2484','','','0000-00-00','',0,2,1),(1809,'1','F777','I2486','','','0000-00-00','',0,1,1),(1810,'1','F777','I2487','','','0000-00-00','',0,2,1),(1811,'1','F766','I2489','','','0000-00-00','',0,1,1),(1812,'1','F296','I2490','','','0000-00-00','',0,2,1),(1813,'1','F507','I2491','','','0000-00-00','',0,5,1),(1814,'1','F507','I2492','','','0000-00-00','',0,6,1),(1815,'1','F103','I2493','','','0000-00-00','',0,5,1),(1816,'1','F103','I2494','','','0000-00-00','',0,6,1),(1817,'1','F103','I2495','','','0000-00-00','',0,7,1),(1818,'1','F103','I2496','','','0000-00-00','',0,8,1),(1819,'1','F104','I2497','','','0000-00-00','',0,4,1),(1820,'1','F104','I2498','','','0000-00-00','',0,5,1),(1821,'1','F104','I2499','','','0000-00-00','',0,6,1),(1822,'1','F628','I2500','','','0000-00-00','',0,3,1),(1823,'1','F627','I2502','','','0000-00-00','',0,3,1),(1824,'1','F507','I2503','','','0000-00-00','',0,7,1),(1825,'1','F507','I2504','','','0000-00-00','',0,8,1),(1826,'1','F628','I2505','','','0000-00-00','',0,4,1),(1827,'1','F627','I2506','','','0000-00-00','',0,4,1),(1828,'1','F097','I2508','','','0000-00-00','',0,2,1),(1829,'1','F097','I2509','','','0000-00-00','',0,6,1),(1830,'1','F179','I2511','','','0000-00-00','',1,1,1),(1831,'1','F181','I2513','','','0000-00-00','',1,1,1),(1832,'1','F181','I2514','','','0000-00-00','',1,2,1),(1833,'1','F181','I2515','','','0000-00-00','',1,3,1),(1834,'1','F175','I2516','','','0000-00-00','',0,1,1),(1835,'1','F175','I2517','','','0000-00-00','',1,2,1),(1836,'1','F176','I2519','','','0000-00-00','',1,2,1),(1837,'1','F176','I2520','','','0000-00-00','',0,1,1),(1838,'1','F085','I2521','','','0000-00-00','',1,7,1),(1839,'1','F085','I2522','','','0000-00-00','',1,1,1),(1840,'1','F085','I2523','','','0000-00-00','',1,5,1),(1841,'1','F085','I2524','','','0000-00-00','',1,6,1),(1842,'1','F142','I2525','','','0000-00-00','',1,1,1),(1843,'1','F142','I2526','','','0000-00-00','',0,2,1),(1844,'1','F142','I2528','','','0000-00-00','',1,3,1),(1845,'1','F143','I2529','','','0000-00-00','',0,1,1),(1846,'1','F143','I2531','','','0000-00-00','',1,2,1),(1847,'1','F791','I2533','','','0000-00-00','',1,3,1),(1848,'1','F791','I2534','','','0000-00-00','',1,1,1),(1849,'1','F791','I2535','','','0000-00-00','',1,2,1),(1850,'1','F792','I2537','','','0000-00-00','',0,1,1),(1851,'1','F792','I2538','','','0000-00-00','',0,2,1),(1852,'1','F182','I2539','','','0000-00-00','',1,1,1),(1853,'1','F182','I2540','','','0000-00-00','',0,2,1),(1854,'1','F182','I2541','','','0000-00-00','',1,3,1),(1855,'1','F182','I2542','','','0000-00-00','',1,5,1),(1856,'1','F182','I2543','','','0000-00-00','',1,6,1),(1857,'1','F183','I2544','','','0000-00-00','',1,2,1),(1858,'1','F183','I2545','','','0000-00-00','',1,1,1),(1859,'1','F183','I2546','','','0000-00-00','',1,3,1),(1860,'1','F793','I2548','','','0000-00-00','',1,1,1),(1861,'1','F793','I2549','','','0000-00-00','',1,2,1),(1862,'1','F793','I2550','','','0000-00-00','',1,3,1),(1863,'1','F793','I2551','','','0000-00-00','',0,4,1),(1864,'1','F793','I2553','','','0000-00-00','',1,5,1),(1865,'1','F793','I2554','','','0000-00-00','',1,6,1),(1866,'1','F793','I2555','','','0000-00-00','',1,7,1),(1867,'1','F794','I2557','','','0000-00-00','',1,1,1),(1868,'1','F794','I2558','','','0000-00-00','',1,2,1),(1869,'1','F795','I2560','','','0000-00-00','',1,2,1),(1870,'1','F795','I2561','','','0000-00-00','',0,1,1),(1871,'1','F797','I2564','','','0000-00-00','',1,2,1),(1872,'1','F797','I2565','','','0000-00-00','',1,1,1),(1873,'1','F204','I2567','','','0000-00-00','',1,1,1),(1874,'1','F204','I2568','','','0000-00-00','',1,2,1),(1875,'1','F204','I2569','','','0000-00-00','',0,3,1),(1876,'1','F205','I2572','','','0000-00-00','',1,2,1),(1877,'1','F205','I2573','','','0000-00-00','',1,3,1),(1878,'1','F205','I2574','','','0000-00-00','',1,1,1),(1879,'1','F202','I2576','','','0000-00-00','',0,1,1),(1880,'1','F202','I2578','','','0000-00-00','',0,2,1),(1881,'1','F202','I2580','','','0000-00-00','',0,3,1),(1882,'1','F785','I2582','','','0000-00-00','',0,1,1),(1883,'1','F785','I2583','','','0000-00-00','',0,2,1),(1884,'1','F786','I2585','','','0000-00-00','',0,1,1),(1885,'1','F786','I2586','','','0000-00-00','',0,2,1),(1886,'1','F786','I2587','','','0000-00-00','',0,3,1),(1887,'1','F787','I2589','','','0000-00-00','',0,1,1),(1888,'1','F787','I2590','','','0000-00-00','',0,2,1),(1889,'1','F787','I2591','','','0000-00-00','',0,3,1),(1890,'1','F788','I2593','','','0000-00-00','',0,1,1),(1891,'1','F788','I2594','','','0000-00-00','',0,2,1),(1892,'1','F789','I2596','','','0000-00-00','',0,1,1),(1893,'1','F789','I2597','','','0000-00-00','',0,2,1),(1894,'1','F790','I2599','','','0000-00-00','',0,1,1),(1895,'1','F790','I2600','','','0000-00-00','',0,2,1),(1896,'1','F800','I2602','','','0000-00-00','',0,1,1),(1897,'1','F800','I2603','','','0000-00-00','',0,2,1),(1898,'1','F800','I2604','','','0000-00-00','',0,3,1),(1899,'1','F801','I2606','','','0000-00-00','',0,1,1),(1900,'1','F802','I2608','','','0000-00-00','',0,1,1),(1901,'1','F802','I2609','','','0000-00-00','',0,2,1),(1902,'1','F802','I2610','','','0000-00-00','',0,3,1),(1903,'1','F802','I2611','','','0000-00-00','',0,4,1),(1904,'1','F803','I2613','','','0000-00-00','',0,1,1),(1905,'1','F803','I2614','','','0000-00-00','',0,2,1),(1906,'1','F712','I2615','','','0000-00-00','',0,1,1),(1907,'1','F712','I2616','','','0000-00-00','',0,2,1),(1908,'1','F712','I2617','','','0000-00-00','',0,3,1),(1909,'1','F804','I2619','','','0000-00-00','',0,1,1),(1910,'1','F804','I2620','','','0000-00-00','',0,2,1),(1911,'1','F805','I2622','','','0000-00-00','',0,1,1),(1912,'1','F805','I2623','','','0000-00-00','',0,2,1),(1913,'1','F805','I2624','','','0000-00-00','',0,3,1),(1914,'1','F805','I2625','','','0000-00-00','',0,4,1),(1915,'1','F805','I2626','','','0000-00-00','',0,5,1),(1916,'1','F806','I2628','','','0000-00-00','',0,1,1),(1917,'1','F806','I2629','','','0000-00-00','',0,2,1),(1918,'1','F806','I2630','','','0000-00-00','',0,3,1),(1919,'1','F807','I2632','','','0000-00-00','',0,1,1),(1920,'1','F807','I2633','','','0000-00-00','',0,2,1),(1921,'1','F807','I2634','','','0000-00-00','',0,3,1),(1922,'1','F809','I2637','','','0000-00-00','',0,1,1),(1923,'1','F809','I2638','','','0000-00-00','',0,2,1),(1924,'1','F809','I2639','','','0000-00-00','',0,3,1),(1925,'1','F809','I2640','','','0000-00-00','',0,4,1),(1926,'1','F809','I2641','','','0000-00-00','',0,5,1),(1927,'1','F811','I2644','','','0000-00-00','',0,1,1),(1928,'1','F811','I2645','','','0000-00-00','',0,2,1),(1929,'1','F811','I2646','','','0000-00-00','',0,3,1),(1930,'1','F812','I2648','','','0000-00-00','',0,1,1),(1931,'1','F812','I2649','','','0000-00-00','',0,2,1),(1932,'1','F813','I2651','','','0000-00-00','',0,1,1),(1933,'1','F813','I2652','','','0000-00-00','',0,2,1),(1934,'1','F814','I2654','','','0000-00-00','',0,1,1),(1935,'1','F814','I2655','','','0000-00-00','',0,2,1),(1936,'1','F814','I2656','','','0000-00-00','',0,3,1),(1937,'1','F816','I2658','','','0000-00-00','',0,1,1),(1938,'1','F816','I2659','','','0000-00-00','',0,2,1),(1939,'1','F817','I2662','','','0000-00-00','',0,1,1),(1940,'1','F817','I2663','','','0000-00-00','',0,2,1),(1941,'1','F817','I2664','','','0000-00-00','',0,3,1),(1942,'1','F818','I2666','','','0000-00-00','',0,1,1),(1943,'1','F818','I2667','','','0000-00-00','',0,2,1),(1944,'1','F821','I2671','','','0000-00-00','',0,1,1),(1945,'1','F821','I2672','','','0000-00-00','',0,2,1),(1946,'1','F821','I2673','','','0000-00-00','',0,3,1),(1947,'1','F820','I2674','','','0000-00-00','',0,1,1),(1948,'1','F820','I2675','','','0000-00-00','',0,2,1),(1949,'1','F820','I2676','','','0000-00-00','',0,3,1),(1950,'1','F822','I2678','','','0000-00-00','',0,2,1),(1951,'1','F822','I2679','','','0000-00-00','',0,3,1),(1952,'1','F822','I2680','','','0000-00-00','',0,1,1),(1953,'1','F824','I2684','','','0000-00-00','',0,1,1),(1954,'1','F824','I2685','','','0000-00-00','',0,2,1),(1955,'1','F824','I2686','','','0000-00-00','',0,3,1),(1956,'1','F825','I2691','','','0000-00-00','',0,1,1),(1957,'1','F825','I2692','','','0000-00-00','',0,2,1),(1958,'1','F826','I2694','','','0000-00-00','',0,1,1),(1959,'1','F826','I2695','','','0000-00-00','',0,2,1),(1960,'1','F826','I2696','','','0000-00-00','',0,3,1),(1961,'1','F827','I2699','','','0000-00-00','',0,1,1),(1962,'1','F827','I2700','','','0000-00-00','',0,2,1),(1963,'1','F828','I2702','','','0000-00-00','',0,1,1),(1964,'1','F828','I2704','','','0000-00-00','',0,2,1),(1965,'1','F828','I2705','','','0000-00-00','',0,3,1),(1966,'1','F829','I2707','','','0000-00-00','',0,1,1),(1967,'1','F829','I2708','','','0000-00-00','',0,2,1),(1968,'1','F830','I2710','','','0000-00-00','',0,1,1),(1969,'1','F830','I2711','','','0000-00-00','',0,2,1),(1970,'1','F830','I2712','','','0000-00-00','',0,3,1),(1971,'1','F830','I2713','','','0000-00-00','',0,4,1),(1972,'1','F799','I2715','','','0000-00-00','',1,1,1),(1973,'1','F799','I2716','','','0000-00-00','',1,2,1),(1974,'1','F799','I2717','','','0000-00-00','',1,3,1),(1975,'1','F841','I2719','','','0000-00-00','',0,1,1),(1976,'1','F842','I2721','','','0000-00-00','',0,1,1),(1977,'1','F842','I2722','','','0000-00-00','',0,2,1),(1978,'1','F842','I2723','','','0000-00-00','',0,3,1),(1979,'1','F843','I2725','','','0000-00-00','',0,1,1),(1980,'1','F030','I2729','','','0000-00-00','',0,4,1),(1981,'1','F289','I2731','','','0000-00-00','',0,4,1),(1982,'1','F294','I2732','','','0000-00-00','',0,3,1),(1983,'1','F294','I2733','','','0000-00-00','',0,4,1),(1984,'1','F766','I2736','','','0000-00-00','',0,2,1),(1985,'1','F766','I2737','','','0000-00-00','',0,3,1),(1986,'1','F766','I2738','','','0000-00-00','',0,4,1),(1987,'1','F766','I2739','','','0000-00-00','',0,5,1),(1988,'1','F778','I2741','','','0000-00-00','',0,1,1),(1989,'1','F745','I2743','','','0000-00-00','',0,1,1),(1990,'1','F782','I2745','','','0000-00-00','',0,1,1),(1991,'1','F782','I2746','','','0000-00-00','',0,2,1),(1992,'1','F782','I2747','','','0000-00-00','',0,3,1),(1993,'1','F774','I2750','','','0000-00-00','',1,4,1),(1994,'1','F844','I2752','','','0000-00-00','',0,1,1),(1995,'1','F844','I2753','','','0000-00-00','',0,2,1),(1996,'1','F844','I2754','','','0000-00-00','',0,3,1),(1997,'1','F464','I2756','','','0000-00-00','',0,8,1),(1998,'1','F463','I2757','','','0000-00-00','',0,5,1),(1999,'1','F463','I2758','','','0000-00-00','',0,6,1);
UNLOCK TABLES;
/*!40000 ALTER TABLE `tng_children` ENABLE KEYS */;

--
-- Table structure for table `tng_citations`
--

DROP TABLE IF EXISTS `tng_citations`;
CREATE TABLE `tng_citations` (
  `citationID` int(11) NOT NULL auto_increment,
  `gedcom` varchar(20) NOT NULL default '',
  `persfamID` varchar(22) NOT NULL default '',
  `eventID` varchar(10) NOT NULL default '',
  `sourceID` varchar(22) NOT NULL default '',
  `description` text NOT NULL,
  `citedate` varchar(50) NOT NULL default '',
  `citedatetr` date NOT NULL default '0000-00-00',
  `citetext` text NOT NULL,
  `page` text NOT NULL,
  `quay` char(2) NOT NULL default '',
  `note` text NOT NULL,
  PRIMARY KEY  (`citationID`),
  KEY `citation` (`gedcom`,`persfamID`,`eventID`,`sourceID`,`description`(20)),
  KEY `citations_fk3` (`gedcom`,`sourceID`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;

--
-- Dumping data for table `tng_citations`
--


/*!40000 ALTER TABLE `tng_citations` DISABLE KEYS */;
LOCK TABLES `tng_citations` WRITE;
INSERT INTO `tng_citations` VALUES (1,'1','I0001','NAME','S03416','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(2,'1','I0001','NAME','S03495','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(3,'1','I0001','BIRT','S03495','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(4,'1','I0001','DEAT','S03495','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(5,'1','I0007','9','S02018','','','0000-00-00','','','',''),(6,'1','I0007','9','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(7,'1','I0007','9','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(8,'1','I0007','9','S03114','','','0000-00-00','','','','Date of Import: 20 Mar 2005'),(9,'1','I0007','9','S03114','','','0000-00-00','','','','Date of Import: 6 Apr 2005'),(10,'1','I0007','10','S02071','','','0000-00-00','','','',''),(11,'1','I0007','10','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(12,'1','I0007','10','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(13,'1','I0007','11','S02071','','','0000-00-00','','','',''),(14,'1','I0007','11','S03114','','','0000-00-00','','','','Date of Import: 20 Mar 2005'),(15,'1','I0007','11','S03114','','','0000-00-00','','','','Date of Import: 6 Apr 2005'),(16,'1','I0007','12','S02416','','','0000-00-00','','','',''),(17,'1','I0007','12','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(18,'1','I0007','12','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(19,'1','I0007','12','S03114','','','0000-00-00','','','','Date of Import: 20 Mar 2005'),(20,'1','I0007','12','S03114','','','0000-00-00','','','','Date of Import: 6 Apr 2005'),(21,'1','I0007','13','S02609','','','0000-00-00','','','',''),(22,'1','I0007','13','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(23,'1','I0007','13','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(24,'1','I0007','13','S02604','','','0000-00-00','','','',''),(25,'1','I0007','13','S03114','','','0000-00-00','','','','Date of Import: 20 Mar 2005'),(26,'1','I0007','13','S03114','','','0000-00-00','','','','Date of Import: 6 Apr 2005'),(27,'1','I0007','14','S02861','','','0000-00-00','','','',''),(28,'1','I0007','14','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(29,'1','I0007','14','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(30,'1','I0007','15','S02856','','','0000-00-00','','','',''),(31,'1','I0007','15','S03114','','','0000-00-00','','','','Date of Import: 20 Mar 2005'),(32,'1','I0007','15','S03114','','','0000-00-00','','','','Date of Import: 6 Apr 2005'),(33,'1','I0007','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(34,'1','I0007','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(35,'1','I0012','NAME','S02272','','','0000-00-00','','FHL 1341438','','HMSO, 1881 British Census, PRO Ref RG11, Piece 1814, Folio 58, Page 1'),(36,'1','I0013','DEAT','S03683','','','0000-00-00','','','',''),(37,'1','I0018','BURI','S01736','','','0000-00-00','','','',''),(38,'1','I0018','BURI','S03428','','','0000-00-00','','','',''),(39,'1','I0042','90','S03423','','','0000-00-00','','','','Date of Import: 25 May 2004'),(40,'1','I0042','91','S03423','','','0000-00-00','Date of Import: 25 May 2004','','',''),(41,'1','I0042','NAME','S03423','','','0000-00-00','Date of Import: 25 May 2004','','',''),(42,'1','I0042','BIRT','S03423','','','0000-00-00','Date of Import: 25 May 2004','','',''),(43,'1','I0042','BIRT','S03423','','','0000-00-00','','','','Date of Import: 25 May 2004'),(44,'1','I0042','CHR','S03423','','','0000-00-00','','','','Date of Import: 25 May 2004'),(45,'1','I0042','DEAT','S03423','','','0000-00-00','Date of Import: 25 May 2004','','',''),(46,'1','I0046','97','S02416','','','0000-00-00','','','',''),(47,'1','I0046','97','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(48,'1','I0046','97','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(49,'1','I0046','98','S02416','','','0000-00-00','','','',''),(50,'1','I0046','98','S03114','','','0000-00-00','','','','Date of Import: 20 Mar 2005'),(51,'1','I0046','98','S03114','','','0000-00-00','','','','Date of Import: 6 Apr 2005'),(52,'1','I0046','99','S02629','','','0000-00-00','','','',''),(53,'1','I0046','99','S03114','','','0000-00-00','','','','Date of Import: 20 Mar 2005'),(54,'1','I0046','99','S03114','','','0000-00-00','','','','Date of Import: 6 Apr 2005'),(55,'1','I0046','100','S02634','','','0000-00-00','','','',''),(56,'1','I0046','100','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(57,'1','I0046','100','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(58,'1','I0046','101','S02882','','','0000-00-00','','','',''),(59,'1','I0046','101','S03114','','','0000-00-00','','','','Date of Import: 20 Mar 2005'),(60,'1','I0046','101','S03114','','','0000-00-00','','','','Date of Import: 6 Apr 2005'),(61,'1','I0046','102','S02887','','','0000-00-00','','','',''),(62,'1','I0046','102','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(63,'1','I0046','102','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(64,'1','I0046','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(65,'1','I0046','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(66,'1','I0046','BIRT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(67,'1','I0046','BIRT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(68,'1','I0046','BIRT','S03114','','','0000-00-00','','','','Date of Import: 20 Mar 2005'),(69,'1','I0046','BIRT','S03114','','','0000-00-00','','','','Date of Import: 6 Apr 2005'),(70,'1','I0060','128','S03527','','','0000-00-00','','','',''),(71,'1','I0070','152','S03495','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(72,'1','I0070','152','S03495','','','0000-00-00','','','','Date of Import: 9 Dec 2004'),(73,'1','I0070','NAME','S03495','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(74,'1','I0081','183','S03495','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(75,'1','I0081','183','S03495','','','0000-00-00','','','','Date of Import: 9 Dec 2004'),(76,'1','I0081','NAME','S03495','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(77,'1','I0089','NAME','S02272','','','0000-00-00','','','',''),(78,'1','I0104','NAME','S02272','','','0000-00-00','','','',''),(79,'1','I0128','NAME','S02272','','','0000-00-00','','','',''),(80,'1','I0130','268','S03500','','','0000-00-00','','Page number 54 record number 428','',''),(81,'1','I0130','CHR','S03500','','','0000-00-00','','Page number 54 record number 428','',''),(82,'1','I0130','BURI','S03504','','','0000-00-00','Edward M Webster Rector','Page 54 record number427','','Parish Records of St Peter and Paul Chingford Essex Burial 1813-1915, Page 54 record number 427.'),(83,'1','I0130','BURI','S03504','','','0000-00-00','','Page 54 record number427','','Edward M Webster Rector\nParish Records of St Peter and Paul Chingford Essex Burial 1813-1915, Page 54 record number 427.'),(84,'1','I0131','270','S03500','','','0000-00-00','','Page 53 record number 418','',''),(85,'1','I0131','CHR','S03500','','','0000-00-00','','Page 53 record number 418','',''),(86,'1','I0131','BURI','S03504','','','0000-00-00','Edward M Webster rector','Page 55 record number 436','',''),(87,'1','I0131','BURI','S03504','','','0000-00-00','','Page 55 record number 436','','Edward M Webster rector'),(88,'1','I0137','NAME','S02272','','','0000-00-00','','FHL Film 1341438','','HMSO, 1881 British Census, PRO Ref RG11, Piece 1814, Folio 58, Page 1'),(89,'1','I0139','BURI','S03523','','','0000-00-00','A F Russell rector','Page number 76 record number 605','',''),(90,'1','I0139','BURI','S03523','','','0000-00-00','','Page number 76 record number 605','','A F Russell rector'),(91,'1','I0175','NAME','S02272','','','0000-00-00','','FHL Film 1341438','','HMSO, 1881 British Census. PRO Ref RG11, Piece 1814, Folio 70, Page 3'),(92,'1','I0180','335','S03423','','','0000-00-00','Date of Import: 25 May 2004','','',''),(93,'1','I0180','336','S03423','','','0000-00-00','','','','Date of Import: 25 May 2004'),(94,'1','I0180','NAME','S03423','','','0000-00-00','Date of Import: 25 May 2004','','',''),(95,'1','I0180','BIRT','S03423','','','0000-00-00','Date of Import: 25 May 2004','','',''),(96,'1','I0180','BIRT','S03423','','','0000-00-00','','','','Date of Import: 25 May 2004'),(97,'1','I0180','CHR','S03423','','','0000-00-00','Date of Import: 25 May 2004','','',''),(98,'1','I0180','CHR','S03423','','','0000-00-00','','','','Date of Import: 25 May 2004'),(99,'1','I0180','DEAT','S03423','','','0000-00-00','Date of Import: 25 May 2004','','',''),(100,'1','I0180','DEAT','S03423','','','0000-00-00','','','','Date of Import: 25 May 2004'),(101,'1','I0181','341','S02221','','','0000-00-00','','','',''),(102,'1','I0181','341','S02383','','','0000-00-00','','','',''),(103,'1','I0181','341','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(104,'1','I0181','341','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(105,'1','I0181','341','S02377','','','0000-00-00','','','',''),(106,'1','I0181','341','S03114','','','0000-00-00','','','','Date of Import: 20 Mar 2005'),(107,'1','I0181','341','S03114','','','0000-00-00','','','','Date of Import: 6 Apr 2005'),(108,'1','I0181','343','S03073','','','0000-00-00','','','',''),(109,'1','I0181','343','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(110,'1','I0181','343','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(111,'1','I0181','344','S02071','','','0000-00-00','','','',''),(112,'1','I0181','344','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(113,'1','I0181','344','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(114,'1','I0181','345','S02071','','','0000-00-00','','','',''),(115,'1','I0181','345','S03114','','','0000-00-00','','','','Date of Import: 20 Mar 2005'),(116,'1','I0181','345','S03114','','','0000-00-00','','','','Date of Import: 6 Apr 2005'),(117,'1','I0181','346','S02377','','','0000-00-00','','RG11 4503/87 page 11','',''),(118,'1','I0181','346','S03114','','','0000-00-00','','','','Date of Import: 20 Mar 2005'),(119,'1','I0181','346','S03114','','','0000-00-00','','','','Date of Import: 6 Apr 2005'),(120,'1','I0181','347','S02383','','','0000-00-00','','RG11 4503/87 page 11','',''),(121,'1','I0181','347','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(122,'1','I0181','347','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(123,'1','I0181','348','S02583','','','0000-00-00','','','',''),(124,'1','I0181','348','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(125,'1','I0181','348','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(126,'1','I0181','348','S03114','','','0000-00-00','','','','Date of Import: 20 Mar 2005'),(127,'1','I0181','348','S03114','','','0000-00-00','','','','Date of Import: 6 Apr 2005'),(128,'1','I0181','349','S02974','','','0000-00-00','','RG13/676 page 5','',''),(129,'1','I0181','349','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(130,'1','I0181','349','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(131,'1','I0181','350','S02974','','','0000-00-00','','RG13/676 page 5','',''),(132,'1','I0181','350','S03114','','','0000-00-00','','','','Date of Import: 20 Mar 2005'),(133,'1','I0181','350','S03114','','','0000-00-00','','','','Date of Import: 6 Apr 2005'),(134,'1','I0181','352','S03073','','','0000-00-00','','','',''),(135,'1','I0181','352','S03114','','','0000-00-00','','','','Date of Import: 20 Mar 2005'),(136,'1','I0181','352','S03114','','','0000-00-00','','','','Date of Import: 6 Apr 2005'),(137,'1','I0181','NAME','S03423','','','0000-00-00','Date of Import: 25 May 2004','','',''),(138,'1','I0181','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(139,'1','I0181','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(140,'1','I0181','BIRT','S03423','','','0000-00-00','Date of Import: 25 May 2004','','',''),(141,'1','I0181','BIRT','S03423','','','0000-00-00','','','','Date of Import: 25 May 2004'),(142,'1','I0181','DEAT','S03423','','','0000-00-00','Date of Import: 25 May 2004','','',''),(143,'1','I0181','DEAT','S03423','','','0000-00-00','','','','Date of Import: 25 May 2004'),(144,'1','I0182','NAME','S03423','','','0000-00-00','Date of Import: 25 May 2004','','',''),(145,'1','I0182','BIRT','S03423','','','0000-00-00','Date of Import: 25 May 2004','','',''),(146,'1','I0182','BIRT','S03423','','','0000-00-00','','','','Date of Import: 25 May 2004'),(147,'1','I0182','DEAT','S03423','','','0000-00-00','Date of Import: 25 May 2004','','',''),(148,'1','I0182','DEAT','S03423','','','0000-00-00','','','','Date of Import: 25 May 2004'),(149,'1','I0183','NAME','S03423','','','0000-00-00','Date of Import: 25 May 2004','','',''),(150,'1','I0183','BIRT','S03423','','','0000-00-00','Date of Import: 25 May 2004','','',''),(151,'1','I0183','BIRT','S03423','','','0000-00-00','','','','Date of Import: 25 May 2004'),(152,'1','I0183','DEAT','S03423','','','0000-00-00','Date of Import: 25 May 2004','','',''),(153,'1','I0183','DEAT','S03423','','','0000-00-00','','','','Date of Import: 25 May 2004'),(154,'1','I0184','365','S03423','','','0000-00-00','Date of Import: 25 May 2004','','',''),(155,'1','I0184','365','S03423','','','0000-00-00','','','','Date of Import: 25 May 2004'),(156,'1','I0184','NAME','S03423','','','0000-00-00','Date of Import: 25 May 2004','','',''),(157,'1','I0184','DEAT','S03423','','','0000-00-00','Date of Import: 25 May 2004','','',''),(158,'1','I0184','DEAT','S03423','','','0000-00-00','','','','Date of Import: 25 May 2004'),(159,'1','I0185','NAME','S03423','','','0000-00-00','Date of Import: 25 May 2004','','',''),(160,'1','I0185','BIRT','S03423','','','0000-00-00','Date of Import: 25 May 2004','','',''),(161,'1','I0185','BIRT','S03423','','','0000-00-00','','','','Date of Import: 25 May 2004'),(162,'1','I0185','DEAT','S03423','','','0000-00-00','Date of Import: 25 May 2004','','',''),(163,'1','I0185','DEAT','S03423','','','0000-00-00','','','','Date of Import: 25 May 2004'),(164,'1','I0186','NAME','S03423','','','0000-00-00','Date of Import: 25 May 2004','','',''),(165,'1','I0186','BIRT','S03423','','','0000-00-00','Date of Import: 25 May 2004','','',''),(166,'1','I0186','BIRT','S03423','','','0000-00-00','','','','Date of Import: 25 May 2004'),(167,'1','I0186','DEAT','S03423','','','0000-00-00','Date of Import: 25 May 2004','','',''),(168,'1','I0186','DEAT','S03423','','','0000-00-00','','','','Date of Import: 25 May 2004'),(169,'1','I0187','NAME','S03423','','','0000-00-00','Date of Import: 25 May 2004','','',''),(170,'1','I0187','BIRT','S03423','','','0000-00-00','Date of Import: 25 May 2004','','',''),(171,'1','I0187','BIRT','S03423','','','0000-00-00','','','','Date of Import: 25 May 2004'),(172,'1','I0187','DEAT','S03423','','','0000-00-00','Date of Import: 25 May 2004','','',''),(173,'1','I0187','DEAT','S03423','','','0000-00-00','','','','Date of Import: 25 May 2004'),(174,'1','I0192','389','S03436','','','0000-00-00','','','',''),(175,'1','I0192','CHR','S03436','','','0000-00-00','','','',''),(176,'1','I0193','391','S03436','','','0000-00-00','','','',''),(177,'1','I0193','CHR','S03436','','','0000-00-00','','','',''),(178,'1','I0194','393','S03436','','','0000-00-00','','','',''),(179,'1','I0194','CHR','S03436','','','0000-00-00','','','',''),(180,'1','I0195','395','S03436','','','0000-00-00','','','',''),(181,'1','I0195','CHR','S03436','','','0000-00-00','','','',''),(182,'1','I0199','403','S03400','','','0000-00-00','Date of Import: 10 Jul 2000','','',''),(183,'1','I0199','403','S03405','','','0000-00-00','Date of Import: 10 Jul 2000','','',''),(184,'1','I0199','404','S03400','','','0000-00-00','','','','Date of Import: 10 Jul 2000'),(185,'1','I0199','404','S03405','','','0000-00-00','','','','Date of Import: 10 Jul 2000'),(186,'1','I0199','BIRT','S03400','','','0000-00-00','Date of Import: 10 Jul 2000','','',''),(187,'1','I0199','BIRT','S03405','','','0000-00-00','Date of Import: 10 Jul 2000','','',''),(188,'1','I0199','BIRT','S03400','','','0000-00-00','','','','Date of Import: 10 Jul 2000'),(189,'1','I0199','BIRT','S03405','','','0000-00-00','','','','Date of Import: 10 Jul 2000'),(190,'1','I0210','BURI','S03683','','','0000-00-00','','','',''),(191,'1','I0236','NAME','S03423','','','0000-00-00','Date of Import: 25 May 2004','','',''),(192,'1','I0236','BIRT','S03423','','','0000-00-00','Date of Import: 25 May 2004','','',''),(193,'1','I0236','BIRT','S03423','','','0000-00-00','','','','Date of Import: 25 May 2004'),(194,'1','I0237','480','S03423','','','0000-00-00','','','','Date of Import: 25 May 2004'),(195,'1','I0237','NAME','S03423','','','0000-00-00','Date of Import: 25 May 2004','','',''),(196,'1','I0237','BIRT','S03423','','','0000-00-00','Date of Import: 25 May 2004','','',''),(197,'1','I0237','BIRT','S03423','','','0000-00-00','','','','Date of Import: 25 May 2004'),(198,'1','I0280','BURI','S03683','','','0000-00-00','','','',''),(199,'1','I0282','DEAT','S03207','','','0000-00-00','','','',''),(200,'1','I0370','709','S03400','','','0000-00-00','','','','Date of Import: 10 Jul 2000'),(201,'1','I0370','709','S03405','','','0000-00-00','','','','Date of Import: 10 Jul 2000'),(202,'1','I0370','710','S03400','','','0000-00-00','Date of Import: 10 Jul 2000','','',''),(203,'1','I0370','710','S03405','','','0000-00-00','Date of Import: 10 Jul 2000','','',''),(204,'1','I0370','711','S03400','','','0000-00-00','','','','Date of Import: 10 Jul 2000'),(205,'1','I0370','711','S03405','','','0000-00-00','','','','Date of Import: 10 Jul 2000'),(206,'1','I0370','712','S03400','','','0000-00-00','Date of Import: 10 Jul 2000','','',''),(207,'1','I0370','712','S03405','','','0000-00-00','Date of Import: 10 Jul 2000','','',''),(208,'1','I0370','713','S03400','','','0000-00-00','Date of Import: 10 Jul 2000','','',''),(209,'1','I0370','713','S03405','','','0000-00-00','Date of Import: 10 Jul 2000','','',''),(210,'1','I0370','714','S03400','','','0000-00-00','','','','Date of Import: 10 Jul 2000'),(211,'1','I0370','714','S03405','','','0000-00-00','','','','Date of Import: 10 Jul 2000'),(212,'1','I0371','716','S03400','','','0000-00-00','Date of Import: 10 Jul 2000','','',''),(213,'1','I0371','716','S03405','','','0000-00-00','Date of Import: 10 Jul 2000','','',''),(214,'1','I0371','717','S03400','','','0000-00-00','','','','Date of Import: 10 Jul 2000'),(215,'1','I0371','717','S03405','','','0000-00-00','','','','Date of Import: 10 Jul 2000'),(216,'1','I0371','718','S03400','','','0000-00-00','','','','Date of Import: 10 Jul 2000'),(217,'1','I0371','718','S03405','','','0000-00-00','','','','Date of Import: 10 Jul 2000'),(218,'1','I0371','719','S03400','','','0000-00-00','Date of Import: 10 Jul 2000','','',''),(219,'1','I0371','719','S03405','','','0000-00-00','Date of Import: 10 Jul 2000','','',''),(220,'1','I0371','720','S03400','','','0000-00-00','Date of Import: 10 Jul 2000','','',''),(221,'1','I0371','720','S03405','','','0000-00-00','Date of Import: 10 Jul 2000','','',''),(222,'1','I0371','721','S03400','','','0000-00-00','','','','Date of Import: 10 Jul 2000'),(223,'1','I0371','721','S03405','','','0000-00-00','','','','Date of Import: 10 Jul 2000'),(224,'1','I0402','NAME','S02272','','','0000-00-00','','','',''),(225,'1','I0404','742','S03400','','','0000-00-00','','','','Date of Import: 10 Jul 2000'),(226,'1','I0404','742','S03405','','','0000-00-00','','','','Date of Import: 10 Jul 2000'),(227,'1','I0404','743','S03400','','','0000-00-00','','','','Date of Import: 10 Jul 2000'),(228,'1','I0404','743','S03405','','','0000-00-00','','','','Date of Import: 10 Jul 2000'),(229,'1','I0404','745','S03400','','','0000-00-00','Date of Import: 10 Jul 2000','','',''),(230,'1','I0404','745','S03405','','','0000-00-00','Date of Import: 10 Jul 2000','','',''),(231,'1','I0404','746','S03400','','','0000-00-00','','','','Date of Import: 10 Jul 2000'),(232,'1','I0404','746','S03405','','','0000-00-00','','','','Date of Import: 10 Jul 2000'),(233,'1','I0404','NAME','S03142','','','0000-00-00','','','',''),(234,'1','I0404','NAME','S03400','','','0000-00-00','Date of Import: 10 Jul 2000','','',''),(235,'1','I0404','NAME','S03405','','','0000-00-00','Date of Import: 10 Jul 2000','','',''),(236,'1','I0404','BIRT','S03400','','','0000-00-00','Date of Import: 10 Jul 2000','','',''),(237,'1','I0404','BIRT','S03405','','','0000-00-00','Date of Import: 10 Jul 2000','','',''),(238,'1','I0404','DEAT','S03400','','','0000-00-00','Date of Import: 10 Jul 2000','','',''),(239,'1','I0404','DEAT','S03405','','','0000-00-00','Date of Import: 10 Jul 2000','','',''),(240,'1','I0405','751','S03400','','','0000-00-00','','','','Date of Import: 10 Jul 2000'),(241,'1','I0405','751','S03405','','','0000-00-00','','','','Date of Import: 10 Jul 2000'),(242,'1','I0405','752','S03400','','','0000-00-00','Date of Import: 10 Jul 2000','','',''),(243,'1','I0405','752','S03405','','','0000-00-00','Date of Import: 10 Jul 2000','','',''),(244,'1','I0405','753','S03400','','','0000-00-00','','','','Date of Import: 10 Jul 2000'),(245,'1','I0405','753','S03405','','','0000-00-00','','','','Date of Import: 10 Jul 2000'),(246,'1','I0405','NAME','S03142','','','0000-00-00','','','',''),(247,'1','I0405','NAME','S03400','','','0000-00-00','Date of Import: 10 Jul 2000','','',''),(248,'1','I0405','NAME','S03405','','','0000-00-00','Date of Import: 10 Jul 2000','','',''),(249,'1','I0405','BIRT','S03400','','','0000-00-00','Date of Import: 10 Jul 2000','','',''),(250,'1','I0405','BIRT','S03405','','','0000-00-00','Date of Import: 10 Jul 2000','','',''),(251,'1','I0406','754','S03400','','','0000-00-00','Date of Import: 10 Jul 2000','','',''),(252,'1','I0406','754','S03405','','','0000-00-00','Date of Import: 10 Jul 2000','','',''),(253,'1','I0406','NAME','S03142','','','0000-00-00','','','',''),(254,'1','I0406','NAME','S03400','','','0000-00-00','Date of Import: 10 Jul 2000','','',''),(255,'1','I0406','NAME','S03405','','','0000-00-00','Date of Import: 10 Jul 2000','','',''),(256,'1','I0406','BIRT','S03400','','','0000-00-00','Date of Import: 10 Jul 2000','','',''),(257,'1','I0406','BIRT','S03405','','','0000-00-00','Date of Import: 10 Jul 2000','','',''),(258,'1','I0406','DEAT','S03400','','','0000-00-00','Date of Import: 10 Jul 2000','','',''),(259,'1','I0406','DEAT','S03405','','','0000-00-00','Date of Import: 10 Jul 2000','','',''),(260,'1','I0407','755','S03400','','','0000-00-00','Date of Import: 10 Jul 2000','','',''),(261,'1','I0407','755','S03405','','','0000-00-00','Date of Import: 10 Jul 2000','','',''),(262,'1','I0407','NAME','S03142','','','0000-00-00','','','',''),(263,'1','I0407','NAME','S03400','','','0000-00-00','Date of Import: 10 Jul 2000','','',''),(264,'1','I0407','NAME','S03405','','','0000-00-00','Date of Import: 10 Jul 2000','','',''),(265,'1','I0407','BIRT','S03400','','','0000-00-00','Date of Import: 10 Jul 2000','','',''),(266,'1','I0407','BIRT','S03405','','','0000-00-00','Date of Import: 10 Jul 2000','','',''),(267,'1','I0407','DEAT','S03400','','','0000-00-00','Date of Import: 10 Jul 2000','','',''),(268,'1','I0407','DEAT','S03405','','','0000-00-00','Date of Import: 10 Jul 2000','','',''),(269,'1','I0408','756','S03400','','','0000-00-00','Date of Import: 10 Jul 2000','','',''),(270,'1','I0408','756','S03405','','','0000-00-00','Date of Import: 10 Jul 2000','','',''),(271,'1','I0408','NAME','S03142','','','0000-00-00','','','',''),(272,'1','I0408','NAME','S03400','','','0000-00-00','Date of Import: 10 Jul 2000','','',''),(273,'1','I0408','NAME','S03405','','','0000-00-00','Date of Import: 10 Jul 2000','','',''),(274,'1','I0408','BIRT','S03400','','','0000-00-00','Date of Import: 10 Jul 2000','','',''),(275,'1','I0408','BIRT','S03405','','','0000-00-00','Date of Import: 10 Jul 2000','','',''),(276,'1','I0408','DEAT','S03400','','','0000-00-00','Date of Import: 10 Jul 2000','','',''),(277,'1','I0408','DEAT','S03405','','','0000-00-00','Date of Import: 10 Jul 2000','','',''),(278,'1','I0409','757','S03400','','','0000-00-00','Date of Import: 10 Jul 2000','','',''),(279,'1','I0409','757','S03405','','','0000-00-00','Date of Import: 10 Jul 2000','','',''),(280,'1','I0409','NAME','S03142','','','0000-00-00','','','',''),(281,'1','I0409','NAME','S03400','','','0000-00-00','Date of Import: 10 Jul 2000','','',''),(282,'1','I0409','NAME','S03405','','','0000-00-00','Date of Import: 10 Jul 2000','','',''),(283,'1','I0409','BIRT','S03400','','','0000-00-00','Date of Import: 10 Jul 2000','','',''),(284,'1','I0409','BIRT','S03405','','','0000-00-00','Date of Import: 10 Jul 2000','','',''),(285,'1','I0409','DEAT','S03400','','','0000-00-00','Date of Import: 10 Jul 2000','','',''),(286,'1','I0409','DEAT','S03405','','','0000-00-00','Date of Import: 10 Jul 2000','','',''),(287,'1','I0410','758','S03400','','','0000-00-00','Date of Import: 10 Jul 2000','','',''),(288,'1','I0410','758','S03405','','','0000-00-00','Date of Import: 10 Jul 2000','','',''),(289,'1','I0410','NAME','S03142','','','0000-00-00','','','',''),(290,'1','I0410','NAME','S03400','','','0000-00-00','Date of Import: 10 Jul 2000','','',''),(291,'1','I0410','NAME','S03405','','','0000-00-00','Date of Import: 10 Jul 2000','','',''),(292,'1','I0410','BIRT','S03400','','','0000-00-00','Date of Import: 10 Jul 2000','','',''),(293,'1','I0410','BIRT','S03405','','','0000-00-00','Date of Import: 10 Jul 2000','','',''),(294,'1','I0411','759','S03400','','','0000-00-00','Date of Import: 10 Jul 2000','','',''),(295,'1','I0411','759','S03405','','','0000-00-00','Date of Import: 10 Jul 2000','','',''),(296,'1','I0411','NAME','S03142','','','0000-00-00','','','',''),(297,'1','I0411','NAME','S03400','','','0000-00-00','Date of Import: 10 Jul 2000','','',''),(298,'1','I0411','NAME','S03405','','','0000-00-00','Date of Import: 10 Jul 2000','','',''),(299,'1','I0411','BIRT','S03400','','','0000-00-00','Date of Import: 10 Jul 2000','','',''),(300,'1','I0411','BIRT','S03405','','','0000-00-00','Date of Import: 10 Jul 2000','','',''),(301,'1','I0411','DEAT','S03400','','','0000-00-00','Date of Import: 10 Jul 2000','','',''),(302,'1','I0411','DEAT','S03405','','','0000-00-00','Date of Import: 10 Jul 2000','','',''),(303,'1','I0412','760','S03400','','','0000-00-00','Date of Import: 10 Jul 2000','','',''),(304,'1','I0412','760','S03405','','','0000-00-00','Date of Import: 10 Jul 2000','','',''),(305,'1','I0412','NAME','S03142','','','0000-00-00','','','',''),(306,'1','I0412','NAME','S03400','','','0000-00-00','Date of Import: 10 Jul 2000','','',''),(307,'1','I0412','NAME','S03405','','','0000-00-00','Date of Import: 10 Jul 2000','','',''),(308,'1','I0412','BIRT','S03400','','','0000-00-00','Date of Import: 10 Jul 2000','','',''),(309,'1','I0412','BIRT','S03405','','','0000-00-00','Date of Import: 10 Jul 2000','','',''),(310,'1','I0412','DEAT','S03400','','','0000-00-00','Date of Import: 10 Jul 2000','','',''),(311,'1','I0412','DEAT','S03405','','','0000-00-00','Date of Import: 10 Jul 2000','','',''),(312,'1','I0413','761','S03400','','','0000-00-00','Date of Import: 10 Jul 2000','','',''),(313,'1','I0413','761','S03405','','','0000-00-00','Date of Import: 10 Jul 2000','','',''),(314,'1','I0413','NAME','S03142','','','0000-00-00','','','',''),(315,'1','I0413','NAME','S03400','','','0000-00-00','Date of Import: 10 Jul 2000','','',''),(316,'1','I0413','NAME','S03405','','','0000-00-00','Date of Import: 10 Jul 2000','','',''),(317,'1','I0413','BIRT','S03400','','','0000-00-00','Date of Import: 10 Jul 2000','','',''),(318,'1','I0413','BIRT','S03405','','','0000-00-00','Date of Import: 10 Jul 2000','','',''),(319,'1','I0414','762','S03400','','','0000-00-00','Date of Import: 10 Jul 2000','','',''),(320,'1','I0414','762','S03405','','','0000-00-00','Date of Import: 10 Jul 2000','','',''),(321,'1','I0414','NAME','S03142','','','0000-00-00','','','',''),(322,'1','I0414','NAME','S03400','','','0000-00-00','Date of Import: 10 Jul 2000','','',''),(323,'1','I0414','NAME','S03405','','','0000-00-00','Date of Import: 10 Jul 2000','','',''),(324,'1','I0414','BIRT','S03400','','','0000-00-00','Date of Import: 10 Jul 2000','','',''),(325,'1','I0414','BIRT','S03405','','','0000-00-00','Date of Import: 10 Jul 2000','','',''),(326,'1','I0415','763','S03400','','','0000-00-00','Date of Import: 10 Jul 2000','','',''),(327,'1','I0415','763','S03405','','','0000-00-00','Date of Import: 10 Jul 2000','','',''),(328,'1','I0415','NAME','S03142','','','0000-00-00','','','',''),(329,'1','I0415','NAME','S03400','','','0000-00-00','Date of Import: 10 Jul 2000','','',''),(330,'1','I0415','NAME','S03405','','','0000-00-00','Date of Import: 10 Jul 2000','','',''),(331,'1','I0415','BIRT','S03400','','','0000-00-00','Date of Import: 10 Jul 2000','','',''),(332,'1','I0415','BIRT','S03405','','','0000-00-00','Date of Import: 10 Jul 2000','','',''),(333,'1','I0416','764','S03400','','','0000-00-00','Date of Import: 10 Jul 2000','','',''),(334,'1','I0416','764','S03405','','','0000-00-00','Date of Import: 10 Jul 2000','','',''),(335,'1','I0416','NAME','S03142','','','0000-00-00','','','',''),(336,'1','I0416','NAME','S03400','','','0000-00-00','Date of Import: 10 Jul 2000','','',''),(337,'1','I0416','NAME','S03405','','','0000-00-00','Date of Import: 10 Jul 2000','','',''),(338,'1','I0416','BIRT','S03400','','','0000-00-00','Date of Import: 10 Jul 2000','','',''),(339,'1','I0416','BIRT','S03405','','','0000-00-00','Date of Import: 10 Jul 2000','','',''),(340,'1','I0417','765','S03400','','','0000-00-00','Date of Import: 10 Jul 2000','','',''),(341,'1','I0417','765','S03405','','','0000-00-00','Date of Import: 10 Jul 2000','','',''),(342,'1','I0417','NAME','S03142','','','0000-00-00','','','',''),(343,'1','I0417','NAME','S03400','','','0000-00-00','Date of Import: 10 Jul 2000','','',''),(344,'1','I0417','NAME','S03405','','','0000-00-00','Date of Import: 10 Jul 2000','','',''),(345,'1','I0417','BIRT','S03400','','','0000-00-00','Date of Import: 10 Jul 2000','','',''),(346,'1','I0417','BIRT','S03405','','','0000-00-00','Date of Import: 10 Jul 2000','','',''),(347,'1','I0417','DEAT','S03400','','','0000-00-00','Date of Import: 10 Jul 2000','','',''),(348,'1','I0417','DEAT','S03405','','','0000-00-00','Date of Import: 10 Jul 2000','','',''),(349,'1','I0418','766','S03400','','','0000-00-00','Date of Import: 10 Jul 2000','','',''),(350,'1','I0418','766','S03405','','','0000-00-00','Date of Import: 10 Jul 2000','','',''),(351,'1','I0418','NAME','S03142','','','0000-00-00','','','',''),(352,'1','I0418','NAME','S03400','','','0000-00-00','Date of Import: 10 Jul 2000','','',''),(353,'1','I0418','NAME','S03405','','','0000-00-00','Date of Import: 10 Jul 2000','','',''),(354,'1','I0418','BIRT','S03400','','','0000-00-00','Date of Import: 10 Jul 2000','','',''),(355,'1','I0418','BIRT','S03405','','','0000-00-00','Date of Import: 10 Jul 2000','','',''),(356,'1','I0419','767','S03400','','','0000-00-00','Date of Import: 10 Jul 2000','','',''),(357,'1','I0419','767','S03405','','','0000-00-00','Date of Import: 10 Jul 2000','','',''),(358,'1','I0419','NAME','S03142','','','0000-00-00','','','',''),(359,'1','I0419','NAME','S03400','','','0000-00-00','Date of Import: 10 Jul 2000','','',''),(360,'1','I0419','NAME','S03405','','','0000-00-00','Date of Import: 10 Jul 2000','','',''),(361,'1','I0419','BIRT','S03400','','','0000-00-00','Date of Import: 10 Jul 2000','','',''),(362,'1','I0419','BIRT','S03405','','','0000-00-00','Date of Import: 10 Jul 2000','','',''),(363,'1','I0420','768','S03400','','','0000-00-00','Date of Import: 10 Jul 2000','','',''),(364,'1','I0420','768','S03405','','','0000-00-00','Date of Import: 10 Jul 2000','','',''),(365,'1','I0420','NAME','S03142','','','0000-00-00','','','',''),(366,'1','I0420','NAME','S03400','','','0000-00-00','Date of Import: 10 Jul 2000','','',''),(367,'1','I0420','NAME','S03405','','','0000-00-00','Date of Import: 10 Jul 2000','','',''),(368,'1','I0420','BIRT','S03400','','','0000-00-00','Date of Import: 10 Jul 2000','','',''),(369,'1','I0420','BIRT','S03405','','','0000-00-00','Date of Import: 10 Jul 2000','','',''),(370,'1','I0421','769','S03400','','','0000-00-00','Date of Import: 10 Jul 2000','','',''),(371,'1','I0421','769','S03405','','','0000-00-00','Date of Import: 10 Jul 2000','','',''),(372,'1','I0421','NAME','S03142','','','0000-00-00','','','',''),(373,'1','I0421','NAME','S03400','','','0000-00-00','Date of Import: 10 Jul 2000','','',''),(374,'1','I0421','NAME','S03405','','','0000-00-00','Date of Import: 10 Jul 2000','','',''),(375,'1','I0421','BIRT','S03400','','','0000-00-00','Date of Import: 10 Jul 2000','','',''),(376,'1','I0421','BIRT','S03405','','','0000-00-00','Date of Import: 10 Jul 2000','','',''),(377,'1','I0422','770','S03400','','','0000-00-00','Date of Import: 10 Jul 2000','','',''),(378,'1','I0422','770','S03405','','','0000-00-00','Date of Import: 10 Jul 2000','','',''),(379,'1','I0422','NAME','S03142','','','0000-00-00','','','',''),(380,'1','I0422','NAME','S03400','','','0000-00-00','Date of Import: 10 Jul 2000','','',''),(381,'1','I0422','NAME','S03405','','','0000-00-00','Date of Import: 10 Jul 2000','','',''),(382,'1','I0422','BIRT','S03400','','','0000-00-00','Date of Import: 10 Jul 2000','','',''),(383,'1','I0422','BIRT','S03405','','','0000-00-00','Date of Import: 10 Jul 2000','','',''),(384,'1','I0423','771','S03400','','','0000-00-00','Date of Import: 10 Jul 2000','','',''),(385,'1','I0423','771','S03405','','','0000-00-00','Date of Import: 10 Jul 2000','','',''),(386,'1','I0423','NAME','S03142','','','0000-00-00','','','',''),(387,'1','I0423','NAME','S03400','','','0000-00-00','Date of Import: 10 Jul 2000','','',''),(388,'1','I0423','NAME','S03405','','','0000-00-00','Date of Import: 10 Jul 2000','','',''),(389,'1','I0423','BIRT','S03400','','','0000-00-00','Date of Import: 10 Jul 2000','','',''),(390,'1','I0423','BIRT','S03405','','','0000-00-00','Date of Import: 10 Jul 2000','','',''),(391,'1','I0423','DEAT','S03400','','','0000-00-00','Date of Import: 10 Jul 2000','','',''),(392,'1','I0423','DEAT','S03405','','','0000-00-00','Date of Import: 10 Jul 2000','','',''),(393,'1','I0424','772','S03400','','','0000-00-00','Date of Import: 10 Jul 2000','','',''),(394,'1','I0424','772','S03405','','','0000-00-00','Date of Import: 10 Jul 2000','','',''),(395,'1','I0424','NAME','S03142','','','0000-00-00','','','',''),(396,'1','I0424','NAME','S03400','','','0000-00-00','Date of Import: 10 Jul 2000','','',''),(397,'1','I0424','NAME','S03405','','','0000-00-00','Date of Import: 10 Jul 2000','','',''),(398,'1','I0424','BIRT','S03400','','','0000-00-00','Date of Import: 10 Jul 2000','','',''),(399,'1','I0424','BIRT','S03405','','','0000-00-00','Date of Import: 10 Jul 2000','','',''),(400,'1','I0425','773','S03400','','','0000-00-00','Date of Import: 10 Jul 2000','','',''),(401,'1','I0425','773','S03405','','','0000-00-00','Date of Import: 10 Jul 2000','','',''),(402,'1','I0425','NAME','S03142','','','0000-00-00','','','',''),(403,'1','I0425','NAME','S03400','','','0000-00-00','Date of Import: 10 Jul 2000','','',''),(404,'1','I0425','NAME','S03405','','','0000-00-00','Date of Import: 10 Jul 2000','','',''),(405,'1','I0425','BIRT','S03400','','','0000-00-00','Date of Import: 10 Jul 2000','','',''),(406,'1','I0425','BIRT','S03405','','','0000-00-00','Date of Import: 10 Jul 2000','','',''),(407,'1','I0426','774','S03400','','','0000-00-00','Date of Import: 10 Jul 2000','','',''),(408,'1','I0426','774','S03405','','','0000-00-00','Date of Import: 10 Jul 2000','','',''),(409,'1','I0426','NAME','S03142','','','0000-00-00','','','',''),(410,'1','I0426','NAME','S03400','','','0000-00-00','Date of Import: 10 Jul 2000','','',''),(411,'1','I0426','NAME','S03405','','','0000-00-00','Date of Import: 10 Jul 2000','','',''),(412,'1','I0426','BIRT','S03400','','','0000-00-00','Date of Import: 10 Jul 2000','','',''),(413,'1','I0426','BIRT','S03405','','','0000-00-00','Date of Import: 10 Jul 2000','','',''),(414,'1','I0426','DEAT','S03400','','','0000-00-00','Date of Import: 10 Jul 2000','','',''),(415,'1','I0426','DEAT','S03405','','','0000-00-00','Date of Import: 10 Jul 2000','','',''),(416,'1','I0427','775','S03400','','','0000-00-00','Date of Import: 10 Jul 2000','','',''),(417,'1','I0427','775','S03405','','','0000-00-00','Date of Import: 10 Jul 2000','','',''),(418,'1','I0427','NAME','S03142','','','0000-00-00','','','',''),(419,'1','I0427','NAME','S03400','','','0000-00-00','Date of Import: 10 Jul 2000','','',''),(420,'1','I0427','NAME','S03405','','','0000-00-00','Date of Import: 10 Jul 2000','','',''),(421,'1','I0427','BIRT','S03400','','','0000-00-00','Date of Import: 10 Jul 2000','','',''),(422,'1','I0427','BIRT','S03405','','','0000-00-00','Date of Import: 10 Jul 2000','','',''),(423,'1','I0427','DEAT','S03400','','','0000-00-00','Date of Import: 10 Jul 2000','','',''),(424,'1','I0427','DEAT','S03405','','','0000-00-00','Date of Import: 10 Jul 2000','','',''),(425,'1','I0428','776','S03400','','','0000-00-00','Date of Import: 10 Jul 2000','','',''),(426,'1','I0428','776','S03405','','','0000-00-00','Date of Import: 10 Jul 2000','','',''),(427,'1','I0428','NAME','S03142','','','0000-00-00','','','',''),(428,'1','I0428','NAME','S03400','','','0000-00-00','Date of Import: 10 Jul 2000','','',''),(429,'1','I0428','NAME','S03405','','','0000-00-00','Date of Import: 10 Jul 2000','','',''),(430,'1','I0428','BIRT','S03400','','','0000-00-00','Date of Import: 10 Jul 2000','','',''),(431,'1','I0428','BIRT','S03405','','','0000-00-00','Date of Import: 10 Jul 2000','','',''),(432,'1','I0429','777','S03400','','','0000-00-00','Date of Import: 10 Jul 2000','','',''),(433,'1','I0429','777','S03405','','','0000-00-00','Date of Import: 10 Jul 2000','','',''),(434,'1','I0429','NAME','S03142','','','0000-00-00','','','',''),(435,'1','I0429','NAME','S03400','','','0000-00-00','Date of Import: 10 Jul 2000','','',''),(436,'1','I0429','NAME','S03405','','','0000-00-00','Date of Import: 10 Jul 2000','','',''),(437,'1','I0429','BIRT','S03400','','','0000-00-00','Date of Import: 10 Jul 2000','','',''),(438,'1','I0429','BIRT','S03405','','','0000-00-00','Date of Import: 10 Jul 2000','','',''),(439,'1','I0429','DEAT','S03400','','','0000-00-00','Date of Import: 10 Jul 2000','','',''),(440,'1','I0429','DEAT','S03405','','','0000-00-00','Date of Import: 10 Jul 2000','','',''),(441,'1','I0430','778','S03400','','','0000-00-00','Date of Import: 10 Jul 2000','','',''),(442,'1','I0430','778','S03405','','','0000-00-00','Date of Import: 10 Jul 2000','','',''),(443,'1','I0430','NAME','S03142','','','0000-00-00','','','',''),(444,'1','I0430','NAME','S03400','','','0000-00-00','Date of Import: 10 Jul 2000','','',''),(445,'1','I0430','NAME','S03405','','','0000-00-00','Date of Import: 10 Jul 2000','','',''),(446,'1','I0430','BIRT','S03400','','','0000-00-00','Date of Import: 10 Jul 2000','','',''),(447,'1','I0430','BIRT','S03405','','','0000-00-00','Date of Import: 10 Jul 2000','','',''),(448,'1','I0430','DEAT','S03400','','','0000-00-00','Date of Import: 10 Jul 2000','','',''),(449,'1','I0430','DEAT','S03405','','','0000-00-00','Date of Import: 10 Jul 2000','','',''),(450,'1','I0431','779','S03400','','','0000-00-00','Date of Import: 10 Jul 2000','','',''),(451,'1','I0431','779','S03405','','','0000-00-00','Date of Import: 10 Jul 2000','','',''),(452,'1','I0431','NAME','S03142','','','0000-00-00','','','',''),(453,'1','I0431','NAME','S03400','','','0000-00-00','Date of Import: 10 Jul 2000','','',''),(454,'1','I0431','NAME','S03405','','','0000-00-00','Date of Import: 10 Jul 2000','','',''),(455,'1','I0431','BIRT','S03400','','','0000-00-00','Date of Import: 10 Jul 2000','','',''),(456,'1','I0431','BIRT','S03405','','','0000-00-00','Date of Import: 10 Jul 2000','','',''),(457,'1','I0432','780','S03400','','','0000-00-00','Date of Import: 10 Jul 2000','','',''),(458,'1','I0432','780','S03405','','','0000-00-00','Date of Import: 10 Jul 2000','','',''),(459,'1','I0432','NAME','S03142','','','0000-00-00','','','',''),(460,'1','I0432','NAME','S03400','','','0000-00-00','Date of Import: 10 Jul 2000','','',''),(461,'1','I0432','NAME','S03405','','','0000-00-00','Date of Import: 10 Jul 2000','','',''),(462,'1','I0432','BIRT','S03400','','','0000-00-00','Date of Import: 10 Jul 2000','','',''),(463,'1','I0432','BIRT','S03405','','','0000-00-00','Date of Import: 10 Jul 2000','','',''),(464,'1','I0433','781','S03400','','','0000-00-00','Date of Import: 10 Jul 2000','','',''),(465,'1','I0433','781','S03405','','','0000-00-00','Date of Import: 10 Jul 2000','','',''),(466,'1','I0433','NAME','S03142','','','0000-00-00','','','',''),(467,'1','I0433','NAME','S03400','','','0000-00-00','Date of Import: 10 Jul 2000','','',''),(468,'1','I0433','NAME','S03405','','','0000-00-00','Date of Import: 10 Jul 2000','','',''),(469,'1','I0433','BIRT','S03400','','','0000-00-00','Date of Import: 10 Jul 2000','','',''),(470,'1','I0433','BIRT','S03405','','','0000-00-00','Date of Import: 10 Jul 2000','','',''),(471,'1','I0434','782','S03400','','','0000-00-00','Date of Import: 10 Jul 2000','','',''),(472,'1','I0434','782','S03405','','','0000-00-00','Date of Import: 10 Jul 2000','','',''),(473,'1','I0434','NAME','S03142','','','0000-00-00','','','',''),(474,'1','I0434','NAME','S03400','','','0000-00-00','Date of Import: 10 Jul 2000','','',''),(475,'1','I0434','NAME','S03405','','','0000-00-00','Date of Import: 10 Jul 2000','','',''),(476,'1','I0434','BIRT','S03400','','','0000-00-00','Date of Import: 10 Jul 2000','','',''),(477,'1','I0434','BIRT','S03405','','','0000-00-00','Date of Import: 10 Jul 2000','','',''),(478,'1','I0434','DEAT','S03400','','','0000-00-00','Date of Import: 10 Jul 2000','','',''),(479,'1','I0434','DEAT','S03405','','','0000-00-00','Date of Import: 10 Jul 2000','','',''),(480,'1','I0435','783','S03400','','','0000-00-00','Date of Import: 10 Jul 2000','','',''),(481,'1','I0435','783','S03405','','','0000-00-00','Date of Import: 10 Jul 2000','','',''),(482,'1','I0435','NAME','S03142','','','0000-00-00','','','',''),(483,'1','I0435','NAME','S03400','','','0000-00-00','Date of Import: 10 Jul 2000','','',''),(484,'1','I0435','NAME','S03405','','','0000-00-00','Date of Import: 10 Jul 2000','','',''),(485,'1','I0435','BIRT','S03400','','','0000-00-00','Date of Import: 10 Jul 2000','','',''),(486,'1','I0435','BIRT','S03405','','','0000-00-00','Date of Import: 10 Jul 2000','','',''),(487,'1','I0435','DEAT','S03400','','','0000-00-00','Date of Import: 10 Jul 2000','','',''),(488,'1','I0435','DEAT','S03405','','','0000-00-00','Date of Import: 10 Jul 2000','','',''),(489,'1','I0436','784','S03400','','','0000-00-00','Date of Import: 10 Jul 2000','','',''),(490,'1','I0436','784','S03405','','','0000-00-00','Date of Import: 10 Jul 2000','','',''),(491,'1','I0436','NAME','S03142','','','0000-00-00','','','',''),(492,'1','I0436','NAME','S03400','','','0000-00-00','Date of Import: 10 Jul 2000','','',''),(493,'1','I0436','NAME','S03405','','','0000-00-00','Date of Import: 10 Jul 2000','','',''),(494,'1','I0436','BIRT','S03400','','','0000-00-00','Date of Import: 10 Jul 2000','','',''),(495,'1','I0436','BIRT','S03405','','','0000-00-00','Date of Import: 10 Jul 2000','','',''),(496,'1','I0437','785','S03400','','','0000-00-00','Date of Import: 10 Jul 2000','','',''),(497,'1','I0437','785','S03405','','','0000-00-00','Date of Import: 10 Jul 2000','','',''),(498,'1','I0437','NAME','S03142','','','0000-00-00','','','',''),(499,'1','I0437','NAME','S03400','','','0000-00-00','Date of Import: 10 Jul 2000','','',''),(500,'1','I0437','NAME','S03405','','','0000-00-00','Date of Import: 10 Jul 2000','','',''),(501,'1','I0437','BIRT','S03400','','','0000-00-00','Date of Import: 10 Jul 2000','','',''),(502,'1','I0437','BIRT','S03405','','','0000-00-00','Date of Import: 10 Jul 2000','','',''),(503,'1','I0437','DEAT','S03400','','','0000-00-00','Date of Import: 10 Jul 2000','','',''),(504,'1','I0437','DEAT','S03405','','','0000-00-00','Date of Import: 10 Jul 2000','','',''),(505,'1','I0438','786','S03400','','','0000-00-00','Date of Import: 10 Jul 2000','','',''),(506,'1','I0438','786','S03405','','','0000-00-00','Date of Import: 10 Jul 2000','','',''),(507,'1','I0438','NAME','S03142','','','0000-00-00','','','',''),(508,'1','I0438','NAME','S03400','','','0000-00-00','Date of Import: 10 Jul 2000','','',''),(509,'1','I0438','NAME','S03405','','','0000-00-00','Date of Import: 10 Jul 2000','','',''),(510,'1','I0438','BIRT','S03400','','','0000-00-00','Date of Import: 10 Jul 2000','','',''),(511,'1','I0438','BIRT','S03405','','','0000-00-00','Date of Import: 10 Jul 2000','','',''),(512,'1','I0438','DEAT','S03400','','','0000-00-00','Date of Import: 10 Jul 2000','','',''),(513,'1','I0438','DEAT','S03405','','','0000-00-00','Date of Import: 10 Jul 2000','','',''),(514,'1','I0467','NAME','S02272','','','0000-00-00','','','',''),(515,'1','I0520','NAME','S03423','','','0000-00-00','Date of Import: 25 May 2004','','',''),(516,'1','I0521','NAME','S03423','','','0000-00-00','Date of Import: 25 May 2004','','',''),(517,'1','I0670','943','S03563','','','0000-00-00','','','',''),(518,'1','I1059','1422','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(519,'1','I1059','1422','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(520,'1','I1059','1422','S03114','','','0000-00-00','','','','Date of Import: 20 Mar 2005'),(521,'1','I1059','1422','S03114','','','0000-00-00','','','','Date of Import: 6 Apr 2005'),(522,'1','I1059','1423','S02071','','','0000-00-00','','','',''),(523,'1','I1059','1423','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(524,'1','I1059','1423','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(525,'1','I1059','1424','S02071','','','0000-00-00','','','',''),(526,'1','I1059','1424','S03114','','','0000-00-00','','','','Date of Import: 20 Mar 2005'),(527,'1','I1059','1424','S03114','','','0000-00-00','','','','Date of Import: 6 Apr 2005'),(528,'1','I1059','1425','S02412','','','0000-00-00','','RG11 4503/87 page 11','',''),(529,'1','I1059','1425','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(530,'1','I1059','1425','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(531,'1','I1059','1425','S03114','','','0000-00-00','','','','Date of Import: 20 Mar 2005'),(532,'1','I1059','1425','S03114','','','0000-00-00','','','','Date of Import: 6 Apr 2005'),(533,'1','I1059','1426','S02724','','','0000-00-00','','RG12 1380 page 1','',''),(534,'1','I1059','1426','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(535,'1','I1059','1426','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(536,'1','I1059','1426','S03114','','','0000-00-00','','','','Date of Import: 20 Mar 2005'),(537,'1','I1059','1426','S03114','','','0000-00-00','','','','Date of Import: 6 Apr 2005'),(538,'1','I1059','1427','S02974','','','0000-00-00','','RG13/676 page 5','',''),(539,'1','I1059','1427','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(540,'1','I1059','1427','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(541,'1','I1059','1428','S02974','','','0000-00-00','','RG13/676 page 5','',''),(542,'1','I1059','1428','S03114','','','0000-00-00','','','','Date of Import: 20 Mar 2005'),(543,'1','I1059','1428','S03114','','','0000-00-00','','','','Date of Import: 6 Apr 2005'),(544,'1','I1059','NAME','S03423','','','0000-00-00','Date of Import: 25 May 2004','','',''),(545,'1','I1059','BIRT','S03423','','','0000-00-00','Date of Import: 25 May 2004','','',''),(546,'1','I1059','BIRT','S03423','','','0000-00-00','','','','Date of Import: 25 May 2004'),(547,'1','I1060','NAME','S03423','','','0000-00-00','Date of Import: 25 May 2004','','',''),(548,'1','I1061','NAME','S03423','','','0000-00-00','Date of Import: 25 May 2004','','',''),(549,'1','I1061','BIRT','S03423','','','0000-00-00','Date of Import: 25 May 2004','','',''),(550,'1','I1061','BIRT','S03423','','','0000-00-00','','','','Date of Import: 25 May 2004'),(551,'1','I1061','DEAT','S03423','','','0000-00-00','Date of Import: 25 May 2004','','',''),(552,'1','I1061','DEAT','S03423','','','0000-00-00','','','','Date of Import: 25 May 2004'),(553,'1','I1137','1448','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(554,'1','I1137','1448','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(555,'1','I1137','1448','S03114','','','0000-00-00','','','','Date of Import: 20 Mar 2005'),(556,'1','I1137','1448','S03114','','','0000-00-00','','','','Date of Import: 6 Apr 2005'),(557,'1','I1137','1452','S02416','','','0000-00-00','','','',''),(558,'1','I1137','1452','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(559,'1','I1137','1452','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(560,'1','I1137','1453','S02416','','','0000-00-00','','','',''),(561,'1','I1137','1453','S03114','','','0000-00-00','','','','Date of Import: 20 Mar 2005'),(562,'1','I1137','1453','S03114','','','0000-00-00','','','','Date of Import: 6 Apr 2005'),(563,'1','I1137','1454','S02579','','','0000-00-00','','','',''),(564,'1','I1137','1454','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(565,'1','I1137','1454','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(566,'1','I1137','1454','S03114','','','0000-00-00','','','','Date of Import: 20 Mar 2005'),(567,'1','I1137','1454','S03114','','','0000-00-00','','','','Date of Import: 6 Apr 2005'),(568,'1','I1137','1455','S02838','','','0000-00-00','','','',''),(569,'1','I1137','1455','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(570,'1','I1137','1455','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(571,'1','I1137','1455','S03114','','','0000-00-00','','','','Date of Import: 20 Mar 2005'),(572,'1','I1137','1455','S03114','','','0000-00-00','','','','Date of Import: 6 Apr 2005'),(573,'1','I1137','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(574,'1','I1137','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(575,'1','I1138','1459','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(576,'1','I1138','1459','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(577,'1','I1138','1459','S03114','','','0000-00-00','','','','Date of Import: 20 Mar 2005'),(578,'1','I1138','1459','S03114','','','0000-00-00','','','','Date of Import: 6 Apr 2005'),(579,'1','I1138','1463','S02416','','','0000-00-00','','RG11 4503/87 page 11','',''),(580,'1','I1138','1463','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(581,'1','I1138','1463','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(582,'1','I1138','1464','S02416','','','0000-00-00','','RG11 4503/87 page 11','',''),(583,'1','I1138','1464','S03114','','','0000-00-00','','','','Date of Import: 20 Mar 2005'),(584,'1','I1138','1464','S03114','','','0000-00-00','','','','Date of Import: 6 Apr 2005'),(585,'1','I1138','1465','S02579','','','0000-00-00','','RG12 1380 51 page 1','',''),(586,'1','I1138','1465','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(587,'1','I1138','1465','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(588,'1','I1138','1465','S03114','','','0000-00-00','','','','Date of Import: 20 Mar 2005'),(589,'1','I1138','1465','S03114','','','0000-00-00','','','','Date of Import: 6 Apr 2005'),(590,'1','I1138','1466','S02835','','','0000-00-00','','RG13 1682 page 51','',''),(591,'1','I1138','1466','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(592,'1','I1138','1466','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(593,'1','I1138','1466','S03114','','','0000-00-00','','','','Date of Import: 20 Mar 2005'),(594,'1','I1138','1466','S03114','','','0000-00-00','','','','Date of Import: 6 Apr 2005'),(595,'1','I1138','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(596,'1','I1138','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(597,'1','I1141','NAME','S03416','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(598,'1','I1141','NAME','S03414','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(599,'1','I1142','NAME','S03416','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(600,'1','I1142','NAME','S03414','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(601,'1','I1143','NAME','S03416','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(602,'1','I1143','NAME','S03414','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(603,'1','I1143','BIRT','S03416','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(604,'1','I1143','BIRT','S03414','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(605,'1','I1144','NAME','S03416','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(606,'1','I1144','NAME','S03414','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(607,'1','I1144','BIRT','S03416','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(608,'1','I1144','BIRT','S03414','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(609,'1','I1145','NAME','S03416','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(610,'1','I1145','NAME','S03414','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(611,'1','I1145','BIRT','S03416','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(612,'1','I1145','BIRT','S03414','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(613,'1','I1146','1474','S03416','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(614,'1','I1146','1474','S03414','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(615,'1','I1146','NAME','S03416','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(616,'1','I1146','NAME','S03414','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(617,'1','I1146','BIRT','S03416','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(618,'1','I1146','BIRT','S03414','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(619,'1','I1146','DEAT','S03416','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(620,'1','I1146','DEAT','S03414','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(621,'1','I1147','NAME','S03416','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(622,'1','I1147','NAME','S03414','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(623,'1','I1148','NAME','S03416','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(624,'1','I1148','NAME','S03414','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(625,'1','I1148','BIRT','S03416','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(626,'1','I1148','BIRT','S03414','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(627,'1','I1148','DEAT','S03416','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(628,'1','I1148','DEAT','S03414','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(629,'1','I1149','NAME','S03416','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(630,'1','I1149','NAME','S03414','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(631,'1','I1149','BIRT','S03416','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(632,'1','I1149','BIRT','S03414','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(633,'1','I1150','NAME','S03416','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(634,'1','I1150','NAME','S03414','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(635,'1','I1150','BIRT','S03416','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(636,'1','I1150','BIRT','S03414','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(637,'1','I1151','1475','S03416','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(638,'1','I1151','1475','S03414','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(639,'1','I1151','NAME','S03416','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(640,'1','I1151','NAME','S03414','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(641,'1','I1151','BIRT','S03416','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(642,'1','I1151','BIRT','S03414','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(643,'1','I1152','NAME','S03416','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(644,'1','I1152','NAME','S03414','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(645,'1','I1152','BIRT','S03416','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(646,'1','I1152','BIRT','S03414','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(647,'1','I1153','NAME','S03416','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(648,'1','I1153','BIRT','S03416','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(649,'1','I1153','DEAT','S03416','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(650,'1','I1154','NAME','S03416','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(651,'1','I1154','NAME','S03414','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(652,'1','I1154','BIRT','S03416','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(653,'1','I1154','BIRT','S03414','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(654,'1','I1155','1476','S03416','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(655,'1','I1155','NAME','S03416','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(656,'1','I1155','BIRT','S03416','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(657,'1','I1156','NAME','S03416','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(658,'1','I1156','NAME','S03414','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(659,'1','I1156','BIRT','S03416','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(660,'1','I1156','BIRT','S03414','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(661,'1','I1157','NAME','S03416','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(662,'1','I1157','NAME','S03414','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(663,'1','I1157','BIRT','S03416','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(664,'1','I1157','BIRT','S03414','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(665,'1','I1158','NAME','S03416','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(666,'1','I1158','NAME','S03414','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(667,'1','I1158','BIRT','S03416','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(668,'1','I1158','BIRT','S03414','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(669,'1','I1159','NAME','S03416','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(670,'1','I1159','NAME','S03414','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(671,'1','I1159','BIRT','S03416','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(672,'1','I1159','BIRT','S03414','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(673,'1','I1160','1477','S03416','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(674,'1','I1160','1477','S03414','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(675,'1','I1160','1478','S03416','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(676,'1','I1160','1478','S03414','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(677,'1','I1160','NAME','S03416','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(678,'1','I1160','NAME','S03414','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(679,'1','I1160','BIRT','S03416','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(680,'1','I1160','BIRT','S03414','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(681,'1','I1160','DEAT','S03416','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(682,'1','I1160','DEAT','S03414','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(683,'1','I1161','NAME','S03416','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(684,'1','I1161','NAME','S03414','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(685,'1','I1161','BIRT','S03416','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(686,'1','I1161','BIRT','S03414','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(687,'1','I1162','1479','S03416','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(688,'1','I1162','1479','S03414','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(689,'1','I1162','1480','S03416','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(690,'1','I1162','1480','S03414','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(691,'1','I1162','NAME','S03416','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(692,'1','I1162','NAME','S03414','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(693,'1','I1162','BIRT','S03416','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(694,'1','I1162','BIRT','S03414','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(695,'1','I1163','NAME','S03416','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(696,'1','I1163','NAME','S03414','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(697,'1','I1163','BIRT','S03416','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(698,'1','I1163','BIRT','S03414','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(699,'1','I1164','NAME','S03416','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(700,'1','I1164','NAME','S03414','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(701,'1','I1164','BIRT','S03416','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(702,'1','I1164','BIRT','S03414','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(703,'1','I1165','NAME','S03416','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(704,'1','I1165','NAME','S03414','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(705,'1','I1165','BIRT','S03416','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(706,'1','I1165','BIRT','S03414','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(707,'1','I1166','NAME','S03416','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(708,'1','I1166','NAME','S03414','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(709,'1','I1166','BIRT','S03416','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(710,'1','I1166','BIRT','S03414','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(711,'1','I1167','NAME','S03416','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(712,'1','I1167','NAME','S03414','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(713,'1','I1167','BIRT','S03416','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(714,'1','I1167','BIRT','S03414','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(715,'1','I1167','DEAT','S03416','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(716,'1','I1167','DEAT','S03414','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(717,'1','I1168','NAME','S03416','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(718,'1','I1168','NAME','S03414','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(719,'1','I1168','BIRT','S03416','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(720,'1','I1168','BIRT','S03414','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(721,'1','I1169','NAME','S03416','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(722,'1','I1169','NAME','S03414','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(723,'1','I1170','NAME','S03416','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(724,'1','I1170','NAME','S03414','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(725,'1','I1170','BIRT','S03416','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(726,'1','I1170','BIRT','S03414','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(727,'1','I1171','NAME','S03416','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(728,'1','I1171','NAME','S03414','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(729,'1','I1171','BIRT','S03416','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(730,'1','I1171','BIRT','S03414','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(731,'1','I1172','NAME','S03416','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(732,'1','I1172','NAME','S03414','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(733,'1','I1173','NAME','S03416','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(734,'1','I1173','NAME','S03414','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(735,'1','I1173','BIRT','S03416','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(736,'1','I1173','BIRT','S03414','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(737,'1','I1174','NAME','S03416','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(738,'1','I1174','NAME','S03414','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(739,'1','I1174','BIRT','S03416','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(740,'1','I1174','BIRT','S03414','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(741,'1','I1175','NAME','S03416','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(742,'1','I1175','NAME','S03414','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(743,'1','I1176','NAME','S03416','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(744,'1','I1176','NAME','S03414','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(745,'1','I1176','BIRT','S03416','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(746,'1','I1176','BIRT','S03414','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(747,'1','I1176','DEAT','S03416','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(748,'1','I1176','DEAT','S03414','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(749,'1','I1177','NAME','S03416','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(750,'1','I1177','NAME','S03414','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(751,'1','I1177','BIRT','S03416','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(752,'1','I1177','BIRT','S03414','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(753,'1','I1177','DEAT','S03416','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(754,'1','I1177','DEAT','S03414','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(755,'1','I1178','1482','S03416','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(756,'1','I1178','1482','S03414','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(757,'1','I1178','NAME','S03416','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(758,'1','I1178','NAME','S03414','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(759,'1','I1178','BIRT','S03416','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(760,'1','I1178','BIRT','S03414','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(761,'1','I1179','NAME','S03416','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(762,'1','I1179','NAME','S03414','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(763,'1','I1179','BIRT','S03416','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(764,'1','I1179','BIRT','S03414','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(765,'1','I1180','NAME','S03416','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(766,'1','I1180','NAME','S03414','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(767,'1','I1180','BIRT','S03416','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(768,'1','I1180','BIRT','S03414','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(769,'1','I1181','1483','S03416','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(770,'1','I1181','1483','S03414','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(771,'1','I1181','NAME','S03416','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(772,'1','I1181','NAME','S03414','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(773,'1','I1181','BIRT','S03416','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(774,'1','I1181','BIRT','S03414','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(775,'1','I1182','1484','S03416','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(776,'1','I1182','1484','S03414','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(777,'1','I1182','NAME','S03416','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(778,'1','I1182','NAME','S03414','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(779,'1','I1182','BIRT','S03416','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(780,'1','I1182','BIRT','S03414','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(781,'1','I1183','NAME','S03416','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(782,'1','I1183','NAME','S03414','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(783,'1','I1183','BIRT','S03416','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(784,'1','I1183','BIRT','S03414','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(785,'1','I1184','1485','S03416','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(786,'1','I1184','1485','S03414','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(787,'1','I1184','1486','S03416','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(788,'1','I1184','1486','S03414','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(789,'1','I1184','NAME','S03416','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(790,'1','I1184','NAME','S03414','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(791,'1','I1184','BIRT','S03416','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(792,'1','I1184','BIRT','S03414','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(793,'1','I1184','DEAT','S03416','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(794,'1','I1184','DEAT','S03414','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(795,'1','I1185','NAME','S03416','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(796,'1','I1185','BIRT','S03416','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(797,'1','I1185','DEAT','S03416','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(798,'1','I1186','NAME','S03416','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(799,'1','I1186','NAME','S03414','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(800,'1','I1186','BIRT','S03416','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(801,'1','I1186','BIRT','S03414','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(802,'1','I1187','NAME','S03416','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(803,'1','I1187','NAME','S03414','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(804,'1','I1187','BIRT','S03416','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(805,'1','I1187','BIRT','S03414','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(806,'1','I1188','NAME','S03416','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(807,'1','I1188','NAME','S03414','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(808,'1','I1189','NAME','S03416','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(809,'1','I1189','NAME','S03414','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(810,'1','I1190','1489','S03416','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(811,'1','I1190','1489','S03414','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(812,'1','I1190','NAME','S03416','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(813,'1','I1190','NAME','S03414','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(814,'1','I1190','BIRT','S03416','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(815,'1','I1190','BIRT','S03414','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(816,'1','I1190','DEAT','S03416','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(817,'1','I1190','DEAT','S03414','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(818,'1','I1191','NAME','S03416','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(819,'1','I1191','NAME','S03414','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(820,'1','I1191','BIRT','S03416','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(821,'1','I1191','BIRT','S03414','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(822,'1','I1191','DEAT','S03416','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(823,'1','I1191','DEAT','S03414','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(824,'1','I1192','NAME','S03416','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(825,'1','I1192','NAME','S03414','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(826,'1','I1192','BIRT','S03416','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(827,'1','I1192','BIRT','S03414','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(828,'1','I1193','NAME','S03416','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(829,'1','I1193','NAME','S03414','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(830,'1','I1193','BIRT','S03416','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(831,'1','I1193','BIRT','S03414','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(832,'1','I1194','1490','S03416','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(833,'1','I1194','1490','S03414','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(834,'1','I1194','NAME','S03416','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(835,'1','I1194','NAME','S03414','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(836,'1','I1194','BIRT','S03416','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(837,'1','I1194','BIRT','S03414','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(838,'1','I1195','1491','S03416','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(839,'1','I1195','1491','S03414','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(840,'1','I1195','1492','S03416','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(841,'1','I1195','1492','S03414','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(842,'1','I1195','NAME','S03416','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(843,'1','I1195','NAME','S03414','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(844,'1','I1195','BIRT','S03416','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(845,'1','I1195','BIRT','S03414','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(846,'1','I1196','NAME','S03416','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(847,'1','I1196','NAME','S03414','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(848,'1','I1196','BIRT','S03416','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(849,'1','I1196','BIRT','S03414','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(850,'1','I1197','1493','S03416','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(851,'1','I1197','1493','S03414','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(852,'1','I1197','NAME','S03416','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(853,'1','I1197','NAME','S03414','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(854,'1','I1197','BIRT','S03416','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(855,'1','I1197','BIRT','S03414','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(856,'1','I1198','NAME','S03416','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(857,'1','I1198','NAME','S03414','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(858,'1','I1198','BIRT','S03416','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(859,'1','I1198','BIRT','S03414','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(860,'1','I1199','NAME','S03416','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(861,'1','I1199','NAME','S03414','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(862,'1','I1199','BIRT','S03416','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(863,'1','I1199','BIRT','S03414','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(864,'1','I1200','NAME','S03416','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(865,'1','I1200','NAME','S03414','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(866,'1','I1200','BIRT','S03416','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(867,'1','I1200','BIRT','S03414','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(868,'1','I1201','NAME','S03416','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(869,'1','I1201','NAME','S03414','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(870,'1','I1201','BIRT','S03416','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(871,'1','I1201','BIRT','S03414','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(872,'1','I1202','NAME','S03416','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(873,'1','I1202','NAME','S03414','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(874,'1','I1202','BIRT','S03416','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(875,'1','I1202','BIRT','S03414','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(876,'1','I1203','NAME','S03416','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(877,'1','I1203','NAME','S03414','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(878,'1','I1203','BIRT','S03416','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(879,'1','I1203','BIRT','S03414','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(880,'1','I1204','1494','S03416','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(881,'1','I1204','1494','S03414','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(882,'1','I1204','NAME','S03416','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(883,'1','I1204','NAME','S03414','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(884,'1','I1204','BIRT','S03416','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(885,'1','I1204','BIRT','S03414','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(886,'1','I1204','DEAT','S03416','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(887,'1','I1204','DEAT','S03414','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(888,'1','I1205','NAME','S03416','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(889,'1','I1205','NAME','S03414','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(890,'1','I1205','BIRT','S03416','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(891,'1','I1205','BIRT','S03414','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(892,'1','I1205','DEAT','S03416','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(893,'1','I1205','DEAT','S03414','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(894,'1','I1206','NAME','S03416','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(895,'1','I1206','NAME','S03414','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(896,'1','I1206','BIRT','S03416','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(897,'1','I1206','BIRT','S03414','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(898,'1','I1207','NAME','S03416','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(899,'1','I1207','NAME','S03414','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(900,'1','I1207','BIRT','S03416','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(901,'1','I1207','BIRT','S03414','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(902,'1','I1207','DEAT','S03416','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(903,'1','I1207','DEAT','S03414','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(904,'1','I1208','NAME','S03416','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(905,'1','I1208','NAME','S03414','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(906,'1','I1208','BIRT','S03416','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(907,'1','I1208','BIRT','S03414','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(908,'1','I1209','NAME','S03416','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(909,'1','I1209','NAME','S03414','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(910,'1','I1209','BIRT','S03416','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(911,'1','I1209','BIRT','S03414','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(912,'1','I1209','DEAT','S03416','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(913,'1','I1209','DEAT','S03414','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(914,'1','I1210','NAME','S03416','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(915,'1','I1210','NAME','S03414','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(916,'1','I1210','BIRT','S03416','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(917,'1','I1210','BIRT','S03414','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(918,'1','I1211','NAME','S03416','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(919,'1','I1211','NAME','S03414','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(920,'1','I1211','BIRT','S03416','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(921,'1','I1211','BIRT','S03414','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(922,'1','I1212','NAME','S03416','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(923,'1','I1212','NAME','S03414','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(924,'1','I1212','BIRT','S03416','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(925,'1','I1212','BIRT','S03414','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(926,'1','I1213','NAME','S03416','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(927,'1','I1213','BIRT','S03416','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(928,'1','I1213','DEAT','S03416','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(929,'1','I1214','NAME','S03416','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(930,'1','I1214','NAME','S03414','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(931,'1','I1214','BIRT','S03416','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(932,'1','I1214','BIRT','S03414','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(933,'1','I1215','NAME','S03416','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(934,'1','I1215','NAME','S03414','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(935,'1','I1215','BIRT','S03416','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(936,'1','I1215','BIRT','S03414','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(937,'1','I1216','NAME','S03416','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(938,'1','I1216','NAME','S03414','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(939,'1','I1216','BIRT','S03416','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(940,'1','I1216','BIRT','S03414','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(941,'1','I1217','NAME','S03416','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(942,'1','I1217','NAME','S03414','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(943,'1','I1217','BIRT','S03416','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(944,'1','I1217','BIRT','S03414','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(945,'1','I1217','DEAT','S03416','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(946,'1','I1217','DEAT','S03414','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(947,'1','I1218','NAME','S03416','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(948,'1','I1218','BIRT','S03416','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(949,'1','I1218','DEAT','S03416','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(950,'1','I1219','NAME','S03416','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(951,'1','I1219','NAME','S03414','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(952,'1','I1219','BIRT','S03416','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(953,'1','I1219','BIRT','S03414','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(954,'1','I1220','NAME','S03416','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(955,'1','I1220','NAME','S03414','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(956,'1','I1221','NAME','S03416','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(957,'1','I1222','1495','S03416','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(958,'1','I1222','1495','S03414','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(959,'1','I1222','NAME','S03416','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(960,'1','I1222','NAME','S03414','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(961,'1','I1222','BIRT','S03416','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(962,'1','I1222','BIRT','S03414','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(963,'1','I1223','NAME','S03416','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(964,'1','I1223','NAME','S03414','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(965,'1','I1223','BIRT','S03416','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(966,'1','I1223','BIRT','S03414','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(967,'1','I1224','NAME','S03416','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(968,'1','I1224','NAME','S03414','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(969,'1','I1224','BIRT','S03416','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(970,'1','I1224','BIRT','S03414','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(971,'1','I1225','NAME','S03416','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(972,'1','I1225','NAME','S03414','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(973,'1','I1225','BIRT','S03416','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(974,'1','I1225','BIRT','S03414','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(975,'1','I1226','NAME','S03416','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(976,'1','I1226','NAME','S03414','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(977,'1','I1226','BIRT','S03416','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(978,'1','I1226','BIRT','S03414','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(979,'1','I1227','NAME','S03416','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(980,'1','I1227','NAME','S03414','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(981,'1','I1227','BIRT','S03416','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(982,'1','I1227','BIRT','S03414','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(983,'1','I1228','NAME','S03416','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(984,'1','I1228','NAME','S03414','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(985,'1','I1229','NAME','S03416','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(986,'1','I1229','NAME','S03414','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(987,'1','I1230','NAME','S03416','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(988,'1','I1230','NAME','S03414','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(989,'1','I1230','BIRT','S03416','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(990,'1','I1230','BIRT','S03414','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(991,'1','I1231','NAME','S03416','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(992,'1','I1231','NAME','S03414','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(993,'1','I1231','BIRT','S03416','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(994,'1','I1231','BIRT','S03414','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(995,'1','I1232','NAME','S03416','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(996,'1','I1232','NAME','S03414','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(997,'1','I1232','BIRT','S03416','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(998,'1','I1232','BIRT','S03414','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(999,'1','I1233','NAME','S03416','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(1000,'1','I1233','NAME','S03414','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1001,'1','I1233','BIRT','S03416','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(1002,'1','I1233','BIRT','S03414','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1003,'1','I1234','NAME','S03416','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(1004,'1','I1234','BIRT','S03416','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(1005,'1','I1235','1496','S03416','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(1006,'1','I1235','1496','S03414','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1007,'1','I1235','NAME','S03416','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(1008,'1','I1235','NAME','S03414','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1009,'1','I1235','BIRT','S03416','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(1010,'1','I1235','BIRT','S03414','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1011,'1','I1236','1497','S03416','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(1012,'1','I1236','1497','S03414','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1013,'1','I1236','NAME','S03416','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(1014,'1','I1236','NAME','S03414','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1015,'1','I1236','BIRT','S03416','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(1016,'1','I1236','BIRT','S03414','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1017,'1','I1237','NAME','S03416','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(1018,'1','I1237','NAME','S03414','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1019,'1','I1237','BIRT','S03416','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(1020,'1','I1237','BIRT','S03414','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1021,'1','I1267','1525','S03495','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(1022,'1','I1267','1525','S03495','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1023,'1','I1267','NAME','S03495','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(1024,'1','I1267','NAME','S03495','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1025,'1','I1267','BIRT','S03495','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(1026,'1','I1267','BIRT','S03495','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1027,'1','I1267','DEAT','S03495','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(1028,'1','I1267','DEAT','S03495','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1029,'1','I1268','NAME','S03495','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(1030,'1','I1268','BIRT','S03495','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(1031,'1','I1268','BIRT','S03495','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1032,'1','I1268','DEAT','S03495','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(1033,'1','I1268','DEAT','S03495','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1034,'1','I1269','NAME','S03495','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(1035,'1','I1269','BIRT','S03495','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(1036,'1','I1269','DEAT','S03495','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(1037,'1','I1270','NAME','S03495','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(1038,'1','I1270','BIRT','S03495','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(1039,'1','I1271','NAME','S03495','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(1040,'1','I1271','BIRT','S03495','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(1041,'1','I1272','NAME','S03495','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(1042,'1','I1272','NAME','S03495','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1043,'1','I1272','BIRT','S03495','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(1044,'1','I1272','BIRT','S03495','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1045,'1','I1273','NAME','S03495','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(1046,'1','I1273','BIRT','S03495','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(1047,'1','I1275','NAME','S03495','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(1048,'1','I1275','BIRT','S03495','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(1049,'1','I1276','NAME','S03495','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(1050,'1','I1276','BIRT','S03495','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(1051,'1','I1277','NAME','S03495','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(1052,'1','I1277','BIRT','S03495','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(1053,'1','I1278','NAME','S03495','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(1054,'1','I1278','BIRT','S03495','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(1055,'1','I1279','NAME','S03495','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(1056,'1','I1279','NAME','S03468','','','0000-00-00','Date of Import: 20 Dec 2004','','',''),(1057,'1','I1279','NAME','S03414','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1058,'1','I1279','BIRT','S03495','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(1059,'1','I1279','BIRT','S03468','','','0000-00-00','Date of Import: 20 Dec 2004','','',''),(1060,'1','I1279','BIRT','S03414','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1061,'1','I1280','1532','S03495','','','0000-00-00','','','','Date of Import: 9 Dec 2004'),(1062,'1','I1280','NAME','S03495','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(1063,'1','I1280','BIRT','S03495','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(1064,'1','I1280','BIRT','S03495','','','0000-00-00','','','','Date of Import: 9 Dec 2004'),(1065,'1','I1281','NAME','S03495','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(1066,'1','I1281','BIRT','S03495','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(1067,'1','I1282','NAME','S03495','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(1068,'1','I1282','BIRT','S03495','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(1069,'1','I1282','BIRT','S03495','','','0000-00-00','','','','Date of Import: 9 Dec 2004'),(1070,'1','I1283','NAME','S03495','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(1071,'1','I1283','BIRT','S03495','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(1072,'1','I1284','NAME','S03495','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(1073,'1','I1284','BIRT','S03495','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(1074,'1','I1285','NAME','S03495','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(1075,'1','I1285','NAME','S03468','','','0000-00-00','Date of Import: 20 Dec 2004','','',''),(1076,'1','I1285','NAME','S03414','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1077,'1','I1285','BIRT','S03495','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(1078,'1','I1285','BIRT','S03468','','','0000-00-00','Date of Import: 20 Dec 2004','','',''),(1079,'1','I1285','BIRT','S03414','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1080,'1','I1286','NAME','S03495','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(1081,'1','I1286','NAME','S03468','','','0000-00-00','Date of Import: 20 Dec 2004','','',''),(1082,'1','I1286','NAME','S03414','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1083,'1','I1286','BIRT','S03495','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(1084,'1','I1286','BIRT','S03468','','','0000-00-00','Date of Import: 20 Dec 2004','','',''),(1085,'1','I1286','BIRT','S03414','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1086,'1','I1287','NAME','S03495','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(1087,'1','I1287','BIRT','S03495','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(1088,'1','I1288','NAME','S03495','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(1089,'1','I1288','BIRT','S03495','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(1090,'1','I1289','NAME','S03495','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(1091,'1','I1289','BIRT','S03495','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(1092,'1','I1293','1536','S03495','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(1093,'1','I1293','1536','S03495','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1094,'1','I1293','NAME','S03495','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(1095,'1','I1293','NAME','S03495','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1096,'1','I1293','BIRT','S03495','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(1097,'1','I1293','BIRT','S03495','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1098,'1','I1295','NAME','S03495','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(1099,'1','I1295','NAME','S03495','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1100,'1','I1295','BIRT','S03495','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(1101,'1','I1295','BIRT','S03495','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1102,'1','I1297','1538','S03495','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(1103,'1','I1297','1538','S03495','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1104,'1','I1297','NAME','S03495','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(1105,'1','I1297','NAME','S03495','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1106,'1','I1297','BIRT','S03495','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(1107,'1','I1297','BIRT','S03495','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1108,'1','I1299','1539','S03495','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(1109,'1','I1299','1539','S03495','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1110,'1','I1299','NAME','S03495','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(1111,'1','I1299','NAME','S03495','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1112,'1','I1299','BIRT','S03495','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(1113,'1','I1299','BIRT','S03495','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1114,'1','I1300','NAME','S03495','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(1115,'1','I1300','NAME','S03495','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1116,'1','I1300','BIRT','S03495','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(1117,'1','I1300','BIRT','S03495','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1118,'1','I1301','NAME','S03495','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(1119,'1','I1301','NAME','S03495','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1120,'1','I1301','BIRT','S03495','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(1121,'1','I1301','BIRT','S03495','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1122,'1','I1303','1540','S03495','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(1123,'1','I1303','1540','S03495','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1124,'1','I1303','NAME','S03495','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(1125,'1','I1303','NAME','S03495','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1126,'1','I1303','BIRT','S03495','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(1127,'1','I1303','BIRT','S03495','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1128,'1','I1304','NAME','S03495','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(1129,'1','I1304','NAME','S03495','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1130,'1','I1304','BIRT','S03495','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(1131,'1','I1304','BIRT','S03495','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1132,'1','I1305','NAME','S03495','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(1133,'1','I1305','NAME','S03495','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1134,'1','I1306','NAME','S03495','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(1135,'1','I1306','NAME','S03495','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1136,'1','I1306','BIRT','S03495','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(1137,'1','I1306','BIRT','S03495','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1138,'1','I1307','NAME','S03495','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(1139,'1','I1307','NAME','S03495','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1140,'1','I1307','BIRT','S03495','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(1141,'1','I1307','BIRT','S03495','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1142,'1','I1308','NAME','S03495','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(1143,'1','I1308','NAME','S03495','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1144,'1','I1308','BIRT','S03495','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(1145,'1','I1308','BIRT','S03495','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1146,'1','I1309','1544','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1147,'1','I1309','1544','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(1148,'1','I1309','1544','S03114','','','0000-00-00','','','','Date of Import: 20 Mar 2005'),(1149,'1','I1309','1544','S03114','','','0000-00-00','','','','Date of Import: 6 Apr 2005'),(1150,'1','I1309','1546','S02071','','','0000-00-00','','RG10 1704 page 10','',''),(1151,'1','I1309','1546','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1152,'1','I1309','1546','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(1153,'1','I1309','1547','S02071','','','0000-00-00','','RG10 1704 page 10','',''),(1154,'1','I1309','1547','S03114','','','0000-00-00','','','','Date of Import: 20 Mar 2005'),(1155,'1','I1309','1547','S03114','','','0000-00-00','','','','Date of Import: 6 Apr 2005'),(1156,'1','I1309','1548','S02383','','','0000-00-00','','','',''),(1157,'1','I1309','1548','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1158,'1','I1309','1548','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(1159,'1','I1309','1548','S02377','','','0000-00-00','','','',''),(1160,'1','I1309','1548','S03114','','','0000-00-00','','','','Date of Import: 20 Mar 2005'),(1161,'1','I1309','1548','S03114','','','0000-00-00','','','','Date of Import: 6 Apr 2005'),(1162,'1','I1309','1549','S02690','','','0000-00-00','','RG12 1392 page 15','',''),(1163,'1','I1309','1549','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1164,'1','I1309','1549','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(1165,'1','I1309','1549','S03114','','','0000-00-00','','','','Date of Import: 20 Mar 2005'),(1166,'1','I1309','1549','S03114','','','0000-00-00','','','','Date of Import: 6 Apr 2005'),(1167,'1','I1309','1550','S02800','','','0000-00-00','','','',''),(1168,'1','I1309','1550','S03114','','','0000-00-00','','','','Date of Import: 20 Mar 2005'),(1169,'1','I1309','1550','S03114','','','0000-00-00','','','','Date of Import: 6 Apr 2005'),(1170,'1','I1309','1551','S02800','','','0000-00-00','','','',''),(1171,'1','I1309','1551','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1172,'1','I1309','1551','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(1173,'1','I1309','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1174,'1','I1309','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(1175,'1','I1310','NAME','S03495','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(1176,'1','I1310','BIRT','S03495','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1177,'1','I1311','NAME','S03495','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(1178,'1','I1311','NAME','S03495','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1179,'1','I1311','BIRT','S03495','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1180,'1','I1311','DEAT','S03495','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1181,'1','I1312','NAME','S03495','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(1182,'1','I1312','NAME','S03495','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1183,'1','I1313','NAME','S03495','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(1184,'1','I1313','NAME','S03495','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1185,'1','I1314','NAME','S03495','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(1186,'1','I1314','NAME','S03495','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1187,'1','I1314','BIRT','S03495','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(1188,'1','I1314','BIRT','S03495','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1189,'1','I1315','NAME','S03495','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(1190,'1','I1315','NAME','S03495','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1191,'1','I1316','NAME','S03495','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(1192,'1','I1316','NAME','S03495','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1193,'1','I1317','NAME','S03495','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(1194,'1','I1317','NAME','S03495','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1195,'1','I1318','NAME','S03495','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(1196,'1','I1319','NAME','S03495','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(1197,'1','I1319','NAME','S03495','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1198,'1','I1320','NAME','S03495','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(1199,'1','I1320','NAME','S03495','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1200,'1','I1321','NAME','S03495','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(1201,'1','I1321','NAME','S03495','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1202,'1','I1321','BIRT','S03495','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(1203,'1','I1321','BIRT','S03495','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1204,'1','I1322','NAME','S03495','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(1205,'1','I1322','NAME','S03495','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1206,'1','I1323','NAME','S03495','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(1207,'1','I1323','NAME','S03495','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1208,'1','I1323','BIRT','S03495','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(1209,'1','I1323','BIRT','S03495','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1210,'1','I1324','NAME','S03495','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(1211,'1','I1324','NAME','S03495','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1212,'1','I1324','BIRT','S03495','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(1213,'1','I1324','BIRT','S03495','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1214,'1','I1325','1556','S02028','','','0000-00-00','','','',''),(1215,'1','I1325','1556','S03114','','','0000-00-00','','','','Date of Import: 20 Mar 2005'),(1216,'1','I1325','1556','S03114','','','0000-00-00','','','','Date of Import: 6 Apr 2005'),(1217,'1','I1325','1557','S02033','','','0000-00-00','','','',''),(1218,'1','I1325','1557','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1219,'1','I1325','1557','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(1220,'1','I1325','1558','S02071','','','0000-00-00','','','',''),(1221,'1','I1325','1558','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1222,'1','I1325','1558','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(1223,'1','I1325','1559','S02071','','','0000-00-00','','','',''),(1224,'1','I1325','1559','S03114','','','0000-00-00','','','','Date of Import: 20 Mar 2005'),(1225,'1','I1325','1559','S03114','','','0000-00-00','','','','Date of Import: 6 Apr 2005'),(1226,'1','I1325','1560','S02416','','','0000-00-00','','','',''),(1227,'1','I1325','1560','S03114','','','0000-00-00','','','','Date of Import: 20 Mar 2005'),(1228,'1','I1325','1560','S03114','','','0000-00-00','','','','Date of Import: 6 Apr 2005'),(1229,'1','I1325','1561','S02416','','','0000-00-00','','','',''),(1230,'1','I1325','1561','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1231,'1','I1325','1561','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(1232,'1','I1325','1562','S02598','','','0000-00-00','','','',''),(1233,'1','I1325','1562','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1234,'1','I1325','1562','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(1235,'1','I1325','1562','S02593','','','0000-00-00','','','',''),(1236,'1','I1325','1562','S03114','','','0000-00-00','','','','Date of Import: 20 Mar 2005'),(1237,'1','I1325','1562','S03114','','','0000-00-00','','','','Date of Import: 6 Apr 2005'),(1238,'1','I1325','1563','S02850','','','0000-00-00','','','',''),(1239,'1','I1325','1563','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1240,'1','I1325','1563','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(1241,'1','I1325','1563','S02845','','','0000-00-00','','','',''),(1242,'1','I1325','1563','S03114','','','0000-00-00','','','','Date of Import: 20 Mar 2005'),(1243,'1','I1325','1563','S03114','','','0000-00-00','','','','Date of Import: 6 Apr 2005'),(1244,'1','I1325','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1245,'1','I1325','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(1246,'1','I1325','DEAT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1247,'1','I1325','DEAT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(1248,'1','I1325','DEAT','S03114','','','0000-00-00','','','','Date of Import: 20 Mar 2005'),(1249,'1','I1325','DEAT','S03114','','','0000-00-00','','','','Date of Import: 6 Apr 2005'),(1250,'1','I1326','NAME','S03495','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(1251,'1','I1327','NAME','S03495','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(1252,'1','I1328','NAME','S03495','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(1253,'1','I1328','NAME','S03495','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1254,'1','I1328','BIRT','S03495','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(1255,'1','I1328','BIRT','S03495','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1256,'1','I1329','NAME','S03495','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(1257,'1','I1329','NAME','S03495','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1258,'1','I1329','BIRT','S03495','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(1259,'1','I1329','BIRT','S03495','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1260,'1','I1330','NAME','S03495','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(1261,'1','I1330','NAME','S03495','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1262,'1','I1331','NAME','S03495','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(1263,'1','I1331','NAME','S03495','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1264,'1','I1331','BIRT','S03495','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(1265,'1','I1331','BIRT','S03495','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1266,'1','I1332','NAME','S03495','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(1267,'1','I1332','NAME','S03495','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1268,'1','I1332','BIRT','S03495','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(1269,'1','I1332','BIRT','S03495','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1270,'1','I1333','NAME','S03495','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(1271,'1','I1333','NAME','S03495','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1272,'1','I1333','BIRT','S03495','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(1273,'1','I1333','BIRT','S03495','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1274,'1','I1334','NAME','S03495','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(1275,'1','I1334','NAME','S03495','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1276,'1','I1335','NAME','S03495','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(1277,'1','I1335','NAME','S03495','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1278,'1','I1335','BIRT','S03495','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(1279,'1','I1335','BIRT','S03495','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1280,'1','I1336','NAME','S03495','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(1281,'1','I1336','NAME','S03495','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1282,'1','I1336','BIRT','S03495','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(1283,'1','I1336','BIRT','S03495','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1284,'1','I1337','NAME','S03495','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(1285,'1','I1337','NAME','S03495','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1286,'1','I1338','NAME','S03495','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(1287,'1','I1338','NAME','S03495','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1288,'1','I1339','NAME','S03495','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(1289,'1','I1339','NAME','S03495','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1290,'1','I1339','BIRT','S03495','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(1291,'1','I1339','BIRT','S03495','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1292,'1','I1340','NAME','S03495','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(1293,'1','I1340','NAME','S03495','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1294,'1','I1341','NAME','S03495','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(1295,'1','I1341','NAME','S03495','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1296,'1','I1341','BIRT','S03495','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(1297,'1','I1341','BIRT','S03495','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1298,'1','I1342','NAME','S03495','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(1299,'1','I1342','NAME','S03495','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1300,'1','I1342','BIRT','S03495','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(1301,'1','I1342','BIRT','S03495','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1302,'1','I1343','1564','S03495','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1303,'1','I1343','NAME','S03495','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(1304,'1','I1343','NAME','S03495','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1305,'1','I1343','BIRT','S03495','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(1306,'1','I1344','NAME','S03495','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(1307,'1','I1344','NAME','S03495','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1308,'1','I1344','BIRT','S03495','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1309,'1','I1344','DEAT','S03495','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1310,'1','I1345','NAME','S03495','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(1311,'1','I1345','BIRT','S03495','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(1312,'1','I1346','1565','S03495','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1313,'1','I1346','NAME','S03495','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(1314,'1','I1346','NAME','S03495','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1315,'1','I1346','BIRT','S03495','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(1316,'1','I1347','NAME','S03495','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(1317,'1','I1347','NAME','S03495','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1318,'1','I1347','BIRT','S03495','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(1319,'1','I1347','BIRT','S03495','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1320,'1','I1348','NAME','S03495','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(1321,'1','I1348','BIRT','S03495','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(1322,'1','I1349','NAME','S03495','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(1323,'1','I1349','BIRT','S03495','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(1324,'1','I1349','BIRT','S03495','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1325,'1','I1350','NAME','S03495','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(1326,'1','I1350','NAME','S03495','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1327,'1','I1350','BIRT','S03495','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(1328,'1','I1350','BIRT','S03495','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1329,'1','I1351','NAME','S03495','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(1330,'1','I1351','NAME','S03495','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1331,'1','I1351','BIRT','S03495','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(1332,'1','I1351','BIRT','S03495','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1333,'1','I1352','NAME','S03495','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(1334,'1','I1352','NAME','S03495','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1335,'1','I1352','BIRT','S03495','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(1336,'1','I1352','BIRT','S03495','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1337,'1','I1353','NAME','S03495','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(1338,'1','I1353','NAME','S03495','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1339,'1','I1354','1567','S03495','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1340,'1','I1354','NAME','S03495','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(1341,'1','I1354','NAME','S03495','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1342,'1','I1354','BIRT','S03495','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(1343,'1','I1355','1568','S03495','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1344,'1','I1355','1569','S03495','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1345,'1','I1355','NAME','S03495','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(1346,'1','I1355','NAME','S03495','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1347,'1','I1355','BIRT','S03495','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(1348,'1','I1356','NAME','S03495','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(1349,'1','I1356','NAME','S03495','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1350,'1','I1356','BIRT','S03495','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(1351,'1','I1356','BIRT','S03495','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1352,'1','I1357','1572','S03495','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1353,'1','I1357','NAME','S03495','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(1354,'1','I1357','BIRT','S03495','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(1355,'1','I1358','NAME','S03495','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(1356,'1','I1358','NAME','S03495','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1357,'1','I1358','BIRT','S03495','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(1358,'1','I1358','BIRT','S03495','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1359,'1','I1359','NAME','S03495','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(1360,'1','I1359','BIRT','S03495','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(1361,'1','I1359','BIRT','S03495','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1362,'1','I1360','NAME','S03495','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(1363,'1','I1360','NAME','S03495','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1364,'1','I1360','BIRT','S03495','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(1365,'1','I1360','BIRT','S03495','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1366,'1','I1361','NAME','S03495','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(1367,'1','I1361','NAME','S03495','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1368,'1','I1361','BIRT','S03495','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(1369,'1','I1361','BIRT','S03495','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1370,'1','I1362','NAME','S03495','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(1371,'1','I1362','NAME','S03495','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1372,'1','I1362','BIRT','S03495','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(1373,'1','I1362','BIRT','S03495','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1374,'1','I1363','NAME','S03495','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(1375,'1','I1364','NAME','S03495','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(1376,'1','I1364','BIRT','S03495','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(1377,'1','I1364','BIRT','S03495','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1378,'1','I1365','NAME','S03495','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(1379,'1','I1365','NAME','S03495','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1380,'1','I1365','BIRT','S03495','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(1381,'1','I1365','BIRT','S03495','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1382,'1','I1366','NAME','S03495','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(1383,'1','I1366','NAME','S03495','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1384,'1','I1366','BIRT','S03495','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(1385,'1','I1366','BIRT','S03495','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1386,'1','I1367','NAME','S03495','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(1387,'1','I1368','NAME','S03495','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(1388,'1','I1368','NAME','S03495','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1389,'1','I1368','BIRT','S03495','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(1390,'1','I1368','BIRT','S03495','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1391,'1','I1369','NAME','S03495','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(1392,'1','I1369','NAME','S03495','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1393,'1','I1369','BIRT','S03495','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(1394,'1','I1369','BIRT','S03495','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1395,'1','I1370','NAME','S03495','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(1396,'1','I1370','NAME','S03495','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1397,'1','I1370','BIRT','S03495','','','0000-00-00','Date of Import: 9 Dec 2004','','',''),(1398,'1','I1370','BIRT','S03495','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1399,'1','I1380','1577','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1400,'1','I1380','1577','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(1401,'1','I1380','1577','S03114','','','0000-00-00','','','','Date of Import: 20 Mar 2005'),(1402,'1','I1380','1577','S03114','','','0000-00-00','','','','Date of Import: 6 Apr 2005'),(1403,'1','I1380','1578','S02724','','','0000-00-00','','','',''),(1404,'1','I1380','1578','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1405,'1','I1380','1578','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(1406,'1','I1380','1578','S03114','','','0000-00-00','','','','Date of Import: 20 Mar 2005'),(1407,'1','I1380','1578','S03114','','','0000-00-00','','','','Date of Import: 6 Apr 2005'),(1408,'1','I1380','1579','S02974','','','0000-00-00','','','',''),(1409,'1','I1380','1579','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1410,'1','I1380','1579','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(1411,'1','I1380','1580','S02974','','','0000-00-00','','','',''),(1412,'1','I1380','1580','S03114','','','0000-00-00','','','','Date of Import: 20 Mar 2005'),(1413,'1','I1380','1580','S03114','','','0000-00-00','','','','Date of Import: 6 Apr 2005'),(1414,'1','I1380','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1415,'1','I1380','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(1416,'1','I1381','1583','S03228','','','0000-00-00','','Births June q 1887 Billericay Essex Vol 4a 407','',''),(1417,'1','I1381','1583','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1418,'1','I1381','1583','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(1419,'1','I1381','1583','S03114','','','0000-00-00','','','','Date of Import: 20 Mar 2005'),(1420,'1','I1381','1583','S03114','','','0000-00-00','','','','Date of Import: 6 Apr 2005'),(1421,'1','I1381','1584','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1422,'1','I1381','1584','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(1423,'1','I1381','1584','S03114','','','0000-00-00','','','','Date of Import: 20 Mar 2005'),(1424,'1','I1381','1584','S03114','','','0000-00-00','','','','Date of Import: 6 Apr 2005'),(1425,'1','I1381','1585','S02974','','','0000-00-00','','','',''),(1426,'1','I1381','1585','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1427,'1','I1381','1585','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(1428,'1','I1381','1585','S03114','','','0000-00-00','','','','Date of Import: 20 Mar 2005'),(1429,'1','I1381','1585','S03114','','','0000-00-00','','','','Date of Import: 6 Apr 2005'),(1430,'1','I1381','1586','S03073','','','0000-00-00','','','',''),(1431,'1','I1381','1586','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1432,'1','I1381','1586','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(1433,'1','I1381','1588','S03441','','','0000-00-00','','','',''),(1434,'1','I1381','1588','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1435,'1','I1381','1588','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(1436,'1','I1381','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1437,'1','I1381','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(1438,'1','I1382','1590','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1439,'1','I1382','1590','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(1440,'1','I1382','1590','S03114','','','0000-00-00','','','','Date of Import: 20 Mar 2005'),(1441,'1','I1382','1590','S03114','','','0000-00-00','','','','Date of Import: 6 Apr 2005'),(1442,'1','I1382','1591','S03073','','','0000-00-00','','','',''),(1443,'1','I1382','1591','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1444,'1','I1382','1591','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(1445,'1','I1382','1593','S03441','','','0000-00-00','6th December 1918','Hendon Middx','',''),(1446,'1','I1382','1593','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1447,'1','I1382','1593','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(1448,'1','I1382','1594','S03441','','','0000-00-00','','Hendon Middx','','6th December 1918'),(1449,'1','I1382','1594','S03114','','','0000-00-00','','','','Date of Import: 20 Mar 2005'),(1450,'1','I1382','1594','S03114','','','0000-00-00','','','','Date of Import: 6 Apr 2005'),(1451,'1','I1382','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1452,'1','I1382','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(1453,'1','I1384','1598','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1454,'1','I1384','1598','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(1455,'1','I1384','1598','S03114','','','0000-00-00','','','','Date of Import: 20 Mar 2005'),(1456,'1','I1384','1598','S03114','','','0000-00-00','','','','Date of Import: 6 Apr 2005'),(1457,'1','I1384','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1458,'1','I1384','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(1459,'1','I1384','BIRT','S03273','','','0000-00-00','','','',''),(1460,'1','I1384','BIRT','S03441','','','0000-00-00','','','',''),(1461,'1','I1384','BIRT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1462,'1','I1384','BIRT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(1463,'1','I1384','BIRT','S03114','','','0000-00-00','','','','Date of Import: 20 Mar 2005'),(1464,'1','I1384','BIRT','S03114','','','0000-00-00','','','','Date of Import: 6 Apr 2005'),(1465,'1','I1386','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1466,'1','I1386','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(1467,'1','I1425','1605','S02159','','','0000-00-00','','1871 Census RG10-153 Page 22','',''),(1468,'1','I1425','1605','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1469,'1','I1425','1605','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(1470,'1','I1425','1606','S02453','','','0000-00-00','','','',''),(1471,'1','I1425','1606','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1472,'1','I1425','1606','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(1473,'1','I1425','1607','S02563','','','0000-00-00','','','',''),(1474,'1','I1425','1607','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1475,'1','I1425','1607','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(1476,'1','I1425','1608','S02648','','','0000-00-00','','','',''),(1477,'1','I1425','1608','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1478,'1','I1425','1608','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(1479,'1','I1425','1609','S02672','','','0000-00-00','','','',''),(1480,'1','I1425','1609','S03372','','','0000-00-00','','','',''),(1481,'1','I1425','1609','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1482,'1','I1425','1609','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(1483,'1','I1425','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1484,'1','I1425','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(1485,'1','I1425','BIRT','S03225','','','0000-00-00','','','',''),(1486,'1','I1425','BIRT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1487,'1','I1425','BIRT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(1488,'1','I1425','DEAT','S03397','','','0000-00-00','','','',''),(1489,'1','I1425','DEAT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1490,'1','I1425','DEAT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(1491,'1','I1426','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1492,'1','I1426','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(1493,'1','I1427','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1494,'1','I1427','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(1495,'1','I1427','BIRT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1496,'1','I1427','BIRT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(1497,'1','I1427','BURI','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1498,'1','I1427','BURI','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(1499,'1','I1428','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1500,'1','I1428','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(1501,'1','I1428','BIRT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1502,'1','I1428','BIRT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(1503,'1','I1428','DEAT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1504,'1','I1428','DEAT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(1505,'1','I1428','BURI','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1506,'1','I1428','BURI','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(1507,'1','I1429','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1508,'1','I1429','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(1509,'1','I1429','BIRT','S03585','','','0000-00-00','','','',''),(1510,'1','I1429','BIRT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1511,'1','I1429','BIRT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(1512,'1','I1430','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1513,'1','I1430','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(1514,'1','I1430','BIRT','S03585','','','0000-00-00','','','',''),(1515,'1','I1430','BIRT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1516,'1','I1430','BIRT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(1517,'1','I1431','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1518,'1','I1431','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(1519,'1','I1431','BIRT','S03585','','','0000-00-00','','','',''),(1520,'1','I1431','BIRT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1521,'1','I1431','BIRT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(1522,'1','I1432','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1523,'1','I1432','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(1524,'1','I1432','BIRT','S03585','','','0000-00-00','','','',''),(1525,'1','I1432','BIRT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1526,'1','I1432','BIRT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(1527,'1','I1433','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1528,'1','I1433','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(1529,'1','I1433','BIRT','S03585','','','0000-00-00','','','',''),(1530,'1','I1433','BIRT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1531,'1','I1433','BIRT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(1532,'1','I1434','1611','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1533,'1','I1434','1611','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(1534,'1','I1434','1612','S03597','','','0000-00-00','','','',''),(1535,'1','I1434','1612','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1536,'1','I1434','1612','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(1537,'1','I1434','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1538,'1','I1434','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(1539,'1','I1434','BIRT','S03585','','','0000-00-00','','','',''),(1540,'1','I1434','BIRT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1541,'1','I1434','BIRT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(1542,'1','I1434','DEAT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1543,'1','I1434','DEAT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(1544,'1','I1435','1613','S02988','','','0000-00-00','','','',''),(1545,'1','I1435','1613','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1546,'1','I1435','1613','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(1547,'1','I1435','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1548,'1','I1435','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(1549,'1','I1435','BIRT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1550,'1','I1435','BIRT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(1551,'1','I1436','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1552,'1','I1436','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(1553,'1','I1436','BIRT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1554,'1','I1436','BIRT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(1555,'1','I1437','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1556,'1','I1437','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(1557,'1','I1437','BIRT','S03470','','','0000-00-00','','','',''),(1558,'1','I1437','BIRT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1559,'1','I1437','BIRT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(1560,'1','I1438','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1561,'1','I1438','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(1562,'1','I1439','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1563,'1','I1439','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(1564,'1','I1439','BIRT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1565,'1','I1439','BIRT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(1566,'1','I1439','DEAT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1567,'1','I1439','DEAT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(1568,'1','I1439','BURI','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1569,'1','I1439','BURI','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(1570,'1','I1440','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1571,'1','I1440','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(1572,'1','I1440','BIRT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1573,'1','I1440','BIRT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(1574,'1','I1440','DEAT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1575,'1','I1440','DEAT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(1576,'1','I1440','BURI','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1577,'1','I1440','BURI','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(1578,'1','I1441','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1579,'1','I1441','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(1580,'1','I1442','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1581,'1','I1442','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(1582,'1','I1442','BIRT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1583,'1','I1442','BIRT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(1584,'1','I1443','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1585,'1','I1443','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(1586,'1','I1443','BIRT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1587,'1','I1443','BIRT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(1588,'1','I1444','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1589,'1','I1444','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(1590,'1','I1444','BIRT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1591,'1','I1444','BIRT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(1592,'1','I1444','DEAT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1593,'1','I1444','DEAT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(1594,'1','I1444','BURI','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1595,'1','I1444','BURI','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(1596,'1','I1445','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1597,'1','I1445','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(1598,'1','I1445','BIRT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1599,'1','I1445','BIRT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(1600,'1','I1446','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1601,'1','I1446','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(1602,'1','I1446','BIRT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1603,'1','I1446','BIRT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(1604,'1','I1447','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1605,'1','I1447','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(1606,'1','I1447','BIRT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1607,'1','I1447','BIRT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(1608,'1','I1448','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1609,'1','I1448','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(1610,'1','I1448','BIRT','S03491','','','0000-00-00','','','',''),(1611,'1','I1448','BIRT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1612,'1','I1448','BIRT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(1613,'1','I1449','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1614,'1','I1449','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(1615,'1','I1449','BIRT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1616,'1','I1449','BIRT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(1617,'1','I1450','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1618,'1','I1450','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(1619,'1','I1450','BIRT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1620,'1','I1450','BIRT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(1621,'1','I1450','DEAT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1622,'1','I1450','DEAT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(1623,'1','I1450','BURI','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1624,'1','I1450','BURI','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(1625,'1','I1451','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1626,'1','I1451','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(1627,'1','I1451','BIRT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1628,'1','I1451','BIRT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(1629,'1','I1452','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1630,'1','I1452','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(1631,'1','I1452','BIRT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1632,'1','I1452','BIRT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(1633,'1','I1452','DEAT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1634,'1','I1452','DEAT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(1635,'1','I1452','BURI','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1636,'1','I1452','BURI','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(1637,'1','I1453','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1638,'1','I1453','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(1639,'1','I1453','BIRT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1640,'1','I1453','BIRT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(1641,'1','I1454','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1642,'1','I1454','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(1643,'1','I1454','BIRT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1644,'1','I1454','BIRT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(1645,'1','I1455','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1646,'1','I1455','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(1647,'1','I1455','BIRT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1648,'1','I1455','BIRT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(1649,'1','I1456','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1650,'1','I1456','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(1651,'1','I1456','BIRT','S01768','','','0000-00-00','','','',''),(1652,'1','I1456','BIRT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1653,'1','I1456','BIRT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(1654,'1','I1457','1614','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1655,'1','I1457','1614','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(1656,'1','I1457','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1657,'1','I1457','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(1658,'1','I1457','BIRT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1659,'1','I1457','BIRT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(1660,'1','I1458','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1661,'1','I1458','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(1662,'1','I1458','BIRT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1663,'1','I1458','BIRT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(1664,'1','I1459','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1665,'1','I1460','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1666,'1','I1460','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(1667,'1','I1460','BIRT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1668,'1','I1460','BIRT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(1669,'1','I1461','1615','S01874','','','0000-00-00','','','',''),(1670,'1','I1461','1615','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1671,'1','I1461','1615','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(1672,'1','I1461','1616','S02186','','','0000-00-00','','','',''),(1673,'1','I1461','1616','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1674,'1','I1461','1616','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(1675,'1','I1461','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1676,'1','I1461','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(1677,'1','I1461','BIRT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1678,'1','I1461','BIRT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(1679,'1','I1462','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1680,'1','I1462','BIRT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1681,'1','I1462','DEAT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1682,'1','I1463','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1683,'1','I1463','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(1684,'1','I1463','BIRT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1685,'1','I1463','BIRT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(1686,'1','I1464','1617','S02186','','','0000-00-00','','','',''),(1687,'1','I1464','1617','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1688,'1','I1464','1617','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(1689,'1','I1464','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1690,'1','I1464','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(1691,'1','I1464','BIRT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1692,'1','I1464','BIRT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(1693,'1','I1465','1618','S03073','','','0000-00-00','','','',''),(1694,'1','I1465','1618','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1695,'1','I1465','1618','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(1696,'1','I1465','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1697,'1','I1465','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(1698,'1','I1466','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1699,'1','I1466','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(1700,'1','I1467','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1701,'1','I1467','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(1702,'1','I1467','BIRT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1703,'1','I1467','BIRT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(1704,'1','I1467','DEAT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1705,'1','I1467','DEAT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(1706,'1','I1468','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1707,'1','I1468','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(1708,'1','I1468','BIRT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1709,'1','I1468','BIRT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(1710,'1','I1468','DEAT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1711,'1','I1468','DEAT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(1712,'1','I1469','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1713,'1','I1470','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1714,'1','I1471','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1715,'1','I1472','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1716,'1','I1472','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(1717,'1','I1472','BIRT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1718,'1','I1472','BIRT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(1719,'1','I1472','CHR','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1720,'1','I1472','CHR','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(1721,'1','I1472','DEAT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1722,'1','I1472','DEAT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(1723,'1','I1472','BURI','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1724,'1','I1472','BURI','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(1725,'1','I1473','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1726,'1','I1473','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(1727,'1','I1474','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1728,'1','I1474','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(1729,'1','I1474','BIRT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1730,'1','I1474','BIRT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(1731,'1','I1475','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1732,'1','I1475','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(1733,'1','I1475','BIRT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1734,'1','I1475','BIRT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(1735,'1','I1475','DEAT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1736,'1','I1475','DEAT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(1737,'1','I1476','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1738,'1','I1476','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(1739,'1','I1476','BIRT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1740,'1','I1476','BIRT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(1741,'1','I1476','DEAT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1742,'1','I1476','DEAT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(1743,'1','I1477','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1744,'1','I1477','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(1745,'1','I1477','BIRT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1746,'1','I1477','BIRT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(1747,'1','I1477','DEAT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1748,'1','I1477','DEAT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(1749,'1','I1478','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1750,'1','I1478','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(1751,'1','I1479','1622','S01774','','','0000-00-00','','','',''),(1752,'1','I1479','1622','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1753,'1','I1479','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1754,'1','I1479','CHR','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1755,'1','I1479','DEAT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1756,'1','I1479','BURI','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1757,'1','I1480','1623','S01774','','','0000-00-00','','','',''),(1758,'1','I1480','1623','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1759,'1','I1480','1623','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(1760,'1','I1480','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1761,'1','I1480','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(1762,'1','I1480','BIRT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1763,'1','I1480','BIRT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(1764,'1','I1480','DEAT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1765,'1','I1480','DEAT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(1766,'1','I1480','BURI','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1767,'1','I1480','BURI','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(1768,'1','I1481','1624','S02096','','','0000-00-00','','RG10 979 Page 29 and 30','',''),(1769,'1','I1481','1624','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1770,'1','I1481','1624','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(1771,'1','I1481','1625','S02322','','','0000-00-00','','','',''),(1772,'1','I1481','1625','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1773,'1','I1481','1625','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(1774,'1','I1481','1626','S03020','','','0000-00-00','','','',''),(1775,'1','I1481','1626','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1776,'1','I1481','1626','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(1777,'1','I1481','1627','S02964','','','0000-00-00','','','',''),(1778,'1','I1481','1627','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1779,'1','I1481','1627','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(1780,'1','I1481','1628','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1781,'1','I1481','1628','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(1782,'1','I1481','1629','S03394','','','0000-00-00','','','',''),(1783,'1','I1481','1629','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1784,'1','I1481','1629','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(1785,'1','I1481','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1786,'1','I1481','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(1787,'1','I1481','BIRT','S02672','','','0000-00-00','','','',''),(1788,'1','I1481','BIRT','S03020','','','0000-00-00','','','',''),(1789,'1','I1481','BIRT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1790,'1','I1481','BIRT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(1791,'1','I1482','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1792,'1','I1482','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(1793,'1','I1482','BIRT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1794,'1','I1482','BIRT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(1795,'1','I1482','DEAT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1796,'1','I1482','DEAT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(1797,'1','I1483','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1798,'1','I1483','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(1799,'1','I1483','BIRT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1800,'1','I1483','BIRT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(1801,'1','I1483','DEAT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1802,'1','I1483','DEAT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(1803,'1','I1483','BURI','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1804,'1','I1483','BURI','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(1805,'1','I1484','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1806,'1','I1484','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(1807,'1','I1484','BIRT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1808,'1','I1484','BIRT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(1809,'1','I1485','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1810,'1','I1485','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(1811,'1','I1485','BIRT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1812,'1','I1485','BIRT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(1813,'1','I1486','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1814,'1','I1486','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(1815,'1','I1486','BIRT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1816,'1','I1486','BIRT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(1817,'1','I1486','DEAT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1818,'1','I1486','DEAT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(1819,'1','I1487','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1820,'1','I1487','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(1821,'1','I1488','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1822,'1','I1488','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(1823,'1','I1488','BIRT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1824,'1','I1488','BIRT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(1825,'1','I1488','DEAT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1826,'1','I1488','DEAT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(1827,'1','I1489','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1828,'1','I1489','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(1829,'1','I1489','BIRT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1830,'1','I1489','BIRT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(1831,'1','I1489','DEAT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1832,'1','I1489','DEAT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(1833,'1','I1489','BURI','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1834,'1','I1489','BURI','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(1835,'1','I1490','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1836,'1','I1490','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(1837,'1','I1491','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1838,'1','I1491','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(1839,'1','I1491','BIRT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1840,'1','I1491','BIRT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(1841,'1','I1491','DEAT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1842,'1','I1491','DEAT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(1843,'1','I1492','1630','S01789','','','0000-00-00','','','',''),(1844,'1','I1492','1630','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1845,'1','I1492','1630','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(1846,'1','I1492','1631','S01870','','','0000-00-00','','HO 107 /1626 Folio 566 p19','',''),(1847,'1','I1492','1631','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1848,'1','I1492','1631','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(1849,'1','I1492','1632','S01942','','','0000-00-00','','','',''),(1850,'1','I1492','1632','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1851,'1','I1492','1632','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(1852,'1','I1492','1633','S02096','','','0000-00-00','','RG10 979 pages 29-30 faversham','',''),(1853,'1','I1492','1633','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1854,'1','I1492','1633','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(1855,'1','I1492','1634','S02322','','','0000-00-00','','RG11 0968/28 page 24.','',''),(1856,'1','I1492','1634','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1857,'1','I1492','1634','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(1858,'1','I1492','1635','S02672','','','0000-00-00','','','',''),(1859,'1','I1492','1635','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1860,'1','I1492','1635','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(1861,'1','I1492','1636','S03485','','','0000-00-00','','','',''),(1862,'1','I1492','1636','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1863,'1','I1492','1636','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(1864,'1','I1492','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1865,'1','I1492','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(1866,'1','I1492','BIRT','S03282','','','0000-00-00','','','',''),(1867,'1','I1492','BIRT','S03210','','','0000-00-00','','','',''),(1868,'1','I1492','BIRT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1869,'1','I1492','BIRT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(1870,'1','I1492','CHR','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1871,'1','I1492','CHR','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(1872,'1','I1492','DEAT','S02790','','','0000-00-00','','1899 June Deaths Faversham Kent 2a 545','',''),(1873,'1','I1492','DEAT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1874,'1','I1492','DEAT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(1875,'1','I1493','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1876,'1','I1493','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(1877,'1','I1494','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1878,'1','I1494','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(1879,'1','I1494','BIRT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1880,'1','I1494','BIRT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(1881,'1','I1495','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1882,'1','I1495','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(1883,'1','I1495','BIRT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1884,'1','I1495','BIRT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(1885,'1','I1496','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1886,'1','I1496','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(1887,'1','I1496','BIRT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1888,'1','I1496','BIRT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(1889,'1','I1497','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1890,'1','I1497','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(1891,'1','I1497','BIRT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1892,'1','I1497','BIRT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(1893,'1','I1497','DEAT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1894,'1','I1497','DEAT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(1895,'1','I1497','BURI','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1896,'1','I1497','BURI','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(1897,'1','I1498','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1898,'1','I1498','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(1899,'1','I1498','BIRT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1900,'1','I1498','BIRT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(1901,'1','I1498','DEAT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1902,'1','I1498','DEAT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(1903,'1','I1498','BURI','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1904,'1','I1498','BURI','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(1905,'1','I1499','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1906,'1','I1499','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(1907,'1','I1499','BIRT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1908,'1','I1499','BIRT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(1909,'1','I1500','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1910,'1','I1500','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(1911,'1','I1500','BIRT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1912,'1','I1500','BIRT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(1913,'1','I1500','DEAT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1914,'1','I1500','DEAT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(1915,'1','I1501','1637','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1916,'1','I1501','1637','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(1917,'1','I1501','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1918,'1','I1501','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(1919,'1','I1501','BIRT','S03216','','','0000-00-00','','','',''),(1920,'1','I1501','BIRT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1921,'1','I1501','BIRT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(1922,'1','I1501','CHR','S03473','','','0000-00-00','','','',''),(1923,'1','I1501','CHR','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1924,'1','I1501','CHR','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(1925,'1','I1501','DEAT','S03420','','','0000-00-00','','','',''),(1926,'1','I1501','DEAT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1927,'1','I1501','DEAT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(1928,'1','I1501','BURI','S03420','','','0000-00-00','','','',''),(1929,'1','I1501','BURI','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1930,'1','I1501','BURI','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(1931,'1','I1502','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1932,'1','I1502','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(1933,'1','I1502','BIRT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1934,'1','I1502','BIRT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(1935,'1','I1502','DEAT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1936,'1','I1502','DEAT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(1937,'1','I1502','BURI','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1938,'1','I1502','BURI','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(1939,'1','I1503','1639','S01926','','','0000-00-00','','','',''),(1940,'1','I1503','1639','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1941,'1','I1503','1639','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(1942,'1','I1503','1640','S03081','','','0000-00-00','','','',''),(1943,'1','I1503','1640','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1944,'1','I1503','1640','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(1945,'1','I1503','1641','S01967','','','0000-00-00','','','',''),(1946,'1','I1503','1641','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1947,'1','I1503','1641','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(1948,'1','I1503','1642','S02159','','','0000-00-00','','RG10-153 Page 22','',''),(1949,'1','I1503','1642','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1950,'1','I1503','1642','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(1951,'1','I1503','1643','S02453','','','0000-00-00','','','',''),(1952,'1','I1503','1643','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1953,'1','I1503','1643','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(1954,'1','I1503','1644','S02563','','','0000-00-00','','','',''),(1955,'1','I1503','1644','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1956,'1','I1503','1644','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(1957,'1','I1503','1645','S02955','','','0000-00-00','','','',''),(1958,'1','I1503','1645','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1959,'1','I1503','1645','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(1960,'1','I1503','1646','S02346','','','0000-00-00','Baker','','',''),(1961,'1','I1503','1646','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1962,'1','I1503','1646','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(1963,'1','I1503','1647','S03473','','','0000-00-00','','','',''),(1964,'1','I1503','1647','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1965,'1','I1503','1647','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(1966,'1','I1503','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1967,'1','I1503','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(1968,'1','I1503','BIRT','S03544','','','0000-00-00','','C053911  1825 - 1841 0580892','',''),(1969,'1','I1503','BIRT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1970,'1','I1503','BIRT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(1971,'1','I1503','CHR','S03544','','','0000-00-00','','','',''),(1972,'1','I1503','CHR','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1973,'1','I1503','CHR','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(1974,'1','I1503','DEAT','S03081','','','0000-00-00','','','',''),(1975,'1','I1503','DEAT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1976,'1','I1503','DEAT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(1977,'1','I1504','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1978,'1','I1504','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(1979,'1','I1504','BIRT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1980,'1','I1504','BIRT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(1981,'1','I1504','DEAT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1982,'1','I1504','DEAT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(1983,'1','I1505','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1984,'1','I1505','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(1985,'1','I1505','BIRT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1986,'1','I1505','BIRT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(1987,'1','I1506','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1988,'1','I1506','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(1989,'1','I1506','BIRT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1990,'1','I1506','BIRT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(1991,'1','I1506','DEAT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1992,'1','I1506','DEAT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(1993,'1','I1507','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1994,'1','I1507','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(1995,'1','I1507','BIRT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1996,'1','I1507','BIRT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(1997,'1','I1507','DEAT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(1998,'1','I1507','DEAT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(1999,'1','I1508','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2000,'1','I1508','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2001,'1','I1508','BIRT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2002,'1','I1508','BIRT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2003,'1','I1509','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2004,'1','I1509','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2005,'1','I1509','BIRT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2006,'1','I1509','BIRT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2007,'1','I1510','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2008,'1','I1510','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2009,'1','I1510','BIRT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2010,'1','I1510','BIRT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2011,'1','I1511','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2012,'1','I1511','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2013,'1','I1511','BIRT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2014,'1','I1511','BIRT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2015,'1','I1512','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2016,'1','I1512','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2017,'1','I1512','BIRT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2018,'1','I1512','BIRT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2019,'1','I1513','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2020,'1','I1513','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2021,'1','I1513','BIRT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2022,'1','I1513','BIRT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2023,'1','I1514','1648','S01926','','','0000-00-00','','','',''),(2024,'1','I1514','1648','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2025,'1','I1514','1648','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2026,'1','I1514','1649','S01967','','','0000-00-00','','','',''),(2027,'1','I1514','1649','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2028,'1','I1514','1649','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2029,'1','I1514','1650','S02159','','','0000-00-00','','1871 Census RG10-153 Page 22','',''),(2030,'1','I1514','1650','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2031,'1','I1514','1650','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2032,'1','I1514','1651','S02346','','','0000-00-00','','','',''),(2033,'1','I1514','1651','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2034,'1','I1514','1651','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2035,'1','I1514','1652','S02563','','','0000-00-00','','','',''),(2036,'1','I1514','1652','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2037,'1','I1514','1652','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2038,'1','I1514','1653','S02949','','','0000-00-00','','','',''),(2039,'1','I1514','1653','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2040,'1','I1514','1653','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2041,'1','I1514','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2042,'1','I1514','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2043,'1','I1514','BIRT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2044,'1','I1514','BIRT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2045,'1','I1515','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2046,'1','I1515','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2047,'1','I1515','BIRT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2048,'1','I1515','BIRT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2049,'1','I1516','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2050,'1','I1516','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2051,'1','I1516','BIRT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2052,'1','I1516','BIRT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2053,'1','I1516','DEAT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2054,'1','I1516','DEAT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2055,'1','I1517','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2056,'1','I1518','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2057,'1','I1519','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2058,'1','I1520','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2059,'1','I1520','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2060,'1','I1521','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2061,'1','I1521','BIRT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2062,'1','I1521','DEAT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2063,'1','I1522','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2064,'1','I1522','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2065,'1','I1522','BIRT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2066,'1','I1522','BIRT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2067,'1','I1522','CHR','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2068,'1','I1522','CHR','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2069,'1','I1522','DEAT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2070,'1','I1522','DEAT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2071,'1','I1522','BURI','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2072,'1','I1522','BURI','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2073,'1','I1523','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2074,'1','I1523','BIRT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2075,'1','I1524','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2076,'1','I1524','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2077,'1','I1524','BIRT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2078,'1','I1524','BIRT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2079,'1','I1524','CHR','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2080,'1','I1524','CHR','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2081,'1','I1524','DEAT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2082,'1','I1524','DEAT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2083,'1','I1524','BURI','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2084,'1','I1524','BURI','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2085,'1','I1525','1654','S01967','','','0000-00-00','','','',''),(2086,'1','I1525','1654','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2087,'1','I1525','1654','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2088,'1','I1525','1655','S02645','','','0000-00-00','','','',''),(2089,'1','I1525','1655','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2090,'1','I1525','1655','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2091,'1','I1525','1656','S02925','','','0000-00-00','','','',''),(2092,'1','I1525','1656','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2093,'1','I1525','1656','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2094,'1','I1525','1657','S02221','','','0000-00-00','','RG10-153 Page 22','',''),(2095,'1','I1525','1657','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2096,'1','I1525','1657','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2097,'1','I1525','1658','S03329','','','0000-00-00','','','',''),(2098,'1','I1525','1658','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2099,'1','I1525','1658','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2100,'1','I1525','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2101,'1','I1525','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2102,'1','I1525','BIRT','S01930','','','0000-00-00','','','',''),(2103,'1','I1525','BIRT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2104,'1','I1525','BIRT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2105,'1','I1526','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2106,'1','I1527','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2107,'1','I1527','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2108,'1','I1527','BIRT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2109,'1','I1527','BIRT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2110,'1','I1527','DEAT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2111,'1','I1527','DEAT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2112,'1','I1527','BURI','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2113,'1','I1527','BURI','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2114,'1','I1528','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2115,'1','I1528','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2116,'1','I1528','BIRT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2117,'1','I1528','BIRT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2118,'1','I1528','DEAT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2119,'1','I1528','DEAT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2120,'1','I1528','BURI','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2121,'1','I1528','BURI','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2122,'1','I1529','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2123,'1','I1529','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2124,'1','I1530','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2125,'1','I1531','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2126,'1','I1531','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2127,'1','I1531','BIRT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2128,'1','I1531','BIRT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2129,'1','I1532','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2130,'1','I1532','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2131,'1','I1532','BIRT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2132,'1','I1532','BIRT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2133,'1','I1532','DEAT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2134,'1','I1532','DEAT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2135,'1','I1533','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2136,'1','I1533','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2137,'1','I1533','BIRT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2138,'1','I1533','BIRT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2139,'1','I1534','1660','S02151','','','0000-00-00','','','',''),(2140,'1','I1534','1660','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2141,'1','I1534','1660','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2142,'1','I1534','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2143,'1','I1534','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2144,'1','I1534','BIRT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2145,'1','I1534','BIRT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2146,'1','I1534','DEAT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2147,'1','I1534','DEAT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2148,'1','I1535','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2149,'1','I1535','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2150,'1','I1535','BIRT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2151,'1','I1535','BIRT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2152,'1','I1536','1661','S02322','','','0000-00-00','','','',''),(2153,'1','I1536','1661','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2154,'1','I1536','1661','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2155,'1','I1536','1662','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2156,'1','I1536','1662','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2157,'1','I1536','1663','S02832','','','0000-00-00','','','',''),(2158,'1','I1536','1663','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2159,'1','I1536','1663','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2160,'1','I1536','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2161,'1','I1536','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2162,'1','I1536','BIRT','S03222','','','0000-00-00','','','',''),(2163,'1','I1536','BIRT','S03485','','','0000-00-00','','','',''),(2164,'1','I1536','BIRT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2165,'1','I1536','BIRT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2166,'1','I1536','DEAT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2167,'1','I1536','DEAT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2168,'1','I1537','1664','S02159','','','0000-00-00','','','',''),(2169,'1','I1537','1664','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2170,'1','I1537','1664','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2171,'1','I1537','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2172,'1','I1537','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2173,'1','I1537','BIRT','S03355','','','0000-00-00','','','',''),(2174,'1','I1537','BIRT','S02221','','','0000-00-00','','','',''),(2175,'1','I1537','BIRT','S03232','','','0000-00-00','','','',''),(2176,'1','I1537','BIRT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2177,'1','I1537','BIRT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2178,'1','I1537','DEAT','S03266','','','0000-00-00','','','',''),(2179,'1','I1537','DEAT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2180,'1','I1537','DEAT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2181,'1','I1538','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2182,'1','I1538','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2183,'1','I1538','BIRT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2184,'1','I1538','BIRT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2185,'1','I1538','DEAT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2186,'1','I1538','DEAT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2187,'1','I1539','1665','S02151','','','0000-00-00','','','',''),(2188,'1','I1539','1665','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2189,'1','I1539','1665','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2190,'1','I1539','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2191,'1','I1539','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2192,'1','I1539','BIRT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2193,'1','I1539','BIRT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2194,'1','I1540','1666','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2195,'1','I1540','1666','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2196,'1','I1540','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2197,'1','I1540','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2198,'1','I1540','BIRT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2199,'1','I1540','BIRT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2200,'1','I1540','DEAT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2201,'1','I1540','DEAT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2202,'1','I1540','BURI','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2203,'1','I1540','BURI','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2204,'1','I1541','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2205,'1','I1541','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2206,'1','I1541','BIRT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2207,'1','I1541','BIRT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2208,'1','I1542','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2209,'1','I1542','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2210,'1','I1543','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2211,'1','I1543','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2212,'1','I1544','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2213,'1','I1544','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2214,'1','I1544','BIRT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2215,'1','I1544','BIRT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2216,'1','I1545','1667','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2217,'1','I1545','1667','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2218,'1','I1545','1668','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2219,'1','I1545','1668','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2220,'1','I1545','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2221,'1','I1545','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2222,'1','I1545','BIRT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2223,'1','I1545','BIRT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2224,'1','I1546','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2225,'1','I1546','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2226,'1','I1546','BIRT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2227,'1','I1546','BIRT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2228,'1','I1547','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2229,'1','I1547','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2230,'1','I1547','BIRT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2231,'1','I1547','BIRT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2232,'1','I1547','DEAT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2233,'1','I1547','DEAT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2234,'1','I1548','1670','S02159','','','0000-00-00','','1871 Census RG10-153 Page 22','',''),(2235,'1','I1548','1670','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2236,'1','I1548','1670','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2237,'1','I1548','1671','S02346','','','0000-00-00','','','',''),(2238,'1','I1548','1671','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2239,'1','I1548','1671','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2240,'1','I1548','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2241,'1','I1548','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2242,'1','I1548','BIRT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2243,'1','I1548','BIRT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2244,'1','I1549','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2245,'1','I1549','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2246,'1','I1549','BIRT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2247,'1','I1549','BIRT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2248,'1','I1549','DEAT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2249,'1','I1549','DEAT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2250,'1','I1549','BURI','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2251,'1','I1549','BURI','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2252,'1','I1550','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2253,'1','I1550','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2254,'1','I1550','BIRT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2255,'1','I1550','BIRT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2256,'1','I1550','CHR','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2257,'1','I1550','CHR','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2258,'1','I1550','DEAT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2259,'1','I1550','DEAT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2260,'1','I1550','BURI','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2261,'1','I1550','BURI','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2262,'1','I1551','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2263,'1','I1551','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2264,'1','I1551','DEAT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2265,'1','I1551','DEAT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2266,'1','I1551','BURI','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2267,'1','I1551','BURI','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2268,'1','I1552','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2269,'1','I1552','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2270,'1','I1552','DEAT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2271,'1','I1552','DEAT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2272,'1','I1553','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2273,'1','I1553','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2274,'1','I1553','DEAT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2275,'1','I1553','DEAT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2276,'1','I1554','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2277,'1','I1554','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2278,'1','I1555','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2279,'1','I1555','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2280,'1','I1555','BIRT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2281,'1','I1555','BIRT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2282,'1','I1555','DEAT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2283,'1','I1555','DEAT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2284,'1','I1556','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2285,'1','I1556','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2286,'1','I1556','BIRT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2287,'1','I1556','BIRT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2288,'1','I1556','DEAT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2289,'1','I1556','DEAT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2290,'1','I1556','BURI','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2291,'1','I1556','BURI','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2292,'1','I1557','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2293,'1','I1557','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2294,'1','I1557','BIRT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2295,'1','I1557','BIRT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2296,'1','I1557','DEAT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2297,'1','I1557','DEAT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2298,'1','I1557','BURI','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2299,'1','I1557','BURI','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2300,'1','I1558','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2301,'1','I1558','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2302,'1','I1558','BIRT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2303,'1','I1558','BIRT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2304,'1','I1558','CHR','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2305,'1','I1558','CHR','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2306,'1','I1558','DEAT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2307,'1','I1558','DEAT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2308,'1','I1558','BURI','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2309,'1','I1558','BURI','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2310,'1','I1559','1672','S02346','','','0000-00-00','','','',''),(2311,'1','I1559','1672','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2312,'1','I1559','1672','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2313,'1','I1559','1673','S02563','','','0000-00-00','','','',''),(2314,'1','I1559','1673','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2315,'1','I1559','1673','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2316,'1','I1559','1674','S02952','','','0000-00-00','','','',''),(2317,'1','I1559','1674','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2318,'1','I1559','1674','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2319,'1','I1559','1675','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2320,'1','I1559','1675','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2321,'1','I1559','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2322,'1','I1559','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2323,'1','I1559','BIRT','S03301','','','0000-00-00','','','',''),(2324,'1','I1559','BIRT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2325,'1','I1559','BIRT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2326,'1','I1560','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2327,'1','I1560','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2328,'1','I1560','BIRT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2329,'1','I1560','BIRT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2330,'1','I1560','CHR','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2331,'1','I1560','CHR','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2332,'1','I1560','DEAT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2333,'1','I1560','DEAT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2334,'1','I1560','BURI','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2335,'1','I1560','BURI','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2336,'1','I1561','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2337,'1','I1561','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2338,'1','I1561','BIRT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2339,'1','I1561','BIRT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2340,'1','I1562','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2341,'1','I1562','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2342,'1','I1562','BIRT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2343,'1','I1562','BIRT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2344,'1','I1562','DEAT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2345,'1','I1562','DEAT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2346,'1','I1562','BURI','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2347,'1','I1562','BURI','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2348,'1','I1563','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2349,'1','I1563','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2350,'1','I1563','BIRT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2351,'1','I1563','BIRT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2352,'1','I1563','DEAT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2353,'1','I1563','DEAT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2354,'1','I1563','BURI','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2355,'1','I1563','BURI','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2356,'1','I1564','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2357,'1','I1564','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2358,'1','I1564','BIRT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2359,'1','I1564','BIRT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2360,'1','I1565','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2361,'1','I1565','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2362,'1','I1566','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2363,'1','I1566','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2364,'1','I1566','BIRT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2365,'1','I1566','BIRT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2366,'1','I1566','DEAT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2367,'1','I1566','DEAT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2368,'1','I1566','BURI','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2369,'1','I1566','BURI','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2370,'1','I1567','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2371,'1','I1567','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2372,'1','I1567','BIRT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2373,'1','I1567','BIRT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2374,'1','I1567','DEAT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2375,'1','I1567','DEAT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2376,'1','I1567','BURI','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2377,'1','I1567','BURI','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2378,'1','I1568','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2379,'1','I1568','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2380,'1','I1569','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2381,'1','I1569','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2382,'1','I1569','BIRT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2383,'1','I1569','BIRT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2384,'1','I1569','CHR','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2385,'1','I1569','CHR','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2386,'1','I1569','DEAT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2387,'1','I1569','DEAT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2388,'1','I1570','1676','S02346','','','0000-00-00','','','',''),(2389,'1','I1570','1676','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2390,'1','I1570','1676','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2391,'1','I1570','1677','S02563','','','0000-00-00','','','',''),(2392,'1','I1570','1677','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2393,'1','I1570','1677','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2394,'1','I1570','1678','S02949','','','0000-00-00','','','',''),(2395,'1','I1570','1678','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2396,'1','I1570','1678','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2397,'1','I1570','1679','S03034','','','0000-00-00','1902, Marriage solemnized at The Register Office in the District of Brentford in the County of Middlesex.\nDate: Twenty third August 1902.\nBetween: Henry William Thornton - 26 years - bachelor - electrician\nHarriett Dagg - 21 years - spinster\nAddress for both of them: 15, Annandale Road, Chiswick\nGroom\'s father: Charles Thornton (deceased) publican\nBride\'s father: Henry Dagg - artist (retired)\nWitnessed by: Alice Atkins and Alfred Aldred\nRegistrar: A H Pittard.','','',''),(2398,'1','I1570','1679','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2399,'1','I1570','1679','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2400,'1','I1570','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2401,'1','I1570','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2402,'1','I1570','BIRT','S02383','','','0000-00-00','','','',''),(2403,'1','I1570','BIRT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2404,'1','I1570','BIRT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2405,'1','I1571','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2406,'1','I1572','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2407,'1','I1572','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2408,'1','I1573','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2409,'1','I1573','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2410,'1','I1574','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2411,'1','I1574','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2412,'1','I1575','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2413,'1','I1575','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2414,'1','I1576','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2415,'1','I1576','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2416,'1','I1576','BIRT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2417,'1','I1576','BIRT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2418,'1','I1576','DEAT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2419,'1','I1576','DEAT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2420,'1','I1576','BURI','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2421,'1','I1576','BURI','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2422,'1','I1577','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2423,'1','I1577','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2424,'1','I1578','NAME','S03567','','','0000-00-00','','','',''),(2425,'1','I1578','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2426,'1','I1578','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2427,'1','I1578','BIRT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2428,'1','I1578','BIRT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2429,'1','I1578','DEAT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2430,'1','I1578','DEAT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2431,'1','I1579','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2432,'1','I1579','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2433,'1','I1580','1680','S01942','','','0000-00-00','','','',''),(2434,'1','I1580','1680','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2435,'1','I1580','1680','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2436,'1','I1580','1681','S02096','','','0000-00-00','','','',''),(2437,'1','I1580','1681','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2438,'1','I1580','1681','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2439,'1','I1580','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2440,'1','I1580','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2441,'1','I1580','BIRT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2442,'1','I1580','BIRT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2443,'1','I1581','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2444,'1','I1581','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2445,'1','I1582','1682','S01942','','','0000-00-00','','','',''),(2446,'1','I1582','1682','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2447,'1','I1582','1682','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2448,'1','I1582','1683','S02096','','','0000-00-00','','','',''),(2449,'1','I1582','1683','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2450,'1','I1582','1683','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2451,'1','I1582','1684','S02457','','','0000-00-00','','','',''),(2452,'1','I1582','1684','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2453,'1','I1582','1684','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2454,'1','I1582','1685','S02576','','','0000-00-00','','RG12/714/p26','',''),(2455,'1','I1582','1685','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2456,'1','I1582','1685','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2457,'1','I1582','1686','S02826','','','0000-00-00','','','',''),(2458,'1','I1582','1686','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2459,'1','I1582','1686','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2460,'1','I1582','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2461,'1','I1582','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2462,'1','I1582','BIRT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2463,'1','I1582','BIRT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2464,'1','I1583','1687','S02096','','','0000-00-00','','','',''),(2465,'1','I1583','1687','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2466,'1','I1583','1687','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2467,'1','I1583','1688','S02732','','','0000-00-00','','1891 RG12/713 page 16','',''),(2468,'1','I1583','1688','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2469,'1','I1583','1688','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2470,'1','I1583','1689','S02793','','','0000-00-00','','','',''),(2471,'1','I1583','1689','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2472,'1','I1583','1689','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2473,'1','I1583','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2474,'1','I1583','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2475,'1','I1583','BIRT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2476,'1','I1583','BIRT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2477,'1','I1584','1690','S02059','','','0000-00-00','','','',''),(2478,'1','I1584','1690','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2479,'1','I1584','1690','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2480,'1','I1584','1691','S02322','','','0000-00-00','','','',''),(2481,'1','I1584','1691','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2482,'1','I1584','1691','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2483,'1','I1584','1692','S02666','','','0000-00-00','','','',''),(2484,'1','I1584','1692','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2485,'1','I1584','1692','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2486,'1','I1584','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2487,'1','I1584','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2488,'1','I1584','BIRT','S01994','','','0000-00-00','','Vol 2a page337','',''),(2489,'1','I1584','BIRT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2490,'1','I1584','BIRT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2491,'1','I1584','DEAT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2492,'1','I1584','DEAT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2493,'1','I1585','1693','S01789','','','0000-00-00','','Piece number HO107/476, Folio 20, pages 2 & 3','','the 1841 census is the earliest census that took names, ages and a couple ofother details. Adult ages were rounded up or down to the nearest 0 or 5,there is no indication of relationship, and only an affirmation of whetheror not they born in the county of residence. I have assumed for the moment that all of those with a Jarrett surname living in George Jarrett\'s household were his and Martha\'s children and not nephews, grandchildren etc. This is a reasonable assumption becasue of the ages or thought may be disproved at a later date.'),(2494,'1','I1585','1693','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2495,'1','I1585','1693','S01789','','','0000-00-00','','Piece number HO107/476, Folio 20, pages 2 & 3','','the 1841 census is the earliest census that took names, ages and a couple ofother details. Adult ages were rounded up or down to the nearest 0 or 5,there is no indication of relationship, and only an affirmation of whetheror not they born in the county of residence. I have assumed for the moment that all of those with a Jarrett surname living in George Jarrett\'s household were his and Martha\'s children and not nephews, grandchildren etc. This is a reasonable assumption becasue of the ages or thought may be disproved at a later date.'),(2496,'1','I1585','1693','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2497,'1','I1585','1694','S01870','','','0000-00-00','','HO 107 /1626 Folio 566 p19','',''),(2498,'1','I1585','1694','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2499,'1','I1585','1694','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2500,'1','I1585','1695','S01948','','','0000-00-00','','','',''),(2501,'1','I1585','1695','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2502,'1','I1585','1695','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2503,'1','I1585','1696','S02142','','','0000-00-00','','RG10/980 page 12','',''),(2504,'1','I1585','1696','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2505,'1','I1585','1696','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2506,'1','I1585','1697','S02307','','','0000-00-00','','RG11 0894 /45 page5','',''),(2507,'1','I1585','1697','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2508,'1','I1585','1697','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2509,'1','I1585','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2510,'1','I1585','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2511,'1','I1585','BIRT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2512,'1','I1585','BIRT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2513,'1','I1585','CHR','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2514,'1','I1585','CHR','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2515,'1','I1586','1698','S01789','','','0000-00-00','','Piece number HO107/476, Folio 20, pages 2 & 3','','the 1841 census is the earliest census that took names, ages and a couple ofother details. Adult ages were rounded up or down to the nearest 0 or 5,there is no indication of relationship, and only an affirmation of whetheror not they born in the county of residence. I have assumed for the moment that all of those with a Jarrett surname living in George Jarrett\'s household were his and Martha\'s children and not nephews, grandchildren etc. This is a reasonable assumption becasue of the ages or thought may be disproved at a later date.'),(2516,'1','I1586','1698','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2517,'1','I1586','1698','S01789','','','0000-00-00','','Piece number HO107/476, Folio 20, pages 2 & 3','','the 1841 census is the earliest census that took names, ages and a couple ofother details. Adult ages were rounded up or down to the nearest 0 or 5,there is no indication of relationship, and only an affirmation of whetheror not they born in the county of residence. I have assumed for the moment that all of those with a Jarrett surname living in George Jarrett\'s household were his and Martha\'s children and not nephews, grandchildren etc. This is a reasonable assumption becasue of the ages or thought may be disproved at a later date.'),(2518,'1','I1586','1698','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2519,'1','I1586','1699','S01870','','','0000-00-00','','','',''),(2520,'1','I1586','1699','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2521,'1','I1586','1699','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2522,'1','I1586','1700','S01948','','','0000-00-00','','','',''),(2523,'1','I1586','1700','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2524,'1','I1586','1700','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2525,'1','I1586','1701','S02142','','','0000-00-00','','','',''),(2526,'1','I1586','1701','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2527,'1','I1586','1701','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2528,'1','I1586','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2529,'1','I1586','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2530,'1','I1586','BIRT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2531,'1','I1586','BIRT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2532,'1','I1586','CHR','S03676','','','0000-00-00','','','',''),(2533,'1','I1586','CHR','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2534,'1','I1586','CHR','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2535,'1','I1586','DEAT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2536,'1','I1586','DEAT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2537,'1','I1587','1702','S01958','','','0000-00-00','','','',''),(2538,'1','I1587','1702','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2539,'1','I1587','1702','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2540,'1','I1587','1703','S02191','','','0000-00-00','','RG10/980 Registration district: Faversham Sub-registration district: Teynham ED, institutio','',''),(2541,'1','I1587','1703','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2542,'1','I1587','1703','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2543,'1','I1587','1704','S02325','','','0000-00-00','','','',''),(2544,'1','I1587','1704','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2545,'1','I1587','1704','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2546,'1','I1587','1705','S02754','','','0000-00-00','','','',''),(2547,'1','I1587','1705','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2548,'1','I1587','1705','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2549,'1','I1587','1706','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2550,'1','I1587','1706','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2551,'1','I1587','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2552,'1','I1587','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2553,'1','I1587','BIRT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2554,'1','I1587','BIRT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2555,'1','I1587','DEAT','S02762','','','0000-00-00','','','','Age at death 91'),(2556,'1','I1587','DEAT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2557,'1','I1587','DEAT','S02762','','','0000-00-00','','','','Age at death 91'),(2558,'1','I1587','DEAT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2559,'1','I1588','1707','S01958','','','0000-00-00','','','',''),(2560,'1','I1588','1707','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2561,'1','I1588','1707','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2562,'1','I1588','1708','S02191','','','0000-00-00','','','',''),(2563,'1','I1588','1708','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2564,'1','I1588','1708','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2565,'1','I1588','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2566,'1','I1588','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2567,'1','I1588','BIRT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2568,'1','I1588','BIRT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2569,'1','I1588','DEAT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2570,'1','I1588','DEAT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2571,'1','I1589','1709','S01990','','','0000-00-00','','','',''),(2572,'1','I1589','1709','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2573,'1','I1589','1709','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2574,'1','I1589','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2575,'1','I1589','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2576,'1','I1589','BIRT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2577,'1','I1589','BIRT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2578,'1','I1590','1710','S01958','','','0000-00-00','','','',''),(2579,'1','I1590','1710','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2580,'1','I1590','1710','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2581,'1','I1590','1711','S02191','','','0000-00-00','','','',''),(2582,'1','I1590','1711','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2583,'1','I1590','1711','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2584,'1','I1590','1712','S02404','','','0000-00-00','','Piece / Folio   0971 / 104','',''),(2585,'1','I1590','1712','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2586,'1','I1590','1712','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2587,'1','I1590','NAME','S02325','','','0000-00-00','','1341231/0971/104 pg9','',''),(2588,'1','I1590','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2589,'1','I1590','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2590,'1','I1590','BIRT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2591,'1','I1590','BIRT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2592,'1','I1591','1713','S02191','','','0000-00-00','','','',''),(2593,'1','I1591','1713','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2594,'1','I1591','1713','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2595,'1','I1591','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2596,'1','I1591','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2597,'1','I1591','BIRT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2598,'1','I1591','BIRT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2599,'1','I1592','1714','S01794','','','0000-00-00','','','',''),(2600,'1','I1592','1714','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2601,'1','I1592','1714','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2602,'1','I1592','1715','S02155','','','0000-00-00','','','',''),(2603,'1','I1592','1715','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2604,'1','I1592','1715','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2605,'1','I1592','1716','S01945','','','0000-00-00','','','',''),(2606,'1','I1592','1716','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2607,'1','I1592','1716','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2608,'1','I1592','1717','S02331','','','0000-00-00','','','',''),(2609,'1','I1592','1717','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2610,'1','I1592','1717','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2611,'1','I1592','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2612,'1','I1592','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2613,'1','I1592','BIRT','S02064','','','0000-00-00','','','',''),(2614,'1','I1592','BIRT','S01755','','','0000-00-00','','','',''),(2615,'1','I1592','BIRT','S02383','','','0000-00-00','','','',''),(2616,'1','I1592','BIRT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2617,'1','I1592','BIRT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2618,'1','I1592','DEAT','S03418','','','0000-00-00','','1a pg23','',''),(2619,'1','I1592','DEAT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2620,'1','I1592','DEAT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2621,'1','I1593','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2622,'1','I1593','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2623,'1','I1593','BIRT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2624,'1','I1593','BIRT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2625,'1','I1594','1718','S01958','','','0000-00-00','','','',''),(2626,'1','I1594','1718','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2627,'1','I1594','1718','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2628,'1','I1594','1719','S02191','','','0000-00-00','','','',''),(2629,'1','I1594','1719','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2630,'1','I1594','1719','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2631,'1','I1594','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2632,'1','I1594','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2633,'1','I1594','BIRT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2634,'1','I1594','BIRT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2635,'1','I1595','1720','S02092','','','0000-00-00','','','',''),(2636,'1','I1595','1720','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2637,'1','I1595','1720','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2638,'1','I1595','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2639,'1','I1595','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2640,'1','I1595','BIRT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2641,'1','I1595','BIRT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2642,'1','I1596','1721','S02191','','','0000-00-00','','','',''),(2643,'1','I1596','1721','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2644,'1','I1596','1721','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2645,'1','I1596','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2646,'1','I1596','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2647,'1','I1596','BIRT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2648,'1','I1596','BIRT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2649,'1','I1597','1722','S01958','','','0000-00-00','','','',''),(2650,'1','I1597','1722','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2651,'1','I1597','1722','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2652,'1','I1597','1723','S02191','','','0000-00-00','','','',''),(2653,'1','I1597','1723','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2654,'1','I1597','1723','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2655,'1','I1597','1724','S02310','','','0000-00-00','','','',''),(2656,'1','I1597','1724','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2657,'1','I1597','1724','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2658,'1','I1597','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2659,'1','I1597','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2660,'1','I1597','BIRT','S01837','','','0000-00-00','','RG10/980- Teynham 8 -105 - 55','',''),(2661,'1','I1597','BIRT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2662,'1','I1597','BIRT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2663,'1','I1597','DEAT','S02466','','','0000-00-00','','','',''),(2664,'1','I1597','DEAT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2665,'1','I1597','DEAT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2666,'1','I1598','1725','S01958','','','0000-00-00','','','',''),(2667,'1','I1598','1725','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2668,'1','I1598','1725','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2669,'1','I1598','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2670,'1','I1598','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2671,'1','I1598','BIRT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2672,'1','I1598','BIRT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2673,'1','I1599','1726','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2674,'1','I1599','1726','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2675,'1','I1599','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2676,'1','I1599','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2677,'1','I1599','BIRT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2678,'1','I1599','BIRT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2679,'1','I1600','1727','S02225','','','0000-00-00','','1871 UK Census RG10/963 page20','',''),(2680,'1','I1600','1727','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2681,'1','I1600','1727','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2682,'1','I1600','1728','S02383','','','0000-00-00','','RG11 Piece / Folio 0968 / 124 Page Number 26','','33 St Johns Rd Census Place Faversham, Kent'),(2683,'1','I1600','1728','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2684,'1','I1600','1728','S02383','','','0000-00-00','','RG11 Piece / Folio 0968 / 124 Page Number 26','','33 St Johns Rd Census Place Faversham, Kent'),(2685,'1','I1600','1728','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2686,'1','I1600','1729','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2687,'1','I1600','1729','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2688,'1','I1600','NAME','S02221','','','0000-00-00','','RG10/963 page20','',''),(2689,'1','I1600','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2690,'1','I1600','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2691,'1','I1600','BIRT','S02672','','','0000-00-00','','RG12/713 p24','',''),(2692,'1','I1600','BIRT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2693,'1','I1600','BIRT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2694,'1','I1601','1730','S02221','','','0000-00-00','','RG10/963 page20','',''),(2695,'1','I1601','1730','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2696,'1','I1601','1730','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2697,'1','I1601','1731','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2698,'1','I1601','1731','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2699,'1','I1601','NAME','S02672','','','0000-00-00','','RG12 713 page 24','',''),(2700,'1','I1601','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2701,'1','I1601','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2702,'1','I1601','BIRT','S02672','','','0000-00-00','','RG12/ page','',''),(2703,'1','I1601','BIRT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2704,'1','I1601','BIRT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2705,'1','I1602','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2706,'1','I1602','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2707,'1','I1602','BIRT','S02672','','','0000-00-00','','','',''),(2708,'1','I1602','BIRT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2709,'1','I1602','BIRT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2710,'1','I1603','1732','S01945','','','0000-00-00','','','',''),(2711,'1','I1603','1732','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2712,'1','I1603','1732','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2713,'1','I1603','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2714,'1','I1603','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2715,'1','I1603','BIRT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2716,'1','I1603','BIRT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2717,'1','I1603','DEAT','S02052','','','0000-00-00','','','',''),(2718,'1','I1603','DEAT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2719,'1','I1603','DEAT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2720,'1','I1604','1733','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2721,'1','I1604','1733','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2722,'1','I1604','NAME','S02672','','','0000-00-00','','RG12/713 p24','',''),(2723,'1','I1604','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2724,'1','I1604','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2725,'1','I1604','BIRT','S02672','','','0000-00-00','','','',''),(2726,'1','I1604','BIRT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2727,'1','I1604','BIRT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2728,'1','I1605','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2729,'1','I1605','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2730,'1','I1605','BIRT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2731,'1','I1605','BIRT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2732,'1','I1606','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2733,'1','I1606','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2734,'1','I1607','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2735,'1','I1607','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2736,'1','I1607','BIRT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2737,'1','I1607','BIRT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2738,'1','I1608','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2739,'1','I1608','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2740,'1','I1608','BIRT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2741,'1','I1608','BIRT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2742,'1','I1609','1734','S01990','','','0000-00-00','','','',''),(2743,'1','I1609','1734','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2744,'1','I1609','1734','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2745,'1','I1609','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2746,'1','I1609','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2747,'1','I1609','BIRT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2748,'1','I1609','BIRT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2749,'1','I1610','1735','S01990','','','0000-00-00','','','',''),(2750,'1','I1610','1735','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2751,'1','I1610','1735','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2752,'1','I1610','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2753,'1','I1610','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2754,'1','I1611','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2755,'1','I1611','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2756,'1','I1612','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2757,'1','I1612','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2758,'1','I1613','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2759,'1','I1613','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2760,'1','I1613','BIRT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2761,'1','I1613','BIRT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2762,'1','I1614','1736','S02352','','','0000-00-00','','','',''),(2763,'1','I1614','1736','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2764,'1','I1614','1736','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2765,'1','I1614','1737','S02640','','','0000-00-00','','','',''),(2766,'1','I1614','1737','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2767,'1','I1614','1737','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2768,'1','I1614','1738','S02929','','','0000-00-00','','','',''),(2769,'1','I1614','1738','S03081','','','0000-00-00','1908 death in the Sub-District of North West Fulham in the County of London\nWhere and when died: - 27th April 1908, Fulham Infirmiary\nName and Surname: - Henry Dagg\nSex: Male Age:- 74 years\nOccupation:- House Painter, journeyman of 37, Iffley Road, Hammersmith\nCause of death:- Aortic regurgitation, cardiac dilation and failure, certified by R J Waugh, MB\nInformant:- S Stinchcombe, daughter of 49, Lochaline Street, Fulham\nWhen registered:- 27 April 1908\nA Busby, Register','','',''),(2770,'1','I1614','1738','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2771,'1','I1614','1738','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2772,'1','I1614','1739','S03081','','','0000-00-00','','','','1908 death in the Sub-District of North West Fulham in the County of London\nWhere and when died: - 27th April 1908, Fulham Infirmiary\nName and Surname: - Henry Dagg\nSex: Male Age:- 74 years\nOccupation:- House Painter, journeyman of 37, Iffley Road, Hammersmith\nCause of death:- Aortic regurgitation, cardiac dilation and failure, certified by R J Waugh, MB\nInformant:- S Stinchcombe, daughter of 49, Lochaline Street, Fulham\nWhen registered:- 27 April 1908\nA Busby, Register'),(2773,'1','I1614','1739','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2774,'1','I1614','1739','S03081','','','0000-00-00','','','','1908 death in the Sub-District of North West Fulham in the County of London\nWhere and when died: - 27th April 1908, Fulham Infirmiary\nName and Surname: - Henry Dagg\nSex: Male Age:- 74 years\nOccupation:- House Painter, journeyman of 37, Iffley Road, Hammersmith\nCause of death:- Aortic regurgitation, cardiac dilation and failure, certified by R J Waugh, MB\nInformant:- S Stinchcombe, daughter of 49, Lochaline Street, Fulham\nWhen registered:- 27 April 1908\nA Busby, Register'),(2775,'1','I1614','1739','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2776,'1','I1614','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2777,'1','I1614','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2778,'1','I1614','BIRT','S02242','','','0000-00-00','','','',''),(2779,'1','I1614','BIRT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2780,'1','I1614','BIRT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2781,'1','I1615','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2782,'1','I1615','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2783,'1','I1615','BIRT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2784,'1','I1615','BIRT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2785,'1','I1616','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2786,'1','I1616','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2787,'1','I1616','BIRT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2788,'1','I1616','BIRT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2789,'1','I1617','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2790,'1','I1617','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2791,'1','I1618','1740','S02074','','','0000-00-00','','','',''),(2792,'1','I1618','1740','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2793,'1','I1618','1740','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2794,'1','I1618','1741','S02338','','','0000-00-00','','','',''),(2795,'1','I1618','1741','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2796,'1','I1618','1741','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2797,'1','I1618','1742','S02728','','','0000-00-00','','','',''),(2798,'1','I1618','1742','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2799,'1','I1618','1742','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2800,'1','I1618','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2801,'1','I1618','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2802,'1','I1618','BIRT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2803,'1','I1618','BIRT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2804,'1','I1619','1743','S01789','','','0000-00-00','','Piece number HO107/476, Folio 20, pages 2 & 3','','the 1841 census is the earliest census that took names, ages and a couple ofother details. Adult ages were rounded up or down to the nearest 0 or 5,there is no indication of relationship, and only an affirmation of whetheror not they born in the county of residence. I have assumed for the moment that all of those with a Jarrett surname living in George Jarrett\'s household were his and Martha\'s children and not nephews, grandchildren etc. This is a reasonable assumption becasue of the ages or thought may be disproved at a later date.'),(2805,'1','I1619','1743','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2806,'1','I1619','1743','S01789','','','0000-00-00','','Piece number HO107/476, Folio 20, pages 2 & 3','','the 1841 census is the earliest census that took names, ages and a couple ofother details. Adult ages were rounded up or down to the nearest 0 or 5,there is no indication of relationship, and only an affirmation of whetheror not they born in the county of residence. I have assumed for the moment that all of those with a Jarrett surname living in George Jarrett\'s household were his and Martha\'s children and not nephews, grandchildren etc. This is a reasonable assumption becasue of the ages or thought may be disproved at a later date.'),(2807,'1','I1619','1743','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2808,'1','I1619','1744','S01985','','','0000-00-00','','','',''),(2809,'1','I1619','1744','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2810,'1','I1619','1744','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2811,'1','I1619','1745','S02084','','','0000-00-00','','RG10/907 page 16','',''),(2812,'1','I1619','1745','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2813,'1','I1619','1745','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2814,'1','I1619','1746','S02307','','','0000-00-00','','1881 Census Chatham RG11 0894 /45 page5','',''),(2815,'1','I1619','1746','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2816,'1','I1619','1746','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2817,'1','I1619','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2818,'1','I1619','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2819,'1','I1619','BIRT','S03410','','','0000-00-00','','','',''),(2820,'1','I1619','BIRT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2821,'1','I1619','BIRT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2822,'1','I1619','CHR','S03676','','','0000-00-00','','','',''),(2823,'1','I1619','CHR','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2824,'1','I1619','CHR','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2825,'1','I1619','DEAT','S03410','','','0000-00-00','','','',''),(2826,'1','I1619','DEAT','S02504','','','0000-00-00','','','',''),(2827,'1','I1619','DEAT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2828,'1','I1619','DEAT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2829,'1','I1620','1747','S01789','','','0000-00-00','','Piece number HO107/476, Folio 20, pages 2 & 3','','the 1841 census is the earliest census that took names, ages and a couple ofother details. Adult ages were rounded up or down to the nearest 0 or 5,there is no indication of relationship, and only an affirmation of whetheror not they born in the county of residence. I have assumed for the moment that all of those with a Jarrett surname living in George Jarrett\'s household were his and Martha\'s children and not nephews, grandchildren etc. This is a reasonable assumption becasue of the ages or thought may be disproved at a later date.'),(2830,'1','I1620','1747','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2831,'1','I1620','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2832,'1','I1620','BIRT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2833,'1','I1620','CHR','S03676','','','0000-00-00','','','',''),(2834,'1','I1620','CHR','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2835,'1','I1621','1748','S01789','','','0000-00-00','','Piece number HO107/476, Folio 20, pages 2 & 3','','the 1841 census is the earliest census that took names, ages and a couple ofother details. Adult ages were rounded up or down to the nearest 0 or 5,there is no indication of relationship, and only an affirmation of whetheror not they born in the county of residence.'),(2836,'1','I1621','1748','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2837,'1','I1621','1748','S01789','','','0000-00-00','','Piece number HO107/476, Folio 20, pages 2 & 3','','the 1841 census is the earliest census that took names, ages and a couple ofother details. Adult ages were rounded up or down to the nearest 0 or 5,there is no indication of relationship, and only an affirmation of whetheror not they born in the county of residence.'),(2838,'1','I1621','1748','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2839,'1','I1621','1749','S01870','','','0000-00-00','','HO 107 /1626 Folio 566 p19','',''),(2840,'1','I1621','1749','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2841,'1','I1621','1749','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2842,'1','I1621','1750','S02068','','','0000-00-00','','RG10 979 page 28','',''),(2843,'1','I1621','1750','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2844,'1','I1621','1750','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2845,'1','I1621','1751','S02383','','','0000-00-00','','1341231 RG11 0971 /111 page 24','',''),(2846,'1','I1621','1751','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2847,'1','I1621','1751','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2848,'1','I1621','1752','S02567','','','0000-00-00','','RG12 -715 page 24','',''),(2849,'1','I1621','1752','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2850,'1','I1621','1752','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2851,'1','I1621','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2852,'1','I1621','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2853,'1','I1621','BIRT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2854,'1','I1621','BIRT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2855,'1','I1621','CHR','S03463','','','0000-00-00','','C068631 1798 - 1837 0597068 RG4 1989 6906522','',''),(2856,'1','I1621','CHR','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2857,'1','I1621','CHR','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2858,'1','I1622','1753','S01789','','','0000-00-00','','Piece number HO107/476, Folio 20, pages 2 & 3','','the 1841 census is the earliest census that took names, ages and a couple ofother details. Adult ages were rounded up or down to the nearest 0 or 5,there is no indication of relationship, and only an affirmation of whetheror not they born in the county of residence.'),(2859,'1','I1622','1753','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2860,'1','I1622','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2861,'1','I1622','BIRT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2862,'1','I1622','CHR','S03463','','','0000-00-00','','1798 - 1837 0597068 6906522','',''),(2863,'1','I1622','CHR','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2864,'1','I1623','1754','S01789','','','0000-00-00','','Piece number HO107/476, Folio 20, pages 2 & 3','','the 1841 census is the earliest census that took names, ages and a couple ofother details. Adult ages were rounded up or down to the nearest 0 or 5,there is no indication of relationship, and only an affirmation of whetheror not they born in the county of residence. I have assumed for the moment that all of those with a Jarrett surname living in George Jarrett\'s household were his and Martha\'s children and not nephews, grandchildren etc. This is a reasonable assumption becasue of the ages or thought may be disproved at a later date.'),(2865,'1','I1623','1754','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2866,'1','I1623','1754','S01789','','','0000-00-00','','Piece number HO107/476, Folio 20, pages 2 & 3','','the 1841 census is the earliest census that took names, ages and a couple ofother details. Adult ages were rounded up or down to the nearest 0 or 5,there is no indication of relationship, and only an affirmation of whetheror not they born in the county of residence. I have assumed for the moment that all of those with a Jarrett surname living in George Jarrett\'s household were his and Martha\'s children and not nephews, grandchildren etc. This is a reasonable assumption becasue of the ages or thought may be disproved at a later date.'),(2867,'1','I1623','1754','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2868,'1','I1623','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2869,'1','I1623','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2870,'1','I1623','BIRT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2871,'1','I1623','BIRT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2872,'1','I1623','CHR','S03676','','','0000-00-00','','','',''),(2873,'1','I1623','CHR','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2874,'1','I1623','CHR','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2875,'1','I1624','1755','S01789','','','0000-00-00','','Piece number HO107/476, Folio 20, pages 2 & 3','','the 1841 census is the earliest census that took names, ages and a couple ofother details. Adult ages were rounded up or down to the nearest 0 or 5,there is no indication of relationship, and only an affirmation of whetheror not they born in the county of residence. I have assumed for the moment that all of those with a Jarrett surname living in George Jarrett\'s household were his and Martha\'s children and not nephews, grandchildren etc. This is a reasonable assumption becasue of the ages or thought may be disproved at a later date.'),(2876,'1','I1624','1755','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2877,'1','I1624','1755','S01789','','','0000-00-00','','Piece number HO107/476, Folio 20, pages 2 & 3','','the 1841 census is the earliest census that took names, ages and a couple ofother details. Adult ages were rounded up or down to the nearest 0 or 5,there is no indication of relationship, and only an affirmation of whetheror not they born in the county of residence. I have assumed for the moment that all of those with a Jarrett surname living in George Jarrett\'s household were his and Martha\'s children and not nephews, grandchildren etc. This is a reasonable assumption becasue of the ages or thought may be disproved at a later date.'),(2878,'1','I1624','1755','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2879,'1','I1624','1756','S02307','','','0000-00-00','','','',''),(2880,'1','I1624','1756','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2881,'1','I1624','1756','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2882,'1','I1624','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2883,'1','I1624','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2884,'1','I1624','BIRT','S01764','','','0000-00-00','','','',''),(2885,'1','I1624','BIRT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2886,'1','I1624','BIRT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2887,'1','I1625','1757','S01945','','','0000-00-00','','','',''),(2888,'1','I1625','1757','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2889,'1','I1625','1757','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2890,'1','I1625','1758','S02177','','','0000-00-00','','','',''),(2891,'1','I1625','1758','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2892,'1','I1625','1758','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2893,'1','I1625','1759','S02331','','','0000-00-00','','','',''),(2894,'1','I1625','1759','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2895,'1','I1625','1759','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2896,'1','I1625','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2897,'1','I1625','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2898,'1','I1625','BIRT','S02383','','','0000-00-00','','','',''),(2899,'1','I1625','BIRT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2900,'1','I1625','BIRT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2901,'1','I1625','CHR','S03544','','','0000-00-00','','','',''),(2902,'1','I1625','CHR','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2903,'1','I1625','CHR','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2904,'1','I1625','DEAT','S03240','','','0000-00-00','','','',''),(2905,'1','I1625','DEAT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2906,'1','I1625','DEAT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2907,'1','I1626','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2908,'1','I1626','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2909,'1','I1627','1760','S02078','','','0000-00-00','','','',''),(2910,'1','I1627','1760','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2911,'1','I1627','1760','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2912,'1','I1627','1761','S02307','','','0000-00-00','','','',''),(2913,'1','I1627','1761','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2914,'1','I1627','1761','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2915,'1','I1627','1762','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2916,'1','I1627','1762','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2917,'1','I1627','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2918,'1','I1627','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2919,'1','I1627','BIRT','S03410','','','0000-00-00','','','',''),(2920,'1','I1627','BIRT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2921,'1','I1627','BIRT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2922,'1','I1628','1763','S02307','','','0000-00-00','','','',''),(2923,'1','I1628','1763','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2924,'1','I1628','1763','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2925,'1','I1628','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2926,'1','I1628','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2927,'1','I1628','BIRT','S03410','','','0000-00-00','','','',''),(2928,'1','I1628','BIRT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2929,'1','I1628','BIRT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2930,'1','I1629','1764','S02078','','','0000-00-00','','RG10/907 page 30','','Household schedule number: 193'),(2931,'1','I1629','1764','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2932,'1','I1629','1765','S02318','','','0000-00-00','','','',''),(2933,'1','I1629','1765','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2934,'1','I1629','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2935,'1','I1629','BIRT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2936,'1','I1629','CHR','S03463','','','0000-00-00','','1798 - 1837 0597068 6906522','',''),(2937,'1','I1629','CHR','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2938,'1','I1630','1766','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2939,'1','I1630','1766','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2940,'1','I1630','1767','S01985','','','0000-00-00','','','',''),(2941,'1','I1630','1767','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2942,'1','I1630','1767','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2943,'1','I1630','1768','S02084','','','0000-00-00','','','',''),(2944,'1','I1630','1768','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2945,'1','I1630','1768','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2946,'1','I1630','1769','S02463','','','0000-00-00','','','',''),(2947,'1','I1630','1769','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2948,'1','I1630','1769','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2949,'1','I1630','1770','S02587','','','0000-00-00','','RG12/665 Page 20','',''),(2950,'1','I1630','1770','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2951,'1','I1630','1770','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2952,'1','I1630','1771','S02818','','','0000-00-00','','','',''),(2953,'1','I1630','1771','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2954,'1','I1630','1771','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2955,'1','I1630','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2956,'1','I1630','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2957,'1','I1630','BIRT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2958,'1','I1630','BIRT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2959,'1','I1630','DEAT','S03106','','','0000-00-00','','','',''),(2960,'1','I1630','DEAT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2961,'1','I1630','DEAT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2962,'1','I1631','1772','S02078','','','0000-00-00','','','',''),(2963,'1','I1631','1772','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2964,'1','I1631','1772','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2965,'1','I1631','1773','S02318','','','0000-00-00','','','',''),(2966,'1','I1631','1773','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2967,'1','I1631','1773','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2968,'1','I1631','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2969,'1','I1631','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2970,'1','I1631','BIRT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2971,'1','I1631','BIRT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2972,'1','I1632','1774','S01985','','','0000-00-00','','','',''),(2973,'1','I1632','1774','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2974,'1','I1632','1774','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2975,'1','I1632','1775','S02084','','','0000-00-00','','','',''),(2976,'1','I1632','1775','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2977,'1','I1632','1775','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2978,'1','I1632','1776','S02307','','','0000-00-00','','','',''),(2979,'1','I1632','1776','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2980,'1','I1632','1776','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2981,'1','I1632','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2982,'1','I1632','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2983,'1','I1632','BIRT','S03410','','','0000-00-00','','','',''),(2984,'1','I1632','BIRT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2985,'1','I1632','BIRT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2986,'1','I1633','1777','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2987,'1','I1633','1777','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2988,'1','I1633','1778','S02068','','','0000-00-00','','RG10 979 page 28','',''),(2989,'1','I1633','1778','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2990,'1','I1633','1778','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2991,'1','I1633','1779','S02383','','','0000-00-00','','1341231 RG11 0971 /111 page 24','',''),(2992,'1','I1633','1779','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2993,'1','I1633','1779','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2994,'1','I1633','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2995,'1','I1633','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2996,'1','I1633','BIRT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2997,'1','I1633','BIRT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(2998,'1','I1633','DEAT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(2999,'1','I1633','DEAT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3000,'1','I1634','1780','S01870','','','0000-00-00','','','',''),(3001,'1','I1634','1780','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3002,'1','I1634','1780','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3003,'1','I1634','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3004,'1','I1634','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3005,'1','I1634','BIRT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3006,'1','I1634','BIRT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3007,'1','I1635','1781','S01870','','','0000-00-00','','','',''),(3008,'1','I1635','1781','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3009,'1','I1635','1781','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3010,'1','I1635','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3011,'1','I1635','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3012,'1','I1635','BIRT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3013,'1','I1635','BIRT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3014,'1','I1636','1782','S01926','','','0000-00-00','','','',''),(3015,'1','I1636','1782','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3016,'1','I1636','1782','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3017,'1','I1636','1783','S01937','','','0000-00-00','','','',''),(3018,'1','I1636','1783','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3019,'1','I1636','1783','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3020,'1','I1636','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3021,'1','I1636','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3022,'1','I1636','BIRT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3023,'1','I1636','BIRT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3024,'1','I1637','1784','S02068','','','0000-00-00','','','',''),(3025,'1','I1637','1784','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3026,'1','I1637','1784','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3027,'1','I1637','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3028,'1','I1637','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3029,'1','I1637','BIRT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3030,'1','I1637','BIRT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3031,'1','I1638','1785','S02068','','','0000-00-00','','','',''),(3032,'1','I1638','1785','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3033,'1','I1638','1785','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3034,'1','I1638','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3035,'1','I1638','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3036,'1','I1638','BIRT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3037,'1','I1638','BIRT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3038,'1','I1639','1786','S02068','','','0000-00-00','','','',''),(3039,'1','I1639','1786','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3040,'1','I1639','1786','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3041,'1','I1639','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3042,'1','I1639','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3043,'1','I1639','BIRT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3044,'1','I1639','BIRT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3045,'1','I1640','1787','S02383','','','0000-00-00','','1341231 RG11 0971 /111 page 24','',''),(3046,'1','I1640','1787','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3047,'1','I1640','1787','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3048,'1','I1640','1788','S02544','','','0000-00-00','','RG12/710 page1','',''),(3049,'1','I1640','1788','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3050,'1','I1640','1788','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3051,'1','I1640','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3052,'1','I1640','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3053,'1','I1640','BIRT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3054,'1','I1640','BIRT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3055,'1','I1641','1789','S02383','','','0000-00-00','','1341231 RG11 0971 /111 page 24','',''),(3056,'1','I1641','1789','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3057,'1','I1641','1789','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3058,'1','I1641','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3059,'1','I1641','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3060,'1','I1641','BIRT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3061,'1','I1641','BIRT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3062,'1','I1642','1790','S02282','','','0000-00-00','','RG11 0970/66 page 9','',''),(3063,'1','I1642','1790','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3064,'1','I1642','1790','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3065,'1','I1642','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3066,'1','I1642','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3067,'1','I1642','BIRT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3068,'1','I1642','BIRT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3069,'1','I1642','DEAT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3070,'1','I1642','DEAT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3071,'1','I1643','1791','S02383','','','0000-00-00','','1341231 RG11 0971 /111 page 24','',''),(3072,'1','I1643','1791','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3073,'1','I1643','1791','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3074,'1','I1643','1792','S02544','','','0000-00-00','','RG12/710 page1','',''),(3075,'1','I1643','1792','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3076,'1','I1643','1792','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3077,'1','I1643','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3078,'1','I1643','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3079,'1','I1643','BIRT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3080,'1','I1643','BIRT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3081,'1','I1644','1793','S02282','','','0000-00-00','','','',''),(3082,'1','I1644','1793','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3083,'1','I1644','1793','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3084,'1','I1644','1794','S02544','','','0000-00-00','','','',''),(3085,'1','I1644','1794','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3086,'1','I1644','1794','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3087,'1','I1644','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3088,'1','I1644','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3089,'1','I1644','BIRT','S02544','','','0000-00-00','','RG12/710 page1','',''),(3090,'1','I1644','BIRT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3091,'1','I1644','BIRT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3092,'1','I1645','1795','S02282','','','0000-00-00','','RG11 0970/66 page 9','',''),(3093,'1','I1645','1795','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3094,'1','I1645','1795','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3095,'1','I1645','1796','S02544','','','0000-00-00','','RG12/710 page1','',''),(3096,'1','I1645','1796','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3097,'1','I1645','1796','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3098,'1','I1645','1797','S02822','','','0000-00-00','','RG13/806 Page 16','',''),(3099,'1','I1645','1797','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3100,'1','I1645','1797','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3101,'1','I1645','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3102,'1','I1645','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3103,'1','I1645','BIRT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3104,'1','I1645','BIRT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3105,'1','I1646','1798','S02282','','','0000-00-00','','RG11 0970/66 page 9','',''),(3106,'1','I1646','1798','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3107,'1','I1646','1798','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3108,'1','I1646','1799','S02544','','','0000-00-00','','RG12/710 page1','',''),(3109,'1','I1646','1799','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3110,'1','I1646','1799','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3111,'1','I1646','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3112,'1','I1646','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3113,'1','I1646','BIRT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3114,'1','I1646','BIRT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3115,'1','I1647','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3116,'1','I1647','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3117,'1','I1647','BIRT','S03372','','','0000-00-00','','','',''),(3118,'1','I1647','BIRT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3119,'1','I1647','BIRT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3120,'1','I1647','BIRT','S03114','','','0000-00-00','','','','Date of Import: 20 Mar 2005'),(3121,'1','I1647','BIRT','S03114','','','0000-00-00','','','','Date of Import: 6 Apr 2005'),(3122,'1','I1647','DEAT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3123,'1','I1647','DEAT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3124,'1','I1647','DEAT','S03114','','','0000-00-00','','','','Date of Import: 20 Mar 2005'),(3125,'1','I1647','DEAT','S03114','','','0000-00-00','','','','Date of Import: 6 Apr 2005'),(3126,'1','I1648','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3127,'1','I1648','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3128,'1','I1648','BIRT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3129,'1','I1648','BIRT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3130,'1','I1648','CHR','S03544','','','0000-00-00','','','',''),(3131,'1','I1648','CHR','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3132,'1','I1648','CHR','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3133,'1','I1649','1801','S02544','','','0000-00-00','','RG12/710 page1','',''),(3134,'1','I1649','1801','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3135,'1','I1649','1801','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3136,'1','I1649','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3137,'1','I1649','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3138,'1','I1649','BIRT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3139,'1','I1649','BIRT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3140,'1','I1650','1802','S02544','','','0000-00-00','','RG12/710 page1','',''),(3141,'1','I1650','1802','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3142,'1','I1650','1802','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3143,'1','I1650','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3144,'1','I1650','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3145,'1','I1650','BIRT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3146,'1','I1650','BIRT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3147,'1','I1651','1803','S02457','','','0000-00-00','','','',''),(3148,'1','I1651','1803','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3149,'1','I1651','1803','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3150,'1','I1651','1804','S02576','','','0000-00-00','','RG12/714','',''),(3151,'1','I1651','1804','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3152,'1','I1651','1804','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3153,'1','I1651','1805','S02826','','','0000-00-00','','','',''),(3154,'1','I1651','1805','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3155,'1','I1651','1805','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3156,'1','I1651','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3157,'1','I1651','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3158,'1','I1651','BIRT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3159,'1','I1651','BIRT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3160,'1','I1652','1806','S02576','','','0000-00-00','','RG12/714','',''),(3161,'1','I1652','1806','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3162,'1','I1652','1806','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3163,'1','I1652','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3164,'1','I1652','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3165,'1','I1652','BIRT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3166,'1','I1652','BIRT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3167,'1','I1653','1807','S02576','','','0000-00-00','','RG12/714','',''),(3168,'1','I1653','1807','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3169,'1','I1653','1807','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3170,'1','I1653','1808','S02826','','','0000-00-00','','','',''),(3171,'1','I1653','1808','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3172,'1','I1653','1808','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3173,'1','I1653','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3174,'1','I1653','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3175,'1','I1653','BIRT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3176,'1','I1653','BIRT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3177,'1','I1654','1809','S02576','','','0000-00-00','','RG12/714','',''),(3178,'1','I1654','1809','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3179,'1','I1654','1809','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3180,'1','I1654','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3181,'1','I1654','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3182,'1','I1654','BIRT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3183,'1','I1654','BIRT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3184,'1','I1655','1810','S02576','','','0000-00-00','','RG12/714','',''),(3185,'1','I1655','1810','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3186,'1','I1655','1810','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3187,'1','I1655','1811','S02958','','','0000-00-00','','','',''),(3188,'1','I1655','1811','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3189,'1','I1655','1811','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3190,'1','I1655','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3191,'1','I1655','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3192,'1','I1655','BIRT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3193,'1','I1655','BIRT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3194,'1','I1656','1812','S02822','','','0000-00-00','','RG13/806 Page 16','',''),(3195,'1','I1656','1812','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3196,'1','I1656','1812','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3197,'1','I1656','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3198,'1','I1656','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3199,'1','I1656','BIRT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3200,'1','I1656','BIRT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3201,'1','I1657','1813','S02822','','','0000-00-00','','RG13/806 Page 16','',''),(3202,'1','I1657','1813','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3203,'1','I1657','1813','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3204,'1','I1657','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3205,'1','I1657','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3206,'1','I1657','BIRT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3207,'1','I1657','BIRT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3208,'1','I1658','1814','S02822','','','0000-00-00','','RG13/806 Page 16','',''),(3209,'1','I1658','1814','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3210,'1','I1658','1814','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3211,'1','I1658','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3212,'1','I1658','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3213,'1','I1658','BIRT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3214,'1','I1658','BIRT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3215,'1','I1659','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3216,'1','I1659','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3217,'1','I1659','BIRT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3218,'1','I1659','BIRT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3219,'1','I1659','CHR','S03544','','','0000-00-00','','','',''),(3220,'1','I1659','CHR','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3221,'1','I1659','CHR','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3222,'1','I1660','1815','S02822','','','0000-00-00','','RG13/806 Page 16','',''),(3223,'1','I1660','1815','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3224,'1','I1660','1815','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3225,'1','I1660','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3226,'1','I1660','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3227,'1','I1660','BIRT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3228,'1','I1660','BIRT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3229,'1','I1661','1816','S02822','','','0000-00-00','','RG13/806 Page 16','',''),(3230,'1','I1661','1816','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3231,'1','I1661','1816','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3232,'1','I1661','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3233,'1','I1661','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3234,'1','I1661','BIRT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3235,'1','I1661','BIRT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3236,'1','I1662','1819','S03114','','','0000-00-00','','','','Date of Import: 20 Mar 2005'),(3237,'1','I1662','1819','S03114','','','0000-00-00','','','','Date of Import: 6 Apr 2005'),(3238,'1','I1662','1820','S02398','','','0000-00-00','','','',''),(3239,'1','I1662','1820','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3240,'1','I1662','1820','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3241,'1','I1662','1821','S02398','','','0000-00-00','','','',''),(3242,'1','I1662','1821','S03114','','','0000-00-00','','','','Date of Import: 20 Mar 2005'),(3243,'1','I1662','1821','S03114','','','0000-00-00','','','','Date of Import: 6 Apr 2005'),(3244,'1','I1662','1822','S02690','','','0000-00-00','','RG12 1392 page 15','',''),(3245,'1','I1662','1822','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3246,'1','I1662','1822','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3247,'1','I1662','1822','S03114','','','0000-00-00','','','','Date of Import: 20 Mar 2005'),(3248,'1','I1662','1822','S03114','','','0000-00-00','','','','Date of Import: 6 Apr 2005'),(3249,'1','I1662','1823','S02800','','','0000-00-00','','','',''),(3250,'1','I1662','1823','S03114','','','0000-00-00','','','','Date of Import: 20 Mar 2005'),(3251,'1','I1662','1823','S03114','','','0000-00-00','','','','Date of Import: 6 Apr 2005'),(3252,'1','I1662','1824','S02800','','','0000-00-00','','','',''),(3253,'1','I1662','1824','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3254,'1','I1662','1824','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3255,'1','I1662','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3256,'1','I1662','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3257,'1','I1662','BIRT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3258,'1','I1662','BIRT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3259,'1','I1663','1826','S02690','','','0000-00-00','','RG12 1392 page 15','',''),(3260,'1','I1663','1826','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3261,'1','I1663','1826','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3262,'1','I1663','1826','S03114','','','0000-00-00','','','','Date of Import: 20 Mar 2005'),(3263,'1','I1663','1826','S03114','','','0000-00-00','','','','Date of Import: 6 Apr 2005'),(3264,'1','I1663','1827','S02800','','','0000-00-00','','','',''),(3265,'1','I1663','1827','S03114','','','0000-00-00','','','','Date of Import: 20 Mar 2005'),(3266,'1','I1663','1827','S03114','','','0000-00-00','','','','Date of Import: 6 Apr 2005'),(3267,'1','I1663','1828','S02800','','','0000-00-00','','','',''),(3268,'1','I1663','1828','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3269,'1','I1663','1828','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3270,'1','I1663','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3271,'1','I1663','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3272,'1','I1663','BIRT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3273,'1','I1663','BIRT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3274,'1','I1663','BIRT','S03114','','','0000-00-00','','','','Date of Import: 20 Mar 2005'),(3275,'1','I1663','BIRT','S03114','','','0000-00-00','','','','Date of Import: 6 Apr 2005'),(3276,'1','I1664','1830','S02800','','','0000-00-00','','RG13 1682 page 22','',''),(3277,'1','I1664','1830','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3278,'1','I1664','1830','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3279,'1','I1664','1830','S03114','','','0000-00-00','','','','Date of Import: 20 Mar 2005'),(3280,'1','I1664','1830','S03114','','','0000-00-00','','','','Date of Import: 6 Apr 2005'),(3281,'1','I1664','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3282,'1','I1664','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3283,'1','I1664','BIRT','S02800','','','0000-00-00','','RG13 1682 page 22','',''),(3284,'1','I1664','BIRT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3285,'1','I1664','BIRT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3286,'1','I1664','BIRT','S03114','','','0000-00-00','','','','Date of Import: 20 Mar 2005'),(3287,'1','I1664','BIRT','S03114','','','0000-00-00','','','','Date of Import: 6 Apr 2005'),(3288,'1','I1665','1832','S02800','','','0000-00-00','','RG13 1682 page 22','',''),(3289,'1','I1665','1832','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3290,'1','I1665','1832','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3291,'1','I1665','1832','S03114','','','0000-00-00','','','','Date of Import: 20 Mar 2005'),(3292,'1','I1665','1832','S03114','','','0000-00-00','','','','Date of Import: 6 Apr 2005'),(3293,'1','I1665','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3294,'1','I1665','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3295,'1','I1665','BIRT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3296,'1','I1665','BIRT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3297,'1','I1665','BIRT','S03114','','','0000-00-00','','','','Date of Import: 20 Mar 2005'),(3298,'1','I1665','BIRT','S03114','','','0000-00-00','','','','Date of Import: 6 Apr 2005'),(3299,'1','I1666','1834','S02800','','','0000-00-00','','RG13 1682 page 22','',''),(3300,'1','I1666','1834','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3301,'1','I1666','1834','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3302,'1','I1666','1834','S03114','','','0000-00-00','','','','Date of Import: 20 Mar 2005'),(3303,'1','I1666','1834','S03114','','','0000-00-00','','','','Date of Import: 6 Apr 2005'),(3304,'1','I1666','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3305,'1','I1666','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3306,'1','I1666','BIRT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3307,'1','I1666','BIRT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3308,'1','I1666','BIRT','S03114','','','0000-00-00','','','','Date of Import: 20 Mar 2005'),(3309,'1','I1666','BIRT','S03114','','','0000-00-00','','','','Date of Import: 6 Apr 2005'),(3310,'1','I1667','1837','S03114','','','0000-00-00','','','','Date of Import: 20 Mar 2005'),(3311,'1','I1667','1837','S03114','','','0000-00-00','','','','Date of Import: 6 Apr 2005'),(3312,'1','I1667','1838','S02590','','','0000-00-00','','','',''),(3313,'1','I1667','1838','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3314,'1','I1667','1838','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3315,'1','I1667','1838','S03114','','','0000-00-00','','','','Date of Import: 20 Mar 2005'),(3316,'1','I1667','1838','S03114','','','0000-00-00','','','','Date of Import: 6 Apr 2005'),(3317,'1','I1667','1839','S02838','','','0000-00-00','','','',''),(3318,'1','I1667','1839','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3319,'1','I1667','1839','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3320,'1','I1667','1839','S03114','','','0000-00-00','','','','Date of Import: 20 Mar 2005'),(3321,'1','I1667','1839','S03114','','','0000-00-00','','','','Date of Import: 6 Apr 2005'),(3322,'1','I1667','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3323,'1','I1667','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3324,'1','I1667','BIRT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3325,'1','I1667','BIRT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3326,'1','I1668','1841','S02838','','','0000-00-00','','','',''),(3327,'1','I1668','1841','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3328,'1','I1668','1841','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3329,'1','I1668','1841','S03114','','','0000-00-00','','','','Date of Import: 20 Mar 2005'),(3330,'1','I1668','1841','S03114','','','0000-00-00','','','','Date of Import: 6 Apr 2005'),(3331,'1','I1668','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3332,'1','I1668','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3333,'1','I1668','BIRT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3334,'1','I1668','BIRT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3335,'1','I1668','BIRT','S03114','','','0000-00-00','','','','Date of Import: 20 Mar 2005'),(3336,'1','I1668','BIRT','S03114','','','0000-00-00','','','','Date of Import: 6 Apr 2005'),(3337,'1','I1669','1843','S02838','','','0000-00-00','','','',''),(3338,'1','I1669','1843','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3339,'1','I1669','1843','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3340,'1','I1669','1843','S03114','','','0000-00-00','','','','Date of Import: 20 Mar 2005'),(3341,'1','I1669','1843','S03114','','','0000-00-00','','','','Date of Import: 6 Apr 2005'),(3342,'1','I1669','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3343,'1','I1669','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3344,'1','I1669','BIRT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3345,'1','I1669','BIRT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3346,'1','I1669','BIRT','S03114','','','0000-00-00','','','','Date of Import: 20 Mar 2005'),(3347,'1','I1669','BIRT','S03114','','','0000-00-00','','','','Date of Import: 6 Apr 2005'),(3348,'1','I1670','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3349,'1','I1670','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3350,'1','I1670','BIRT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3351,'1','I1670','BIRT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3352,'1','I1670','CHR','S03531','','','0000-00-00','','','',''),(3353,'1','I1670','CHR','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3354,'1','I1670','CHR','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3355,'1','I1671','1844','S02690','','','0000-00-00','','','',''),(3356,'1','I1671','1844','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3357,'1','I1671','1844','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3358,'1','I1671','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3359,'1','I1671','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3360,'1','I1671','BIRT','S02395','','','0000-00-00','','RG11 1759/66 page 18 1341423','',''),(3361,'1','I1671','BIRT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3362,'1','I1671','BIRT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3363,'1','I1672','1845','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3364,'1','I1672','1845','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3365,'1','I1672','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3366,'1','I1672','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3367,'1','I1672','BIRT','S02395','','','0000-00-00','','RG11 1759/66 page 18','',''),(3368,'1','I1672','BIRT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3369,'1','I1672','BIRT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3370,'1','I1673','1846','S02398','','','0000-00-00','','','',''),(3371,'1','I1673','1846','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3372,'1','I1673','1846','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3373,'1','I1673','1847','S02690','','','0000-00-00','','','',''),(3374,'1','I1673','1847','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3375,'1','I1673','1847','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3376,'1','I1673','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3377,'1','I1673','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3378,'1','I1673','BIRT','S02395','','','0000-00-00','','RG11 1759/66 page 18','',''),(3379,'1','I1673','BIRT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3380,'1','I1673','BIRT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3381,'1','I1674','1848','S02690','','','0000-00-00','','','',''),(3382,'1','I1674','1848','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3383,'1','I1674','1848','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3384,'1','I1674','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3385,'1','I1674','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3386,'1','I1674','BIRT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3387,'1','I1674','BIRT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3388,'1','I1675','1849','S02690','','','0000-00-00','','','',''),(3389,'1','I1675','1849','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3390,'1','I1675','1849','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3391,'1','I1675','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3392,'1','I1675','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3393,'1','I1675','BIRT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3394,'1','I1675','BIRT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3395,'1','I1676','1850','S02690','','','0000-00-00','','','',''),(3396,'1','I1676','1850','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3397,'1','I1676','1850','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3398,'1','I1676','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3399,'1','I1676','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3400,'1','I1676','BIRT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3401,'1','I1676','BIRT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3402,'1','I1677','1851','S02690','','','0000-00-00','','','',''),(3403,'1','I1677','1851','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3404,'1','I1677','1851','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3405,'1','I1677','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3406,'1','I1677','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3407,'1','I1677','BIRT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3408,'1','I1677','BIRT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3409,'1','I1678','1852','S02732','','','0000-00-00','','1891 RG12/713 page 16','',''),(3410,'1','I1678','1852','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3411,'1','I1678','1852','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3412,'1','I1678','1853','S02793','','','0000-00-00','','','',''),(3413,'1','I1678','1853','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3414,'1','I1678','1853','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3415,'1','I1678','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3416,'1','I1678','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3417,'1','I1678','BIRT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3418,'1','I1678','BIRT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3419,'1','I1679','1854','S02732','','','0000-00-00','','','',''),(3420,'1','I1679','1854','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3421,'1','I1679','1854','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3422,'1','I1679','1855','S02793','','','0000-00-00','','','',''),(3423,'1','I1679','1855','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3424,'1','I1679','1855','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3425,'1','I1679','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3426,'1','I1679','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3427,'1','I1679','BIRT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3428,'1','I1679','BIRT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3429,'1','I1680','1856','S02732','','','0000-00-00','','','',''),(3430,'1','I1680','1856','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3431,'1','I1680','1856','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3432,'1','I1680','1857','S02793','','','0000-00-00','','','',''),(3433,'1','I1680','1857','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3434,'1','I1680','1857','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3435,'1','I1680','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3436,'1','I1680','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3437,'1','I1680','BIRT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3438,'1','I1680','BIRT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3439,'1','I1681','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3440,'1','I1681','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3441,'1','I1681','BIRT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3442,'1','I1681','BIRT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3443,'1','I1681','CHR','S03544','','','0000-00-00','','','',''),(3444,'1','I1681','CHR','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3445,'1','I1681','CHR','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3446,'1','I1682','1858','S02732','','','0000-00-00','','','',''),(3447,'1','I1682','1858','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3448,'1','I1682','1858','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3449,'1','I1682','1859','S02793','','','0000-00-00','','','',''),(3450,'1','I1682','1859','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3451,'1','I1682','1859','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3452,'1','I1682','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3453,'1','I1682','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3454,'1','I1682','BIRT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3455,'1','I1682','BIRT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3456,'1','I1683','1860','S02793','','','0000-00-00','','','',''),(3457,'1','I1683','1860','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3458,'1','I1683','1860','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3459,'1','I1683','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3460,'1','I1683','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3461,'1','I1683','BIRT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3462,'1','I1683','BIRT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3463,'1','I1684','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3464,'1','I1684','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3465,'1','I1684','BIRT','S02793','','','0000-00-00','','','',''),(3466,'1','I1684','BIRT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3467,'1','I1684','BIRT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3468,'1','I1685','1861','S02793','','','0000-00-00','','','',''),(3469,'1','I1685','1861','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3470,'1','I1685','1861','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3471,'1','I1685','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3472,'1','I1685','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3473,'1','I1685','BIRT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3474,'1','I1685','BIRT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3475,'1','I1686','1862','S02701','','','0000-00-00','','','',''),(3476,'1','I1686','1862','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3477,'1','I1686','1862','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3478,'1','I1686','1863','S02796','','','0000-00-00','','','',''),(3479,'1','I1686','1863','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3480,'1','I1686','1863','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3481,'1','I1686','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3482,'1','I1686','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3483,'1','I1686','BIRT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3484,'1','I1686','BIRT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3485,'1','I1687','1864','S02701','','','0000-00-00','','','',''),(3486,'1','I1687','1864','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3487,'1','I1687','1864','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3488,'1','I1687','1865','S02796','','','0000-00-00','','','',''),(3489,'1','I1687','1865','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3490,'1','I1687','1865','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3491,'1','I1687','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3492,'1','I1687','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3493,'1','I1687','BIRT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3494,'1','I1687','BIRT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3495,'1','I1688','1866','S02130','','','0000-00-00','','','',''),(3496,'1','I1688','1866','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3497,'1','I1688','1866','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3498,'1','I1688','1867','S02666','','','0000-00-00','','','',''),(3499,'1','I1688','1867','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3500,'1','I1688','1867','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3501,'1','I1688','1868','S02958','','','0000-00-00','','','',''),(3502,'1','I1688','1868','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3503,'1','I1688','1868','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3504,'1','I1688','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3505,'1','I1688','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3506,'1','I1688','BIRT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3507,'1','I1688','BIRT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3508,'1','I1689','1869','S02666','','','0000-00-00','','','',''),(3509,'1','I1689','1869','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3510,'1','I1689','1869','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3511,'1','I1689','1870','S02322','','','0000-00-00','','','',''),(3512,'1','I1689','1870','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3513,'1','I1689','1870','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3514,'1','I1689','1871','S02958','','','0000-00-00','','','',''),(3515,'1','I1689','1871','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3516,'1','I1689','1871','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3517,'1','I1689','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3518,'1','I1689','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3519,'1','I1689','BIRT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3520,'1','I1689','BIRT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3521,'1','I1690','1872','S02666','','','0000-00-00','','','',''),(3522,'1','I1690','1872','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3523,'1','I1690','1872','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3524,'1','I1690','1873','S02958','','','0000-00-00','','','',''),(3525,'1','I1690','1873','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3526,'1','I1690','1873','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3527,'1','I1690','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3528,'1','I1690','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3529,'1','I1690','BIRT','S02666','','','0000-00-00','','','',''),(3530,'1','I1690','BIRT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3531,'1','I1690','BIRT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3532,'1','I1691','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3533,'1','I1691','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3534,'1','I1691','BIRT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3535,'1','I1691','BIRT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3536,'1','I1692','1874','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3537,'1','I1692','1874','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3538,'1','I1692','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3539,'1','I1692','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3540,'1','I1692','BIRT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3541,'1','I1692','BIRT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3542,'1','I1692','DEAT','S01742','','','0000-00-00','','','',''),(3543,'1','I1692','DEAT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3544,'1','I1692','DEAT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3545,'1','I1693','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3546,'1','I1693','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3547,'1','I1693','BIRT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3548,'1','I1693','BIRT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3549,'1','I1694','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3550,'1','I1694','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3551,'1','I1694','BIRT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3552,'1','I1694','BIRT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3553,'1','I1695','1875','S02074','','','0000-00-00','','','',''),(3554,'1','I1695','1875','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3555,'1','I1695','1875','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3556,'1','I1695','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3557,'1','I1695','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3558,'1','I1695','BIRT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3559,'1','I1695','BIRT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3560,'1','I1696','1876','S01880','','','0000-00-00','','','',''),(3561,'1','I1696','1876','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3562,'1','I1696','1876','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3563,'1','I1696','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3564,'1','I1696','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3565,'1','I1696','BIRT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3566,'1','I1696','BIRT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3567,'1','I1696','DEAT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3568,'1','I1696','DEAT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3569,'1','I1696','BURI','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3570,'1','I1696','BURI','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3571,'1','I1697','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3572,'1','I1697','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3573,'1','I1697','BIRT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3574,'1','I1697','BIRT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3575,'1','I1697','BURI','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3576,'1','I1697','BURI','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3577,'1','I1698','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3578,'1','I1698','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3579,'1','I1698','BIRT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3580,'1','I1698','BIRT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3581,'1','I1699','1877','S02074','','','0000-00-00','','','',''),(3582,'1','I1699','1877','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3583,'1','I1699','1877','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3584,'1','I1699','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3585,'1','I1699','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3586,'1','I1699','BIRT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3587,'1','I1699','BIRT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3588,'1','I1700','1878','S02074','','','0000-00-00','','','',''),(3589,'1','I1700','1878','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3590,'1','I1700','1878','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3591,'1','I1700','1879','S03333','','','0000-00-00','','','','Birth Year <1862> Birthplace Tunbridge Wells, Kent, England Age 19 Occupation Tailor Marital Status U <Unmarried> Head of Household William H. JEFFERY Relation Lodger (Head)'),(3592,'1','I1700','1879','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3593,'1','I1700','1879','S03333','','','0000-00-00','','','','Birth Year <1862> Birthplace Tunbridge Wells, Kent, England Age 19 Occupation Tailor Marital Status U <Unmarried> Head of Household William H. JEFFERY Relation Lodger (Head)'),(3594,'1','I1700','1879','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3595,'1','I1700','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3596,'1','I1700','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3597,'1','I1700','BIRT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3598,'1','I1700','BIRT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3599,'1','I1701','1880','S02078','','','0000-00-00','','','',''),(3600,'1','I1701','1880','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3601,'1','I1701','1880','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3602,'1','I1701','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3603,'1','I1701','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3604,'1','I1701','BIRT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3605,'1','I1701','BIRT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3606,'1','I1702','1881','S02078','','','0000-00-00','','','',''),(3607,'1','I1702','1881','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3608,'1','I1702','1881','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3609,'1','I1702','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3610,'1','I1702','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3611,'1','I1702','BIRT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3612,'1','I1702','BIRT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3613,'1','I1703','1882','S01774','','','0000-00-00','','','',''),(3614,'1','I1703','1882','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3615,'1','I1703','1882','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3616,'1','I1703','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3617,'1','I1703','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3618,'1','I1703','BIRT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3619,'1','I1703','BIRT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3620,'1','I1703','DEAT','S01755','','','0000-00-00','','','',''),(3621,'1','I1703','DEAT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3622,'1','I1703','DEAT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3623,'1','I1704','1883','S02078','','','0000-00-00','','','',''),(3624,'1','I1704','1883','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3625,'1','I1704','1883','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3626,'1','I1704','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3627,'1','I1704','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3628,'1','I1704','BIRT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3629,'1','I1704','BIRT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3630,'1','I1705','1884','S02078','','','0000-00-00','','','',''),(3631,'1','I1705','1884','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3632,'1','I1705','1884','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3633,'1','I1705','1885','S02651','','','0000-00-00','','','',''),(3634,'1','I1705','1885','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3635,'1','I1705','1885','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3636,'1','I1705','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3637,'1','I1705','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3638,'1','I1705','BIRT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3639,'1','I1705','BIRT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3640,'1','I1706','1886','S02078','','','0000-00-00','','','',''),(3641,'1','I1706','1886','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3642,'1','I1706','1886','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3643,'1','I1706','1887','S02318','','','0000-00-00','','','',''),(3644,'1','I1706','1887','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3645,'1','I1706','1887','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3646,'1','I1706','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3647,'1','I1706','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3648,'1','I1706','BIRT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3649,'1','I1706','BIRT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3650,'1','I1707','1888','S02078','','','0000-00-00','','','',''),(3651,'1','I1707','1888','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3652,'1','I1707','1888','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3653,'1','I1707','1889','S02318','','','0000-00-00','','','',''),(3654,'1','I1707','1889','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3655,'1','I1707','1889','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3656,'1','I1707','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3657,'1','I1707','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3658,'1','I1707','BIRT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3659,'1','I1707','BIRT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3660,'1','I1708','1890','S02078','','','0000-00-00','','','',''),(3661,'1','I1708','1890','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3662,'1','I1708','1890','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3663,'1','I1708','1891','S02318','','','0000-00-00','','','',''),(3664,'1','I1708','1891','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3665,'1','I1708','1891','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3666,'1','I1708','1892','S02841','','','0000-00-00','','','',''),(3667,'1','I1708','1892','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3668,'1','I1708','1892','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3669,'1','I1708','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3670,'1','I1708','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3671,'1','I1708','BIRT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3672,'1','I1708','BIRT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3673,'1','I1709','1893','S02078','','','0000-00-00','','','',''),(3674,'1','I1709','1893','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3675,'1','I1709','1893','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3676,'1','I1709','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3677,'1','I1709','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3678,'1','I1709','BIRT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3679,'1','I1709','BIRT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3680,'1','I1710','1894','S03329','','','0000-00-00','','','',''),(3681,'1','I1710','1894','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3682,'1','I1710','1894','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3683,'1','I1710','1895','S02645','','','0000-00-00','','','',''),(3684,'1','I1710','1895','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3685,'1','I1710','1895','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3686,'1','I1710','1896','S02925','','','0000-00-00','','','',''),(3687,'1','I1710','1896','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3688,'1','I1710','1896','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3689,'1','I1710','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3690,'1','I1710','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3691,'1','I1710','BIRT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3692,'1','I1710','BIRT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3693,'1','I1711','1897','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3694,'1','I1711','1897','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3695,'1','I1711','1898','S02925','','','0000-00-00','','','',''),(3696,'1','I1711','1898','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3697,'1','I1711','1898','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3698,'1','I1711','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3699,'1','I1711','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3700,'1','I1711','BIRT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3701,'1','I1711','BIRT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3702,'1','I1712','1899','S02645','','','0000-00-00','','','',''),(3703,'1','I1712','1899','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3704,'1','I1712','1899','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3705,'1','I1712','1900','S02925','','','0000-00-00','','','',''),(3706,'1','I1712','1900','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3707,'1','I1712','1900','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3708,'1','I1712','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3709,'1','I1712','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3710,'1','I1712','BIRT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3711,'1','I1712','BIRT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3712,'1','I1713','1901','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3713,'1','I1713','1901','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3714,'1','I1713','1902','S02925','','','0000-00-00','','','',''),(3715,'1','I1713','1902','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3716,'1','I1713','1902','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3717,'1','I1713','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3718,'1','I1713','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3719,'1','I1713','BIRT','S02925','','','0000-00-00','','','',''),(3720,'1','I1713','BIRT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3721,'1','I1713','BIRT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3722,'1','I1714','1903','S02322','','','0000-00-00','','','',''),(3723,'1','I1714','1903','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3724,'1','I1714','1903','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3725,'1','I1714','1904','S02672','','','0000-00-00','','','',''),(3726,'1','I1714','1904','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3727,'1','I1714','1904','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3728,'1','I1714','1905','S02964','','','0000-00-00','','13/805 page 26 Faversham within','',''),(3729,'1','I1714','1905','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3730,'1','I1714','1905','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3731,'1','I1714','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3732,'1','I1714','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3733,'1','I1714','BIRT','S02672','','','0000-00-00','','','',''),(3734,'1','I1714','BIRT','S02383','','','0000-00-00','','','',''),(3735,'1','I1714','BIRT','S03339','','','0000-00-00','','1878 September  q Births Faversham Kent 2a 813','',''),(3736,'1','I1714','BIRT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3737,'1','I1714','BIRT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3738,'1','I1715','1906','S02645','','','0000-00-00','','','',''),(3739,'1','I1715','1906','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3740,'1','I1715','1906','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3741,'1','I1715','1907','S02925','','','0000-00-00','','','',''),(3742,'1','I1715','1907','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3743,'1','I1715','1907','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3744,'1','I1715','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3745,'1','I1715','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3746,'1','I1715','BIRT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3747,'1','I1715','BIRT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3748,'1','I1716','1908','S02925','','','0000-00-00','','','',''),(3749,'1','I1716','1908','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3750,'1','I1716','1908','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3751,'1','I1716','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3752,'1','I1716','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3753,'1','I1716','BIRT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3754,'1','I1716','BIRT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3755,'1','I1717','1909','S02925','','','0000-00-00','','','',''),(3756,'1','I1717','1909','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3757,'1','I1717','1909','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3758,'1','I1717','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3759,'1','I1717','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3760,'1','I1717','BIRT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3761,'1','I1717','BIRT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3762,'1','I1718','1910','S02136','','','0000-00-00','','','',''),(3763,'1','I1718','1910','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3764,'1','I1718','1910','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3765,'1','I1718','1911','S02278','','','0000-00-00','','','',''),(3766,'1','I1718','1911','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3767,'1','I1718','1911','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3768,'1','I1718','1912','S02694','','','0000-00-00','','','',''),(3769,'1','I1718','1912','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3770,'1','I1718','1912','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3771,'1','I1718','1913','S02967','','','0000-00-00','','','',''),(3772,'1','I1718','1913','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3773,'1','I1718','1913','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3774,'1','I1718','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3775,'1','I1718','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3776,'1','I1718','BIRT','S03219','','','0000-00-00','','','',''),(3777,'1','I1718','BIRT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3778,'1','I1718','BIRT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3779,'1','I1719','1914','S02145','','','0000-00-00','','','',''),(3780,'1','I1719','1914','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3781,'1','I1719','1914','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3782,'1','I1719','1915','S02278','','','0000-00-00','','','',''),(3783,'1','I1719','1915','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3784,'1','I1719','1915','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3785,'1','I1719','1916','S02694','','','0000-00-00','','','',''),(3786,'1','I1719','1916','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3787,'1','I1719','1916','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3788,'1','I1719','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3789,'1','I1719','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3790,'1','I1719','BIRT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3791,'1','I1719','BIRT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3792,'1','I1720','1917','S02310','','','0000-00-00','','','',''),(3793,'1','I1720','1917','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3794,'1','I1720','1917','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3795,'1','I1720','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3796,'1','I1720','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3797,'1','I1720','BIRT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3798,'1','I1720','BIRT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3799,'1','I1721','1918','S02310','','','0000-00-00','','','',''),(3800,'1','I1721','1918','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3801,'1','I1721','1918','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3802,'1','I1721','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3803,'1','I1721','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3804,'1','I1721','BIRT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3805,'1','I1721','BIRT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3806,'1','I1722','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3807,'1','I1722','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3808,'1','I1723','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3809,'1','I1723','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3810,'1','I1723','BIRT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3811,'1','I1723','BIRT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3812,'1','I1724','1919','S02958','','','0000-00-00','','','',''),(3813,'1','I1724','1919','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3814,'1','I1724','1919','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3815,'1','I1724','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3816,'1','I1724','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3817,'1','I1724','BIRT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3818,'1','I1724','BIRT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3819,'1','I1725','1920','S02096','','','0000-00-00','','','',''),(3820,'1','I1725','1920','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3821,'1','I1725','1920','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3822,'1','I1725','1921','S02322','','','0000-00-00','','','',''),(3823,'1','I1725','1921','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3824,'1','I1725','1921','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3825,'1','I1725','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3826,'1','I1725','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3827,'1','I1725','BIRT','S03350','','','0000-00-00','','1870 September Q Births Faversham Kent 2a 724','',''),(3828,'1','I1725','BIRT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3829,'1','I1725','BIRT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3830,'1','I1726','1922','S02278','','','0000-00-00','','','',''),(3831,'1','I1726','1922','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3832,'1','I1726','1922','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3833,'1','I1726','1923','S02694','','','0000-00-00','','','',''),(3834,'1','I1726','1923','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3835,'1','I1726','1923','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3836,'1','I1726','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3837,'1','I1726','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3838,'1','I1726','BIRT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3839,'1','I1726','BIRT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3840,'1','I1727','1924','S02278','','','0000-00-00','','','',''),(3841,'1','I1727','1924','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3842,'1','I1727','1924','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3843,'1','I1727','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3844,'1','I1727','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3845,'1','I1727','BIRT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3846,'1','I1727','BIRT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3847,'1','I1728','1925','S02278','','','0000-00-00','','','',''),(3848,'1','I1728','1925','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3849,'1','I1728','1925','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3850,'1','I1728','1926','S02694','','','0000-00-00','','','',''),(3851,'1','I1728','1926','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3852,'1','I1728','1926','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3853,'1','I1728','1927','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3854,'1','I1728','1927','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3855,'1','I1728','1928','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3856,'1','I1728','1928','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3857,'1','I1728','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3858,'1','I1728','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3859,'1','I1728','BIRT','S02262','','','0000-00-00','','','',''),(3860,'1','I1728','BIRT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3861,'1','I1728','BIRT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3862,'1','I1729','1929','S02278','','','0000-00-00','','','',''),(3863,'1','I1729','1929','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3864,'1','I1729','1929','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3865,'1','I1729','1930','S02694','','','0000-00-00','','','',''),(3866,'1','I1729','1930','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3867,'1','I1729','1930','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3868,'1','I1729','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3869,'1','I1729','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3870,'1','I1729','BIRT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3871,'1','I1729','BIRT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3872,'1','I1730','1932','S03631','','','0000-00-00','','','',''),(3873,'1','I1730','1932','S03114','','','0000-00-00','','','','Date of Import: 20 Mar 2005'),(3874,'1','I1730','1932','S03114','','','0000-00-00','','','','Date of Import: 6 Apr 2005'),(3875,'1','I1730','1933','S02598','','','0000-00-00','','','',''),(3876,'1','I1730','1933','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3877,'1','I1730','1933','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3878,'1','I1730','1933','S02593','','','0000-00-00','','','',''),(3879,'1','I1730','1933','S03114','','','0000-00-00','','','','Date of Import: 20 Mar 2005'),(3880,'1','I1730','1933','S03114','','','0000-00-00','','','','Date of Import: 6 Apr 2005'),(3881,'1','I1730','1934','S02850','','','0000-00-00','','','',''),(3882,'1','I1730','1934','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3883,'1','I1730','1934','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3884,'1','I1730','1934','S02845','','','0000-00-00','','','',''),(3885,'1','I1730','1934','S03114','','','0000-00-00','','','','Date of Import: 20 Mar 2005'),(3886,'1','I1730','1934','S03114','','','0000-00-00','','','','Date of Import: 6 Apr 2005'),(3887,'1','I1730','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3888,'1','I1730','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3889,'1','I1730','BIRT','S03651','','','0000-00-00','','','',''),(3890,'1','I1730','BIRT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3891,'1','I1730','BIRT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3892,'1','I1730','DEAT','S03651','','','0000-00-00','','','',''),(3893,'1','I1730','DEAT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3894,'1','I1730','DEAT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3895,'1','I1730','DEAT','S03631','','','0000-00-00','','','',''),(3896,'1','I1730','DEAT','S03114','','','0000-00-00','','','','Date of Import: 20 Mar 2005'),(3897,'1','I1730','DEAT','S03114','','','0000-00-00','','','','Date of Import: 6 Apr 2005'),(3898,'1','I1731','1936','S03631','','','0000-00-00','','','',''),(3899,'1','I1731','1936','S03114','','','0000-00-00','','','','Date of Import: 20 Mar 2005'),(3900,'1','I1731','1936','S03114','','','0000-00-00','','','','Date of Import: 6 Apr 2005'),(3901,'1','I1731','1937','S02598','','','0000-00-00','','','',''),(3902,'1','I1731','1937','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3903,'1','I1731','1937','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3904,'1','I1731','1937','S02593','','','0000-00-00','','','',''),(3905,'1','I1731','1937','S03114','','','0000-00-00','','','','Date of Import: 20 Mar 2005'),(3906,'1','I1731','1937','S03114','','','0000-00-00','','','','Date of Import: 6 Apr 2005'),(3907,'1','I1731','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3908,'1','I1731','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3909,'1','I1731','BIRT','S03651','','','0000-00-00','','','',''),(3910,'1','I1731','BIRT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3911,'1','I1731','BIRT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3912,'1','I1731','DEAT','S03651','','','0000-00-00','','','',''),(3913,'1','I1731','DEAT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3914,'1','I1731','DEAT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3915,'1','I1731','DEAT','S03631','','','0000-00-00','','','',''),(3916,'1','I1731','DEAT','S03114','','','0000-00-00','','','','Date of Import: 20 Mar 2005'),(3917,'1','I1731','DEAT','S03114','','','0000-00-00','','','','Date of Import: 6 Apr 2005'),(3918,'1','I1732','1939','S02991','','','0000-00-00','','','',''),(3919,'1','I1732','1939','S03114','','','0000-00-00','','','','Date of Import: 20 Mar 2005'),(3920,'1','I1732','1939','S03114','','','0000-00-00','','','','Date of Import: 6 Apr 2005'),(3921,'1','I1732','1940','S02850','','','0000-00-00','','','',''),(3922,'1','I1732','1940','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3923,'1','I1732','1940','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3924,'1','I1732','1940','S02845','','','0000-00-00','','','',''),(3925,'1','I1732','1940','S03114','','','0000-00-00','','','','Date of Import: 20 Mar 2005'),(3926,'1','I1732','1940','S03114','','','0000-00-00','','','','Date of Import: 6 Apr 2005'),(3927,'1','I1732','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3928,'1','I1732','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3929,'1','I1732','BIRT','S02991','','','0000-00-00','','','',''),(3930,'1','I1732','BIRT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3931,'1','I1732','BIRT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3932,'1','I1732','DEAT','S03651','','','0000-00-00','','','',''),(3933,'1','I1732','DEAT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3934,'1','I1732','DEAT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3935,'1','I1732','DEAT','S03631','','','0000-00-00','','','',''),(3936,'1','I1732','DEAT','S03114','','','0000-00-00','','','','Date of Import: 20 Mar 2005'),(3937,'1','I1732','DEAT','S03114','','','0000-00-00','','','','Date of Import: 6 Apr 2005'),(3938,'1','I1733','1942','S03631','','','0000-00-00','','','',''),(3939,'1','I1733','1942','S03114','','','0000-00-00','','','','Date of Import: 20 Mar 2005'),(3940,'1','I1733','1942','S03114','','','0000-00-00','','','','Date of Import: 6 Apr 2005'),(3941,'1','I1733','1943','S03631','','','0000-00-00','','','',''),(3942,'1','I1733','1943','S03114','','','0000-00-00','','','','Date of Import: 20 Mar 2005'),(3943,'1','I1733','1943','S03114','','','0000-00-00','','','','Date of Import: 6 Apr 2005'),(3944,'1','I1733','1944','S02850','','','0000-00-00','','','',''),(3945,'1','I1733','1944','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3946,'1','I1733','1944','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3947,'1','I1733','1944','S02845','','','0000-00-00','','','',''),(3948,'1','I1733','1944','S03114','','','0000-00-00','','','','Date of Import: 20 Mar 2005'),(3949,'1','I1733','1944','S03114','','','0000-00-00','','','','Date of Import: 6 Apr 2005'),(3950,'1','I1733','1945','S03651','','','0000-00-00','','','',''),(3951,'1','I1733','1945','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3952,'1','I1733','1945','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3953,'1','I1733','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3954,'1','I1733','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3955,'1','I1733','BIRT','S03651','','','0000-00-00','','','',''),(3956,'1','I1733','BIRT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3957,'1','I1733','BIRT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3958,'1','I1733','DEAT','S03651','','','0000-00-00','','','',''),(3959,'1','I1733','DEAT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3960,'1','I1733','DEAT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3961,'1','I1734','1948','S03631','','','0000-00-00','','','',''),(3962,'1','I1734','1948','S03114','','','0000-00-00','','','','Date of Import: 20 Mar 2005'),(3963,'1','I1734','1948','S03114','','','0000-00-00','','','','Date of Import: 6 Apr 2005'),(3964,'1','I1734','1949','S02850','','','0000-00-00','','','',''),(3965,'1','I1734','1949','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3966,'1','I1734','1949','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3967,'1','I1734','1949','S02845','','','0000-00-00','','','',''),(3968,'1','I1734','1949','S03114','','','0000-00-00','','','','Date of Import: 20 Mar 2005'),(3969,'1','I1734','1949','S03114','','','0000-00-00','','','','Date of Import: 6 Apr 2005'),(3970,'1','I1734','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3971,'1','I1734','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3972,'1','I1734','BIRT','S03651','','','0000-00-00','','','',''),(3973,'1','I1734','BIRT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3974,'1','I1734','BIRT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3975,'1','I1735','1951','S02786','','','0000-00-00','','','',''),(3976,'1','I1735','1951','S03114','','','0000-00-00','','','','Date of Import: 20 Mar 2005'),(3977,'1','I1735','1951','S03114','','','0000-00-00','','','','Date of Import: 6 Apr 2005'),(3978,'1','I1735','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3979,'1','I1735','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3980,'1','I1735','BIRT','S02786','','','0000-00-00','','','',''),(3981,'1','I1735','BIRT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3982,'1','I1735','BIRT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3983,'1','I1735','DEAT','S03651','','','0000-00-00','','','',''),(3984,'1','I1735','DEAT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3985,'1','I1735','DEAT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3986,'1','I1735','DEAT','S03631','','','0000-00-00','','','',''),(3987,'1','I1735','DEAT','S03114','','','0000-00-00','','','','Date of Import: 20 Mar 2005'),(3988,'1','I1735','DEAT','S03114','','','0000-00-00','','','','Date of Import: 6 Apr 2005'),(3989,'1','I1736','1952','S02322','','','0000-00-00','','','',''),(3990,'1','I1736','1952','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3991,'1','I1736','1952','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3992,'1','I1736','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3993,'1','I1736','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3994,'1','I1736','BIRT','S02383','','','0000-00-00','','','',''),(3995,'1','I1736','BIRT','S03343','','','0000-00-00','','1874 September q Births Faversham Kent 2a 737','',''),(3996,'1','I1736','BIRT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(3997,'1','I1736','BIRT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(3998,'1','I1737','1955','S03631','','','0000-00-00','','','',''),(3999,'1','I1737','1955','S03114','','','0000-00-00','','','','Date of Import: 20 Mar 2005'),(4000,'1','I1737','1955','S03114','','','0000-00-00','','','','Date of Import: 6 Apr 2005'),(4001,'1','I1737','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(4002,'1','I1737','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(4003,'1','I1737','BIRT','S03651','','','0000-00-00','','','',''),(4004,'1','I1737','BIRT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(4005,'1','I1737','BIRT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(4006,'1','I1737','DEAT','S03651','','','0000-00-00','','','',''),(4007,'1','I1737','DEAT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(4008,'1','I1737','DEAT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(4009,'1','I1737','DEAT','S03631','','','0000-00-00','','','',''),(4010,'1','I1737','DEAT','S03114','','','0000-00-00','','','','Date of Import: 20 Mar 2005'),(4011,'1','I1737','DEAT','S03114','','','0000-00-00','','','','Date of Import: 6 Apr 2005'),(4012,'1','I1738','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(4013,'1','I1738','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(4014,'1','I1738','BIRT','S03651','','','0000-00-00','','','',''),(4015,'1','I1738','BIRT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(4016,'1','I1738','BIRT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(4017,'1','I1738','BIRT','S03631','','','0000-00-00','','','',''),(4018,'1','I1738','BIRT','S03114','','','0000-00-00','','','','Date of Import: 20 Mar 2005'),(4019,'1','I1738','BIRT','S03114','','','0000-00-00','','','','Date of Import: 6 Apr 2005'),(4020,'1','I1739','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(4021,'1','I1739','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(4022,'1','I1739','BIRT','S03651','','','0000-00-00','','','',''),(4023,'1','I1739','BIRT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(4024,'1','I1739','BIRT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(4025,'1','I1739','BIRT','S03631','','','0000-00-00','','','',''),(4026,'1','I1739','BIRT','S03114','','','0000-00-00','','','','Date of Import: 20 Mar 2005'),(4027,'1','I1739','BIRT','S03114','','','0000-00-00','','','','Date of Import: 6 Apr 2005'),(4028,'1','I1739','DEAT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(4029,'1','I1739','DEAT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(4030,'1','I1739','DEAT','S03114','','','0000-00-00','','','','Date of Import: 20 Mar 2005'),(4031,'1','I1739','DEAT','S03114','','','0000-00-00','','','','Date of Import: 6 Apr 2005'),(4032,'1','I1740','1959','S03114','','','0000-00-00','','','','Date of Import: 20 Mar 2005'),(4033,'1','I1740','1959','S03114','','','0000-00-00','','','','Date of Import: 6 Apr 2005'),(4034,'1','I1740','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(4035,'1','I1740','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(4036,'1','I1740','BIRT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(4037,'1','I1740','BIRT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(4038,'1','I1740','BIRT','S03114','','','0000-00-00','','','','Date of Import: 20 Mar 2005'),(4039,'1','I1740','BIRT','S03114','','','0000-00-00','','','','Date of Import: 6 Apr 2005'),(4040,'1','I1740','DEAT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(4041,'1','I1740','DEAT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(4042,'1','I1741','1962','S03628','','','0000-00-00','','','',''),(4043,'1','I1741','1962','S03114','','','0000-00-00','','','','Date of Import: 20 Mar 2005'),(4044,'1','I1741','1962','S03114','','','0000-00-00','','','','Date of Import: 6 Apr 2005'),(4045,'1','I1741','1963','S03628','','','0000-00-00','','','',''),(4046,'1','I1741','1963','S03114','','','0000-00-00','','','','Date of Import: 20 Mar 2005'),(4047,'1','I1741','1963','S03114','','','0000-00-00','','','','Date of Import: 6 Apr 2005'),(4048,'1','I1741','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(4049,'1','I1741','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(4050,'1','I1741','BIRT','S03628','','','0000-00-00','','','',''),(4051,'1','I1741','BIRT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(4052,'1','I1741','BIRT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(4053,'1','I1741','DEAT','S03628','','','0000-00-00','','','',''),(4054,'1','I1741','DEAT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(4055,'1','I1741','DEAT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(4056,'1','I1742','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(4057,'1','I1743','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(4058,'1','I1743','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(4059,'1','I1744','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(4060,'1','I1744','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(4061,'1','I1744','BIRT','S03651','','','0000-00-00','','','',''),(4062,'1','I1744','BIRT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(4063,'1','I1744','BIRT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(4064,'1','I1744','BIRT','S03631','','','0000-00-00','','','',''),(4065,'1','I1744','BIRT','S03114','','','0000-00-00','','','','Date of Import: 20 Mar 2005'),(4066,'1','I1744','BIRT','S03114','','','0000-00-00','','','','Date of Import: 6 Apr 2005'),(4067,'1','I1745','1967','S02328','','','0000-00-00','','','',''),(4068,'1','I1745','1967','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(4069,'1','I1745','1967','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(4070,'1','I1745','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(4071,'1','I1745','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(4072,'1','I1745','BIRT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(4073,'1','I1745','BIRT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(4074,'1','I1746','1968','S02328','','','0000-00-00','','','',''),(4075,'1','I1746','1968','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(4076,'1','I1746','1968','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(4077,'1','I1746','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(4078,'1','I1746','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(4079,'1','I1746','BIRT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(4080,'1','I1746','BIRT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(4081,'1','I1747','1969','S02322','','','0000-00-00','','','',''),(4082,'1','I1747','1969','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(4083,'1','I1747','1969','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(4084,'1','I1747','1970','S02663','','','0000-00-00','','','',''),(4085,'1','I1747','1970','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(4086,'1','I1747','1970','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(4087,'1','I1747','1971','S02971','','','0000-00-00','','','',''),(4088,'1','I1747','1971','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(4089,'1','I1747','1971','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(4090,'1','I1747','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(4091,'1','I1747','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(4092,'1','I1747','BIRT','S02383','','','0000-00-00','','','',''),(4093,'1','I1747','BIRT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(4094,'1','I1747','BIRT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(4095,'1','I1748','1972','S02328','','','0000-00-00','','','',''),(4096,'1','I1748','1972','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(4097,'1','I1748','1972','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(4098,'1','I1748','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(4099,'1','I1748','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(4100,'1','I1748','BIRT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(4101,'1','I1748','BIRT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(4102,'1','I1749','1973','S01990','','','0000-00-00','','','',''),(4103,'1','I1749','1973','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(4104,'1','I1749','1973','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(4105,'1','I1749','1974','S02328','','','0000-00-00','','','',''),(4106,'1','I1749','1974','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(4107,'1','I1749','1974','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(4108,'1','I1749','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(4109,'1','I1749','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(4110,'1','I1749','BIRT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(4111,'1','I1749','BIRT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(4112,'1','I1750','1975','S02328','','','0000-00-00','','','',''),(4113,'1','I1750','1975','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(4114,'1','I1750','1975','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(4115,'1','I1750','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(4116,'1','I1750','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(4117,'1','I1750','BIRT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(4118,'1','I1750','BIRT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(4119,'1','I1751','1976','S02328','','','0000-00-00','','','',''),(4120,'1','I1751','1976','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(4121,'1','I1751','1976','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(4122,'1','I1751','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(4123,'1','I1751','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(4124,'1','I1751','BIRT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(4125,'1','I1751','BIRT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(4126,'1','I1752','1978','S03114','','','0000-00-00','','','','Date of Import: 20 Mar 2005'),(4127,'1','I1752','1978','S03114','','','0000-00-00','','','','Date of Import: 6 Apr 2005'),(4128,'1','I1752','1979','S02373','','','0000-00-00','','','',''),(4129,'1','I1752','1979','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(4130,'1','I1752','1979','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(4131,'1','I1752','1979','S03114','','','0000-00-00','','','','Date of Import: 20 Mar 2005'),(4132,'1','I1752','1979','S03114','','','0000-00-00','','','','Date of Import: 6 Apr 2005'),(4133,'1','I1752','1980','S02609','','','0000-00-00','','','',''),(4134,'1','I1752','1980','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(4135,'1','I1752','1980','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(4136,'1','I1752','1980','S02604','','','0000-00-00','','','',''),(4137,'1','I1752','1980','S03114','','','0000-00-00','','','','Date of Import: 20 Mar 2005'),(4138,'1','I1752','1980','S03114','','','0000-00-00','','','','Date of Import: 6 Apr 2005'),(4139,'1','I1752','1981','S02861','','','0000-00-00','','','',''),(4140,'1','I1752','1981','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(4141,'1','I1752','1981','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(4142,'1','I1752','1982','S02856','','','0000-00-00','','','',''),(4143,'1','I1752','1982','S03114','','','0000-00-00','','','','Date of Import: 20 Mar 2005'),(4144,'1','I1752','1982','S03114','','','0000-00-00','','','','Date of Import: 6 Apr 2005'),(4145,'1','I1752','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(4146,'1','I1752','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(4147,'1','I1752','BIRT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(4148,'1','I1752','BIRT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(4149,'1','I1753','1984','S03114','','','0000-00-00','','','','Date of Import: 20 Mar 2005'),(4150,'1','I1753','1984','S03114','','','0000-00-00','','','','Date of Import: 6 Apr 2005'),(4151,'1','I1753','1985','S02861','','','0000-00-00','','','',''),(4152,'1','I1753','1985','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(4153,'1','I1753','1985','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(4154,'1','I1753','1986','S02856','','','0000-00-00','','','',''),(4155,'1','I1753','1986','S03114','','','0000-00-00','','','','Date of Import: 20 Mar 2005'),(4156,'1','I1753','1986','S03114','','','0000-00-00','','','','Date of Import: 6 Apr 2005'),(4157,'1','I1753','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(4158,'1','I1753','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(4159,'1','I1753','BIRT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(4160,'1','I1753','BIRT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(4161,'1','I1754','1988','S03114','','','0000-00-00','','','','Date of Import: 20 Mar 2005'),(4162,'1','I1754','1988','S03114','','','0000-00-00','','','','Date of Import: 6 Apr 2005'),(4163,'1','I1754','1989','S02861','','','0000-00-00','','','',''),(4164,'1','I1754','1989','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(4165,'1','I1754','1989','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(4166,'1','I1754','1990','S02856','','','0000-00-00','','','',''),(4167,'1','I1754','1990','S03114','','','0000-00-00','','','','Date of Import: 20 Mar 2005'),(4168,'1','I1754','1990','S03114','','','0000-00-00','','','','Date of Import: 6 Apr 2005'),(4169,'1','I1754','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(4170,'1','I1754','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(4171,'1','I1754','BIRT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(4172,'1','I1754','BIRT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(4173,'1','I1755','1992','S02609','','','0000-00-00','','','',''),(4174,'1','I1755','1992','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(4175,'1','I1755','1992','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(4176,'1','I1755','1992','S02604','','','0000-00-00','','','',''),(4177,'1','I1755','1992','S03114','','','0000-00-00','','','','Date of Import: 20 Mar 2005'),(4178,'1','I1755','1992','S03114','','','0000-00-00','','','','Date of Import: 6 Apr 2005'),(4179,'1','I1755','1993','S02914','','','0000-00-00','','','',''),(4180,'1','I1755','1993','S03114','','','0000-00-00','','','','Date of Import: 20 Mar 2005'),(4181,'1','I1755','1993','S03114','','','0000-00-00','','','','Date of Import: 6 Apr 2005'),(4182,'1','I1755','1994','S02919','','','0000-00-00','','','',''),(4183,'1','I1755','1994','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(4184,'1','I1755','1994','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(4185,'1','I1755','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(4186,'1','I1755','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(4187,'1','I1755','BIRT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(4188,'1','I1755','BIRT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(4189,'1','I1755','BIRT','S03114','','','0000-00-00','','','','Date of Import: 20 Mar 2005'),(4190,'1','I1755','BIRT','S03114','','','0000-00-00','','','','Date of Import: 6 Apr 2005'),(4191,'1','I1756','1996','S03114','','','0000-00-00','','','','Date of Import: 20 Mar 2005'),(4192,'1','I1756','1996','S03114','','','0000-00-00','','','','Date of Import: 6 Apr 2005'),(4193,'1','I1756','1997','S02609','','','0000-00-00','','','',''),(4194,'1','I1756','1997','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(4195,'1','I1756','1997','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(4196,'1','I1756','1997','S02604','','','0000-00-00','','','',''),(4197,'1','I1756','1997','S03114','','','0000-00-00','','','','Date of Import: 20 Mar 2005'),(4198,'1','I1756','1997','S03114','','','0000-00-00','','','','Date of Import: 6 Apr 2005'),(4199,'1','I1756','1998','S02904','','','0000-00-00','','','',''),(4200,'1','I1756','1998','S03114','','','0000-00-00','','','','Date of Import: 20 Mar 2005'),(4201,'1','I1756','1998','S03114','','','0000-00-00','','','','Date of Import: 6 Apr 2005'),(4202,'1','I1756','1999','S02909','','','0000-00-00','','','',''),(4203,'1','I1756','1999','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(4204,'1','I1756','1999','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(4205,'1','I1756','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(4206,'1','I1756','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(4207,'1','I1756','BIRT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(4208,'1','I1756','BIRT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(4209,'1','I1757','2001','S03114','','','0000-00-00','','','','Date of Import: 20 Mar 2005'),(4210,'1','I1757','2001','S03114','','','0000-00-00','','','','Date of Import: 6 Apr 2005'),(4211,'1','I1757','2002','S02634','','','0000-00-00','','','',''),(4212,'1','I1757','2002','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(4213,'1','I1757','2002','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(4214,'1','I1757','2003','S02629','','','0000-00-00','','','',''),(4215,'1','I1757','2003','S03114','','','0000-00-00','','','','Date of Import: 20 Mar 2005'),(4216,'1','I1757','2003','S03114','','','0000-00-00','','','','Date of Import: 6 Apr 2005'),(4217,'1','I1757','2004','S02882','','','0000-00-00','','','',''),(4218,'1','I1757','2004','S03114','','','0000-00-00','','','','Date of Import: 20 Mar 2005'),(4219,'1','I1757','2004','S03114','','','0000-00-00','','','','Date of Import: 6 Apr 2005'),(4220,'1','I1757','2005','S02887','','','0000-00-00','','','',''),(4221,'1','I1757','2005','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(4222,'1','I1757','2005','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(4223,'1','I1757','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(4224,'1','I1757','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(4225,'1','I1757','BIRT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(4226,'1','I1757','BIRT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(4227,'1','I1759','2006','S01942','','','0000-00-00','','','',''),(4228,'1','I1759','2006','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(4229,'1','I1759','2006','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(4230,'1','I1759','NAME','S03347','','','0000-00-00','','','',''),(4231,'1','I1759','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(4232,'1','I1759','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(4233,'1','I1759','BIRT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(4234,'1','I1759','BIRT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(4235,'1','I1759','DEAT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(4236,'1','I1759','DEAT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(4237,'1','I1760','2008','S03114','','','0000-00-00','','','','Date of Import: 20 Mar 2005'),(4238,'1','I1760','2008','S03114','','','0000-00-00','','','','Date of Import: 6 Apr 2005'),(4239,'1','I1760','2009','S02634','','','0000-00-00','','','',''),(4240,'1','I1760','2009','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(4241,'1','I1760','2009','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(4242,'1','I1760','2010','S02629','','','0000-00-00','','','',''),(4243,'1','I1760','2010','S03114','','','0000-00-00','','','','Date of Import: 20 Mar 2005'),(4244,'1','I1760','2010','S03114','','','0000-00-00','','','','Date of Import: 6 Apr 2005'),(4245,'1','I1760','2011','S02882','','','0000-00-00','','','',''),(4246,'1','I1760','2011','S03114','','','0000-00-00','','','','Date of Import: 20 Mar 2005'),(4247,'1','I1760','2011','S03114','','','0000-00-00','','','','Date of Import: 6 Apr 2005'),(4248,'1','I1760','2012','S02887','','','0000-00-00','','','',''),(4249,'1','I1760','2012','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(4250,'1','I1760','2012','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(4251,'1','I1760','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(4252,'1','I1760','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(4253,'1','I1760','BIRT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(4254,'1','I1760','BIRT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(4255,'1','I1761','2014','S03114','','','0000-00-00','','','','Date of Import: 20 Mar 2005'),(4256,'1','I1761','2014','S03114','','','0000-00-00','','','','Date of Import: 6 Apr 2005'),(4257,'1','I1761','2015','S02887','','','0000-00-00','','','',''),(4258,'1','I1761','2015','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(4259,'1','I1761','2015','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(4260,'1','I1761','2016','S02882','','','0000-00-00','','','',''),(4261,'1','I1761','2016','S03114','','','0000-00-00','','','','Date of Import: 20 Mar 2005'),(4262,'1','I1761','2016','S03114','','','0000-00-00','','','','Date of Import: 6 Apr 2005'),(4263,'1','I1761','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(4264,'1','I1761','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(4265,'1','I1761','BIRT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(4266,'1','I1761','BIRT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(4267,'1','I1762','2017','S03015','','','0000-00-00','','','',''),(4268,'1','I1762','2017','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(4269,'1','I1762','2017','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(4270,'1','I1762','2018','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(4271,'1','I1762','2018','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(4272,'1','I1762','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(4273,'1','I1762','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(4274,'1','I1762','BIRT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(4275,'1','I1762','BIRT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(4276,'1','I1763','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(4277,'1','I1763','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(4278,'1','I1763','BIRT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(4279,'1','I1763','BIRT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(4280,'1','I1764','2019','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(4281,'1','I1764','2019','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(4282,'1','I1764','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(4283,'1','I1764','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(4284,'1','I1764','BIRT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(4285,'1','I1764','BIRT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(4286,'1','I1764','DEAT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(4287,'1','I1764','DEAT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(4288,'1','I1764','BURI','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(4289,'1','I1764','BURI','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(4290,'1','I1765','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(4291,'1','I1765','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(4292,'1','I1766','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(4293,'1','I1766','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(4294,'1','I1767','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(4295,'1','I1767','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(4296,'1','I1768','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(4297,'1','I1768','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(4298,'1','I1769','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(4299,'1','I1769','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(4300,'1','I1770','2020','S02096','','','0000-00-00','','','',''),(4301,'1','I1770','2020','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(4302,'1','I1770','2020','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(4303,'1','I1770','2021','S02322','','','0000-00-00','','','',''),(4304,'1','I1770','2021','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(4305,'1','I1770','2021','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(4306,'1','I1770','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(4307,'1','I1770','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(4308,'1','I1770','BIRT','S02383','','','0000-00-00','','','',''),(4309,'1','I1770','BIRT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(4310,'1','I1770','BIRT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(4311,'1','I1771','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(4312,'1','I1772','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(4313,'1','I1773','2022','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(4314,'1','I1773','2022','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(4315,'1','I1773','2023','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(4316,'1','I1773','2023','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(4317,'1','I1773','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(4318,'1','I1773','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(4319,'1','I1773','BIRT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(4320,'1','I1773','BIRT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(4321,'1','I1773','DEAT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(4322,'1','I1773','DEAT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(4323,'1','I1774','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(4324,'1','I1774','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(4325,'1','I1774','BIRT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(4326,'1','I1774','BIRT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(4327,'1','I1775','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(4328,'1','I1775','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(4329,'1','I1776','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(4330,'1','I1776','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(4331,'1','I1776','BIRT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(4332,'1','I1776','BIRT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(4333,'1','I1776','DEAT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(4334,'1','I1776','DEAT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(4335,'1','I1776','BURI','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(4336,'1','I1776','BURI','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(4337,'1','I1777','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(4338,'1','I1778','2024','S02958','','','0000-00-00','','','',''),(4339,'1','I1778','2024','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(4340,'1','I1778','2024','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(4341,'1','I1778','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(4342,'1','I1778','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(4343,'1','I1778','BIRT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(4344,'1','I1778','BIRT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(4345,'1','I1779','2025','S02826','','','0000-00-00','','','',''),(4346,'1','I1779','2025','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(4347,'1','I1779','2025','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(4348,'1','I1779','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(4349,'1','I1779','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(4350,'1','I1779','BIRT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(4351,'1','I1779','BIRT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(4352,'1','I1780','2026','S02826','','','0000-00-00','','','',''),(4353,'1','I1780','2026','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(4354,'1','I1780','2026','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(4355,'1','I1780','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(4356,'1','I1780','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(4357,'1','I1780','BIRT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(4358,'1','I1780','BIRT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(4359,'1','I1781','2027','S02096','','','0000-00-00','','','',''),(4360,'1','I1781','2027','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(4361,'1','I1781','2027','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(4362,'1','I1781','2028','S02322','','','0000-00-00','','','',''),(4363,'1','I1781','2028','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(4364,'1','I1781','2028','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(4365,'1','I1781','2029','S02701','','','0000-00-00','','','',''),(4366,'1','I1781','2029','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(4367,'1','I1781','2029','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(4368,'1','I1781','2030','S02796','','','0000-00-00','','','',''),(4369,'1','I1781','2030','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(4370,'1','I1781','2030','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(4371,'1','I1781','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(4372,'1','I1781','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(4373,'1','I1781','BIRT','S02383','','','0000-00-00','','','',''),(4374,'1','I1781','BIRT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(4375,'1','I1781','BIRT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(4376,'1','I1782','2031','S02826','','','0000-00-00','','','',''),(4377,'1','I1782','2031','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(4378,'1','I1782','2031','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(4379,'1','I1782','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(4380,'1','I1782','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(4381,'1','I1782','BIRT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(4382,'1','I1782','BIRT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(4383,'1','I1783','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(4384,'1','I1783','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(4385,'1','I1783','BIRT','S02457','','','0000-00-00','','','',''),(4386,'1','I1783','BIRT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(4387,'1','I1783','BIRT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(4388,'1','I1784','2032','S02796','','','0000-00-00','','','',''),(4389,'1','I1784','2032','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(4390,'1','I1784','2032','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(4391,'1','I1784','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(4392,'1','I1784','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(4393,'1','I1784','BIRT','S02796','','','0000-00-00','','','',''),(4394,'1','I1784','BIRT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(4395,'1','I1784','BIRT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(4396,'1','I1785','2033','S02796','','','0000-00-00','','','',''),(4397,'1','I1785','2033','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(4398,'1','I1785','2033','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(4399,'1','I1785','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(4400,'1','I1785','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(4401,'1','I1785','BIRT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(4402,'1','I1785','BIRT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(4403,'1','I1786','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(4404,'1','I1786','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(4405,'1','I1787','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(4406,'1','I1787','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(4407,'1','I1789','2034','S02841','','','0000-00-00','','','',''),(4408,'1','I1789','2034','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(4409,'1','I1789','2034','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(4410,'1','I1789','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(4411,'1','I1789','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(4412,'1','I1789','BIRT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(4413,'1','I1789','BIRT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(4414,'1','I1790','2035','S02335','','','0000-00-00','','','',''),(4415,'1','I1790','2035','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(4416,'1','I1790','2035','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(4417,'1','I1790','2036','S02651','','','0000-00-00','','','',''),(4418,'1','I1790','2036','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(4419,'1','I1790','2036','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(4420,'1','I1790','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(4421,'1','I1790','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(4422,'1','I1790','BIRT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(4423,'1','I1790','BIRT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(4424,'1','I1791','2037','S02335','','','0000-00-00','','','',''),(4425,'1','I1791','2037','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(4426,'1','I1791','2037','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(4427,'1','I1791','2038','S02651','','','0000-00-00','','','',''),(4428,'1','I1791','2038','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(4429,'1','I1791','2038','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(4430,'1','I1791','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(4431,'1','I1791','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(4432,'1','I1791','BIRT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(4433,'1','I1791','BIRT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(4434,'1','I1792','2039','S02074','','','0000-00-00','','','',''),(4435,'1','I1792','2039','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(4436,'1','I1792','2039','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(4437,'1','I1792','2040','S02338','','','0000-00-00','','','',''),(4438,'1','I1792','2040','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(4439,'1','I1792','2040','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(4440,'1','I1792','2041','S02698','','','0000-00-00','','','',''),(4441,'1','I1792','2041','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(4442,'1','I1792','2041','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(4443,'1','I1792','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(4444,'1','I1792','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(4445,'1','I1792','BIRT','S03355','','','0000-00-00','','Births and Christenings, A thru Z 1825-1876 (4 microfiches)  FHL BRITISH Fiche6903823 Numbe','','Salt Lake City [Utah] : Genealogical Society of Utah, 1992'),(4446,'1','I1792','BIRT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(4447,'1','I1792','BIRT','S03355','','','0000-00-00','','Births and Christenings, A thru Z 1825-1876 (4 microfiches)  FHL BRITISH Fiche6903823 Numbe','','Salt Lake City [Utah] : Genealogical Society of Utah, 1992'),(4448,'1','I1792','BIRT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(4449,'1','I1792','CHR','S03355','','','0000-00-00','','','',''),(4450,'1','I1792','CHR','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(4451,'1','I1792','CHR','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(4452,'1','I1793','2042','S02651','','','0000-00-00','','','',''),(4453,'1','I1793','2042','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(4454,'1','I1793','2042','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(4455,'1','I1793','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(4456,'1','I1793','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(4457,'1','I1793','BIRT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(4458,'1','I1793','BIRT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(4459,'1','I1794','2043','S02651','','','0000-00-00','','','',''),(4460,'1','I1794','2043','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(4461,'1','I1794','2043','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(4462,'1','I1794','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(4463,'1','I1794','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(4464,'1','I1794','BIRT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(4465,'1','I1794','BIRT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(4466,'1','I1795','2044','S02651','','','0000-00-00','','','',''),(4467,'1','I1795','2044','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(4468,'1','I1795','2044','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(4469,'1','I1795','NAME','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(4470,'1','I1795','NAME','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(4471,'1','I1795','BIRT','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(4472,'1','I1795','BIRT','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(4473,'1','I1796','2045','S02651','','','0000-00-00','','','',''),(4474,'1','I1796','2045','S03114','','','0000-00-00','Date of Import: 20 Mar 2005','','',''),(4475,'1','I1796','2045','S03114','','','0000-00-00','Date of Import: 6 Apr 2005','','',''),(4476,'1'
